Page 16 of 57 FirstFirst ... 6141516171826 ... LastLast
Results 151 to 160 of 570
  1. #151
    Join Date
    Nov 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Disregard the above question, i've figured it out

    I just added a 2nd for loop in tpl_ezpages.php, its probably not the most efficient way to do it, but it works just fine

  2. #152
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    What am I missing here??

    Objective: Add my Testimonials link to the "More Information" sidebox. You can see that've added the bottom line of code to more_information.php:

    PHP Code:
      unset($more_information);

    // test if links should display
      
    if (DEFINE_PAGE_2_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_2) . '">' BOX_INFORMATION_PAGE_2 '</a>';
      }
      if (
    DEFINE_PAGE_3_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_3) . '">' BOX_INFORMATION_PAGE_3 '</a>';
      }
      if (
    DEFINE_PAGE_4_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_4) . '">' BOX_INFORMATION_PAGE_4 '</a>';
      }
      if (
    DEFINE_DEFAULT_STATUS <= 1) {
        
    $more_information[] = '<a href="' index.php?main_page=testimonials_manager_all_testimonials(FILENAME_DEFAULT) . '">' 'Testimonials' '</a>'
    But it's not showing up. I've been tweaking this thing forever, assuming the proper configuration is just around the corner.

    Could someone who knows what they are doing point me in the right direction?

    Thanks!

  3. #153
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by MeltDown View Post
    What am I missing here??

    Objective: Add my Testimonials link to the "More Information" sidebox. You can see that've added the bottom line of code to more_information.php:

    PHP Code:
      unset($more_information);

    // test if links should display
      
    if (DEFINE_PAGE_2_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_2) . '">' BOX_INFORMATION_PAGE_2 '</a>';
      }
      if (
    DEFINE_PAGE_3_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_3) . '">' BOX_INFORMATION_PAGE_3 '</a>';
      }
      if (
    DEFINE_PAGE_4_STATUS <= 1) {
        
    $more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_4) . '">' BOX_INFORMATION_PAGE_4 '</a>';
      }
      if (
    DEFINE_DEFAULT_STATUS <= 1) {
        
    $more_information[] = '<a href="' index.php?main_page=testimonials_manager_all_testimonials(FILENAME_DEFAULT) . '">' 'Testimonials' '</a>'
    But it's not showing up. I've been tweaking this thing forever, assuming the proper configuration is just around the corner.

    Could someone who knows what they are doing point me in the right direction?

    Thanks!

    I took care of this one. (Right or wrong, it WORKS! ) Here's the code I used:
    PHP Code:
    $more_information[] = '<a href="http://www.beadedlily.com/shop/index.php?main_page=testimonials_manager_all_testimonials">Testimonials</a>'
    Tim

  4. #154
    Join Date
    Nov 2006
    Location
    Gloucestershire, UK
    Posts
    21
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Hi Peeps

    Im struggling to change the header on my EZpage... the inportant infomation...thingy mijiggy.

    Can anyone point me in the right direction on how to do this please? Im not very techie

    Many thanks

  5. #155
    Join Date
    Nov 2006
    Location
    Gloucestershire, UK
    Posts
    21
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Thank you my question has been answered

    Eve

  6. #156
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by kuroi View Post
    With CSS if what you want isn't there, you just add it. For example, you could change the color of the EZ-Pages links at the top by adding the following to your stylesheet

    Thanks for the info. Changed the colour to white with no probs but could someone also explain how to centre align the links? I'm assuming this is also done in the stylesheet but is it something I need to change or something I need to add?

    CSS confuses the hell out of me so could you please be precise about what I should add/change and if it's adding lines, where I would need to add them?

    Any help would be very appreciated.

    Steve.

  7. #157
    Join Date
    May 2007
    Posts
    17
    Plugin Contributions
    1

    Default Re: How do EZ-Pages work?

    Hi, on the 1st page of this thread it says:

    "NOTE: While all Links within a Chapter will display together, you can have the different Links display in the Header, Footer or Sidebox on their own. Or, you can have the additional Links only display when the Main Link or one of the Additional Links within the Chapter has been opened."

    Does this mean if I have 3 links with the same chapter and their TOC are 10,20,30 (link #1, #2, #3 respectively) I can set it in the admin so that initially only link#1 shows, but when after I click on link#1, link#2 and link#3 also shows? Like clicking a main category link will show its sub category links for products?

  8. #158
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by dinosoup View Post
    Hi, on the 1st page of this thread it says:

    "NOTE: While all Links within a Chapter will display together, you can have the different Links display in the Header, Footer or Sidebox on their own. Or, you can have the additional Links only display when the Main Link or one of the Additional Links within the Chapter has been opened."

    Does this mean if I have 3 links with the same chapter and their TOC are 10,20,30 (link #1, #2, #3 respectively) I can set it in the admin so that initially only link#1 shows, but when after I click on link#1, link#2 and link#3 also shows? Like clicking a main category link will show its sub category links for products?
    Precisely. link #2 and link # 3 will only show in the table of contents though, not in the header, footer or sidebox.

    To achieve this you just need to set the sidebox, header and footer status to off in the ezpages admin menu, but the table of contents on and ordered as you suggested.

  9. #159
    Join Date
    Feb 2007
    Location
    Leicester UK
    Posts
    219
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by spbennett View Post
    Thanks for the info. Changed the colour to white with no probs but could someone also explain how to centre align the links? I'm assuming this is also done in the stylesheet but is it something I need to change or something I need to add?

    CSS confuses the hell out of me so could you please be precise about what I should add/change and if it's adding lines, where I would need to add them?

    Any help would be very appreciated.

    Steve.

    Can anyone help?

  10. #160
    Join Date
    Apr 2007
    Posts
    28
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    The problem I am having with EZ-Pages is that I am trying to make one a photo gallery and don't know how...any help would be appreciated!
    Thanks!
    Tiffany

 

 
Page 16 of 57 FirstFirst ... 6141516171826 ... LastLast

Similar Threads

  1. v154 Links ON ez-pages TO OTHER turned-off ez-pages don't work after upgrade
    By anduril3019 in forum Upgrading to 1.5.x
    Replies: 2
    Last Post: 19 May 2015, 09:12 AM
  2. how do i get javascript to work in the ez pages?
    By warroyo90 in forum General Questions
    Replies: 2
    Last Post: 28 Mar 2012, 05:14 AM
  3. How can I get my CSS navigation tabs to work for groups of similar pages?
    By sifuhall in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 27 Nov 2009, 07:57 PM
  4. Replies: 3
    Last Post: 22 Jul 2008, 12:01 AM
  5. Bwahahaha How do I get ez-pages to work?
    By hodgejr in forum General Questions
    Replies: 7
    Last Post: 8 Oct 2007, 09:10 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR