[memb_redirect]
This Applies to
OTHER DOCS Available
Summary
Redirects the viewer to a new page
Shortcode Examples
[memb_redirect url="http://www.google.com/"]
Example of delaying redirection for 5 seconds:
[memb_redirect delay=5 url="https://www.example.com/"]
Redirect users in a new tab
[memb_redirect url="https://www.example.com/" target="_blank"]
Shortcode Parameters
delay: specifies a number of seconds to delay the execution of the redirection. For example, you would want a redirect to run after specific number of seconds.
target: use this parameter just like you would use target attribute in HTML. The most common use of this is to open a new tab when redirecting using “target=_blank”.
url: specifies a website where a user is redirected to.
Shortcode Attributes
Additional Information
This shortcode redirects to the page specified in the URL parameter.
You can pass parameters about the current user, using placeholder variables.
For example, to pass the User’s Infusionsoft ID, and their Email address you would use:
[memb_redirect url="/newpage/?Id={{contact.id}}&Email={{contact.email}}"]