I'm sure someone else has asked about this, but I browsed through about 10 pages without finding it, so I'm asking myself.
How do I remove some of the links in the Information sidebar listing? I don't need half of them.
Thanks!!
Printable View
I'm sure someone else has asked about this, but I browsed through about 10 pages without finding it, so I'm asking myself.
How do I remove some of the links in the Information sidebar listing? I don't need half of them.
Thanks!!
Depending upon which ones
admin > config > Define Page Status > set the options
Gift Certificate FAQ
admin > modules > Order Total Modules > Gift Certificates > remove
Discount Coupon
admin > modules > Order Total Modules > Discount Coupon > remove
Thanks, that's exactly what I needed! :smile:
One last quick question...where do I modify the Newsletter Unsubscribe text? That wasn't included in the Tools / Define Pages Editor section. Thanks!!
Uisng the dev tool kit I ggot a response for Newsletter Unsubscribe
https://www.zen-cart.com/tutorials/index.php?article=38
https://www.zen-cart.com/tutorials/index.php?article=39
in a copy for your template of /includes/languages/english.php
I found it, thanks. :smile:
What continually frustrates me is that some things can be found through the admin section (which is a godsend for people like me who neither know nor understand php) yet other things which logically SHOULD be right next to them aren't, and can only be accessed by risking major screw-ups. And then they're much more difficult to change (i.e. changing the font size in that unsubscribe.php--I have NO idea how to do it there, whereas it was a snap in the Define Pages Editor).
Why aren't all the pages you might need to modify (such as, from what I can see, most of what's in that includes/languages/english folder) included in the script so that they can be modified more easily and with less risk of messing it up??
This wasn't a rhetorical question, btw...I really would like to know the logic behind it. Maybe then it will be easier for me to find stuff.
I think it's a case of define pages being considerably more complex to set up than ordinary PHP files, with a special folder tree, and ordinary files need to be in their own proper folder trees according to the ZC structure. There are security issues with admin being able to edit files, and I think limiting the locations of editable files is part of the security measures in place...
Well, it still doesn't make any sense to me. :laugh: But thanks for the answer, I appreciate it!
Basically, it would be a lot of extra setup, complication and maintenance work for the devs to make more existing files editable the same way define pages are.
hi
can anyone tell me here
http://www.mgdezigns.com/printables/...n_page=privacy
under "information" in left box content , all my links appear so close like privacy notice is adjoined with contact us and contact us with newsletter
how do i make each appear on each line?
Thanks
In a stock Zencart installation, those are list items in an unordered list. It looks like your template designer has removed that for some reason. I would look through the template files to see where that was done (probably includes/templates/trublu/sideboxes/tpl_information.php), or you might be able to find the privacy link in includes/modules/sideboxes/trublu/information.php and add a <br /> in the proper places.
Odd... your template designer appears to have taken about an eight-year step backwards in coding and turned all of the sideboxes into tables. They also as stevesh notes eliminate the <li> structure from the content of this box. You can fix it very easily by adding to your stylesheet (anywhere)Code:#information-content>a {display: block;}
Not surprising, I guess, since that template was written for Zencart version 1.3.6 in 2007.
"face palm" i edited the template to match my site , i think I will download a fresh copy and add what you just told me :)
Thanks! Stevesh and gjh42 :)
EDIT : thank you soooooooo much gjh42 I added that line and it fixed it up perfectly :D
Using the Developers Tool Kit, I found three entries -- SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true' -- but did not find where it was set 'TRUE'.
Any clues to set it to false??
What I did for now is cheat. :shocking: In the /includes/modules/sideboxes/information.php file;
I changed -- if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true')
to -- if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK != 'true')
When you see those values that are UPPERCASED, they're (usually) constants of some form ... including the constants that reflect database-related settings.
In your Tools->Developers Toolkit, enter that constant (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK) in the very-top search entry on that page and you'll get a display that shows you that the value is, in fact, a configurable item and will include a link to allow you to change that value.