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.
I just realized that maybe I'm not being clear about this. I know that the filenames will be different depending on what name you select when you first use the program. I guess what I really need is the path to the filename ie:
includes/extra_datafiles/my_filename.php
or something like that. Is that making more sense now? Hope so. As always thanks for any help.
The (basic) rule is that if your file name is "bAdLy-nameD page" then you capitalise it: "BADLY-NAMED PAGE" and replace non-alphanumeric characters with "_": "BADLY_NAMED_PAGE", then prefix it with the word "FILENAME": "FILENAME_BADLY_NAMED_PAGE"
The next version which i am just putting the finishing tuoches to makes this clear.
The basic trick when dealing with any php website is if you want to edit a bit of generated code:
1) find the id of the closest tag with an id to the bit of code that you want to edit.
2) Search through the entire source code for this string (most text editors and dreamweaver can do this) hopefully the place you find this string will be near to the code you want to modify.
In your case try searching for "navMain" ;)
My ZenCart Mods: Define Pages Generator | Fual Slimbox (Lightbox)
A site I did for a mate: http://richard-moon.co.uk/
I'm getting closer to understanding thisI was able to find the filename with the navMain ID in it. There is some logic there to check and see if the person is logged in or not and what to put on the nav page for either condition.
That leaves me with just one more file to find and edit. What is the path to the filename where I put this in?
$link_to_my_page = zen_href_link( FILENAME_MY_PAGE, '' );
If I know that, I think I can get everything to work. Thanks again for your patience with me on this.
basically that depends where you want the link to go exactly, if you want it in the bar at the top of the page, then you probably want to put it in the file you found, if not it might be another file.
You sort of have to follow your nose with this stuff.
My ZenCart Mods: Define Pages Generator | Fual Slimbox (Lightbox)
A site I did for a mate: http://richard-moon.co.uk/
Sorry bwj... I'm just not getting it lol... guess I will wait until you come out with the new version and see if I can understand that one better. I don't want to wear out my welcome where your help is concerned. Thanks a bunch for your help. I DO appreciate it. Maybe after the new version comes out I can bug you some more j/k... Thanks and have a great holiday season!!!
crabdance, a "page" of ZC contains many files in many folders:
+ The language file in language folder usually define header, title, etc.
+ The modules/pages/header_php.php contains all the functions or any code needed to be run before loading the template.
+ and the template file.
Basically, when you want to create a page in zencart, which you can access using the link index.php?main_page=page_name, you have to create all those files. This mod simply helps you to create that set of file much faster, and that's it. Even with the new version of this mod or not, this is how things are done on ZC, not because the author of the mod wants to make it that way.
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