If you have an Addthis account, this is very easy to do.
Addthis has a welcome bar feature that can be customized. You can put it on Checkout 2 (settings>design>Titles & content: paste in Header section).
This will drop an alert bar for people that clicked PayPal on Checkout 3 and were sent to Checkout 2 from PayPal. There has always been a problem with customers being confused since they have already seen the shipping page and they think they are in a loop.
Just replace the XXX's in pubid=XXXXXXXX" below with your Addthis user id.
you can also customize the bar,text and button color
I tested it in Chrome and FF with no issues.
Addthis has a welcome bar feature that can be customized. You can put it on Checkout 2 (settings>design>Titles & content: paste in Header section).
This will drop an alert bar for people that clicked PayPal on Checkout 3 and were sent to Checkout 2 from PayPal. There has always been a problem with customers being confused since they have already seen the shipping page and they think they are in a loop.
Just replace the XXX's in pubid=XXXXXXXX" below with your Addthis user id.
you can also customize the bar,text and button color
I tested it in Chrome and FF with no issues.
Code:
<!-- AddThis Welcome BEGIN --> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=XXXXXXXX"></script> <script type='text/javascript'> addthis.bar.initialize({'default':{ "backgroundColor": "#EDA10E", "buttonColor": "#666666", "textColor": "#FFFFFF", "buttonTextColor": "#FFFFFF" },rules:[ { "name": "paypal", "match": { "referrer": "paypal" }, "message": "PayPal Users: Verify Shipping Method, then proceed to <strong>Finalize Order</strong>", "action": { "type": "button", "text": ">> >> >>", "verb": "link", "url": "#" } } ]}); </script> <!-- AddThis Welcome END -->
Comment