Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Page Manager - Tab display quirk
This discussion has been closed.
Comments
I think I fixed it though, try it now.
It should be as simple as just showing your custom page when there are no GET variables in the url, then adding a bogus GET variable to the url(s) that should be pointing to the discussions page. You could do a redirect, but it'd be cleaner to just add a small bit of code to the extension to do it. I suppose the functionality could be added to the extension as an extra option...
Sounds like a really great idea. May I ask if you plan to release it soon?
Instead I use...
<?php include("extrapages/podcast.htm"); ?>
...which works great.
Also has the added benefit that I am able to edit the external pages in my favorite application instead of by hand.
Credit: Thanks to Minisweeper for this tip.
In the Page Manager Page HTML box simply insert this...
<?php include("extrapages/newpage.htm"); ?>
That's it!
And yes I have an iframe which does not cause a problem.
That reminds me, I'll make the HTML containing the iframe an external page, following my own suggestion!
Thanks much. I have a question for you. Do you think that I could use an include to redirect to an outside url ? and http: in stead of a file on my site? If so can you suggest how to do that? Also have your tried having your tabs open pages in a new window? That is really what I need to do on one of the pages/tabs. Thanks again for your help.
You might find it easier to include a html document which is merely a meta refresh. I'm not sure if that would work though.
This does not work, it expects a path to a local file, not an external http://etc...
As Minisweeper said, I would not recommend this, even if you did control the external site.
Quote: Silencio Also have your tried having your tabs open pages in a new window?
No I have not tried this, interface-wise it would not make sense. These tabs are for navigation within the current site. If you want to point to an external site, create a page with a tab and put your links there.