you can get a link to the page in the php code using the function "zen_href_link," this is the standard function for getting links in zencart. If you called your page "my page" then in the php
will give you the link you need and if you want to use this then you need to stick it in a link:PHP Code:$link_to_my_page = zen_href_link( FILENAME_MY_PAGE, '' );
This will print a link to your page where you put it in the code. To put a link to this page in the navigation bar you will need to find the file that generates the navigation bar and then modify it to your needs.PHP Code:echo '<a href="' . $link_to_my_page . '">Link Text</a>';
I'm afraid that as I said in the introduction, this is a meta-mod, so it is something that helps you generate new code for your site. Unfortunately if you want to use this code then you need to do some (basic) programming.
My ZenCart Mods: Define Pages Generator | Fual Slimbox (Lightbox)
A site I did for a mate: http://richard-moon.co.uk/
Ok thanks for the reply. I will try and see if I can get that working. Thanks so much for your help. Will let you know how things go when I get through with it.
By the way, on your navbar image, you need to set the background colour as the same red as the right most pixel as the background image, and then you need to set the x-repeat to none, otherwise it looks a bit odd.
My ZenCart Mods: Define Pages Generator | Fual Slimbox (Lightbox)
A site I did for a mate: http://richard-moon.co.uk/
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Thanks for getting back with me on this. What I needed was to know the exact filenames to make the changes to. You said make the changes in "the" php file but did not say which one. The generator creates multiple files and I just need to know which ones to change
If you can just give me the filenames, I'm sure I can take it from there.