Redirect an Iframe page tab running on wordpress
I wish to redirect an Iframe page tab running on wordpress to open a custom shopping cart tab. To put it simply I want to click a page menu tab nam开发者_如何学运维ed Products here-
http://facebook.com/halfpriceheaven ( Tab is hidden for now)
When it is clicked I want the custom tab SHOP NOW page to open.
Can this be done and how please.
If you want to redirect the user within the Facebook Page tab iframe, then depending on your website language you can easily achieve this. In PHP for instance: header("Location: my_page.php");
Otherwise, if you want to redirect the user to your website outside Facebook, you use something like:
<script>top.location.href="http://example.com/page.php"</script>
精彩评论