Hotclutch 191 Posted August 18, 2021 I am making available the previous CE of osCommerce called Frozen. With Bootstrap 5. It's about 60-70% completed, I can work on it as my time allows. https://www.dropbox.com/s/i6pdg383k67otql/defrosted-master.zip?dl=0 This is a feasible option for anyone wanting to start with osCommerce. Also the majority of addons will still work with it. Share this post Link to post Share on other sites
ruden 53 Posted August 18, 2021 ??? 1 Smoky Barnable reacted to this Vanilla osCommerce this fork osCommerce v2.3.5 Download | Demo | Support Share this post Link to post Share on other sites
Hotclutch 191 Posted August 19, 2021 The bulk of the required changes are now complete. If i missed anything, report them here so that we can have a look at them. Share this post Link to post Share on other sites
bonbec 127 Posted August 26, 2021 (edited) Hello Ashley, Out of curiosity I installed your version. The content of the page is not displayed in the right place whatever the requested page. Php 7.4.14, The whole installation went well, all thumbs were green. The result is identical with FireFox 91 and Edge. Edited August 26, 2021 by bonbec Add a screenshot with OsC 2.2 since 2006 ... Share this post Link to post Share on other sites
bonbec 127 Posted August 26, 2021 (edited) On 8/18/2021 at 4:02 PM, ruden said: ??? Hello Valeriy, Defrosted is based on Bootstrap 2.3.4 Vanilla is based on 2.3.5 (like ClickShopping I believe) Edited August 26, 2021 by bonbec with OsC 2.2 since 2006 ... Share this post Link to post Share on other sites
Hotclutch 191 Posted August 26, 2021 @bonbec Hi Fred. I have checked this, and in the template file for the whats new box the code appears as: <div class="card mb-3"> <div class="card-header"><a href="<?php echo tep_href_link('products_new.php'); ?>"><?php echo MODULE_BOXES_WHATS_NEW_BOX_TITLE; ?></a></div> <div class="card-body text-center"> <?php echo '<a href="' . tep_href_link('product_info.php', 'products_id=' . $random_product['products_id']) . '">' . tep_image('images/' . $random_product['products_image'], htmlspecialchars($random_product['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . tep_href_link('product_info.php', 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br />' . $whats_new_price . '</div>'; ?> </div> </div> Redundant closing </div> tag. Replace the code with: <div class="card mb-3"> <div class="card-header"><a href="<?php echo tep_href_link('products_new.php'); ?>"><?php echo MODULE_BOXES_WHATS_NEW_BOX_TITLE; ?></a></div> <div class="card-body text-center"> <?php echo '<a href="' . tep_href_link('product_info.php', 'products_id=' . $random_product['products_id']) . '">' . tep_image('images/' . $random_product['products_image'], htmlspecialchars($random_product['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . tep_href_link('product_info.php', 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br />' . $whats_new_price; ?> </div> </div> Please check and let us know if that fixes the problem. Share this post Link to post Share on other sites
bonbec 127 Posted August 26, 2021 @Hotclutch Ashley, that fixes the problem, thank's ! 😉 1 Hotclutch reacted to this with OsC 2.2 since 2006 ... Share this post Link to post Share on other sites