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 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
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"> </i> Specials</a></li>
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"; } }
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
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.