Page 16 of 21 FirstFirst ... 61415161718 ... LastLast
Results 151 to 160 of 201
  1. #151
    Join Date
    Dec 2019
    Location
    Trenton, TX
    Posts
    25
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    I want to verify which version I downloaded at 12:10pm yesterday (to make certain it's the 3.0 version which is showing a later upload time). I presume one of the files has a version number in it (commented)?

  2. #152
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by pegasuspublishing View Post
    I want to verify which version I downloaded at 12:10pm yesterday (to make certain it's the 3.0 version which is showing a later upload time). I presume one of the files has a version number in it (commented)?
    i am sorry i am still getting used to working with github. I think i removed that version you are looking for. I do apologize for that beginners mistake. If you grab the latest version which is on github i don't anticipate any more changes until the next version upgrade.

    I did make a few verson upgrades yesterday because I rushed it. The final version was completed at 11:50pm yesterday. Now feeling confident that the template itself is ready to rock. I really focused on making things easier for the users.

    There may be one minor change to the opc checkout file which i will let you know once completed. Shoud have it completed by tomorrow ill send you over the file

  3. #153
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    i am sorry i am still getting used to working with github. I think i removed that version you are looking for. I do apologize for that beginners mistake. If you grab the latest version which is on github i don't anticipate any more changes until the next version upgrade.

    I did make a few verson upgrades yesterday because I rushed it. The final version was completed at 11:50pm yesterday. Now feeling confident that the template itself is ready to rock. I really focused on making things easier for the users.

    There may be one minor change to the opc checkout file which i will let you know once completed. Shoud have it completed by tomorrow ill send you over the file
    I made one minor change to the CSS For One-Page Checkout - Optional file. No other changes were made...

  4. #154
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    How do I display the link for special product in the category sideboxe?

    I can see new product and featured product but the specials product is missing.

    How do I get all 3 of these link to display in the hamburger menu as well?

    The php code is there but it is not showing. I went thru the css but I was not able to find it unfortunatelylike i did for the centerboxes.

    Thank you

  5. #155
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    How do I display the link for special product in the category sideboxe?

    I can see new product and featured product but the specials product is missing.

    How do I get all 3 of these link to display in the hamburger menu as well?

    The php code is there but it is not showing. I went thru the css but I was not able to find it unfortunatelylike i did for the centerboxes.

    Thank you
    How do I get all 3 of these link to display in the hamburger menu as well?
    PATH: includes\templates\responsive_classic\common\tpl_header.php

    add this to line 74. You can create whatever links you need. Use what i gave you as a guide to create the other links
    Code:
    <li><?php echo '<a href="' . zen_href_link(FILENAME_SPECIALS) . '">'; ?> <i class="fa fa-xl fa-fw fa-sack-dollar" aria-hidden="true">&nbsp;</i> Specials</a></li>

  6. #156
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    How do I get all 3 of these link to display in the hamburger menu as well?
    PATH: includes\templates\responsive_classic\common\tpl_header.php

    add this to line 74. You can create whatever links you need. Use what i gave you as a guide to create the other links
    Code:
    <li><?php echo '<a href="' . zen_href_link(FILENAME_SPECIALS) . '">'; ?> <i class="fa fa-xl fa-fw fa-sack-dollar" aria-hidden="true">##</i> Specials</a></li>
    thank you

  7. #157
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    thank you
    Nick do this instead. its a better solution.
    path: includes\templates\responsive_classic\sideboxes\tpl_categories.php
    line 62

    find
    Code:
    if (SHOW_CATEGORIES_BOX_SPECIALS === 'true' || SHOW_CATEGORIES_BOX_PRODUCTS_NEW === 'true' || SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS === 'true' || SHOW_CATEGORIES_BOX_PRODUCTS_ALL === 'true' || SHOW_CATEGORIES_BOX_FEATURED_CATEGORIES === 'true') {
        // display a separator between categories and links
        if (SHOW_CATEGORIES_SEPARATOR_LINK === '1') {
            $content .= '' . "\n";
        }
        if (SHOW_CATEGORIES_BOX_SPECIALS === 'true') {
            $show_this = $db->Execute("SELECT products_id FROM " . TABLE_SPECIALS . " WHERE status= 1 limit 1");
            if ($show_this->EOF) {
                $content .= '<li><a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a></li>' . "\n";
            }
        }

    replace with

    Code:
     if (SHOW_CATEGORIES_BOX_SPECIALS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true' or SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
    // display a separator between categories and links
        if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') {
          $content .= '<hr id="catBoxDivider">' . "\n";
        }
        if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
          $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
          if ($show_this->RecordCount() > 0) {
            $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a>' . '<br>' . "\n";
          }
        }

  8. #158
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,973
    Plugin Contributions
    96

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    Nick do this instead. its a better solution.
    path: includes\templates\responsive_classic\sideboxes\tpl_categories.php
    line 62

    find
    Code:
    if (SHOW_CATEGORIES_BOX_SPECIALS === 'true' || SHOW_CATEGORIES_BOX_PRODUCTS_NEW === 'true' || SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS === 'true' || SHOW_CATEGORIES_BOX_PRODUCTS_ALL === 'true' || SHOW_CATEGORIES_BOX_FEATURED_CATEGORIES === 'true') {
        // display a separator between categories and links
        if (SHOW_CATEGORIES_SEPARATOR_LINK === '1') {
            $content .= '' . "\n";
        }
        if (SHOW_CATEGORIES_BOX_SPECIALS === 'true') {
            $show_this = $db->Execute("SELECT products_id FROM " . TABLE_SPECIALS . " WHERE status= 1 limit 1");
            if ($show_this->EOF) {
                $content .= '<li><a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a></li>' . "\n";
            }
        }

    replace with

    Code:
     if (SHOW_CATEGORIES_BOX_SPECIALS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true' or SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
    // display a separator between categories and links
        if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') {
          $content .= '<hr id="catBoxDivider">' . "\n";
        }
        if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
          $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
          if ($show_this->RecordCount() > 0) {
            $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a>' . '<br>' . "\n";
          }
        }
    Just a note for your future development efforts: It's more performant to use !$show_this->EOF instead of the highlighted clause above.

  9. #159
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    I created a product image gallery with thumbnails, drag/swipe scrolling, arrows optional infinite scroll, and a modal lightbox.

    This will be a simple drag and drop right into the template. Would love some feedback before i submit to GitHub and zencart.......

    This is example of Inifinite scroll
    https://www.zencartdemo.com/index.ph...products_id=34

    this is a without infinite scroll
    https://www.zencartdemo.com/index.ph...&products_id=5


    Just the lightbox
    https://www.zencartdemo.com/index.ph...products_id=52

    Arrows are optional
    Infinite scroll optional
    Thumb Scroll optional

  10. #160
    Join Date
    Jun 2008
    Location
    Japan
    Posts
    343
    Plugin Contributions
    7

    Default Re: Responsive Classic Redesign Support thread

    This is simply GREAT!
    My first reaction was 'Wooah...'
    I tested the demo site on a smart phone and a big screen PC, everything looks great and works great! On big screen, where thumbnails are on the left, I did not see at first that I could scroll up and down and thought there were only 5 images for Bugs' Life DVD. After watching the gallery, I realized there were more and found out I can scroll through thumbnails even on a big screen PC, which I think is still a rare functionality at this size of screen. Perhaps a visual indicator that scrolling is possible would be nice.
    I really hope that this will become a ZC core functionnality.

 

 
Page 16 of 21 FirstFirst ... 61415161718 ... LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1087
    Last Post: 18 Jan 2025, 07:23 PM
  2. v155 Tableau 2 Responsive Theme - Support Thread
    By numinix in forum Addon Templates
    Replies: 24
    Last Post: 24 Jan 2023, 04:05 AM
  3. v156 ZCA Responsive Classic Template for 1.5.6 [Support Thread]
    By rbarbour in forum Addon Templates
    Replies: 31
    Last Post: 15 Nov 2019, 04:21 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. Bentley Classic Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 173
    Last Post: 17 Sep 2013, 08:25 PM

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