Until a resident coder comes up with a fix for this, a relatively easy way to solve your problem is to add a PayPal tab in your menu that goes to a page on your site (
index.html or index.htm) in a folder for your PayPal link. That file will automatically refresh to the PayPal link that you need (
https versus http).
I see where your coming from (I'm not after a Paypal site - but I see what you're getting at). I was thinking about a redirect page as a work around myself. Thanks.
That way, whenever your PayPal menu tab is chosen, that person will go straight to your PayPal account.
So your YaBB's menu tab might link to the following:
www.TypeYourSiteHere.com/PayPal
In the folder listed above, the index.html or index.htm page you created will be on your server as follows:
www.TypeYourSiteHere.com/PayPal/index.html
The index page that you create above can simply include the following redirect in between the
<head> and
</head> tags:
<head>
<META HTTP-EQUIV=REFRESH CONTENT="0; URL=https://www.paypal.com/webapps/mpp/home-merchant">
</head>
With the coding I've mentioned above, you'll of course need to replace it with the PayPal link that works for you. But hopefully you'll understand this solution.
Good luck!Edited: Dandello wrote on Apr 15
th, 2013 at 3:17pm:
I'll be back with a fix for you after breakfast - hubby is getting cranky.