qspider Posted February 22, 2014 Posted February 22, 2014 I've searched the addon forums and found a few options but I haven't tried them out yet. I thought I would ask to see if I could find out what the best one for me is. I'm using osc 2.3.4 and have basic php and mySQl skills. I've installed many addons already for discounts, featured products etc. Most are simple. Just configuring can be a mess. Thanks in advance for the help! Quote
♥toyicebear Posted February 22, 2014 Posted February 22, 2014 http://addons.oscommerce.com/info/355 Quote Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here]
qspider Posted February 23, 2014 Author Posted February 23, 2014 (edited) http://addons.oscommerce.com/info/355 Thanks. It appears that is for version 2.2 and not updated in nearly 4 years. Will this work for 2.3.3? Edited February 23, 2014 by qspider Quote
qspider Posted February 23, 2014 Author Posted February 23, 2014 I mistyped my version in the original post. It's 2.3.3 not 234. Quote
♥toyicebear Posted February 23, 2014 Posted February 23, 2014 If you do modifications manually step by step, it also works on 2.3+ qspider 1 Quote Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here]
De Dokta Posted February 23, 2014 Posted February 23, 2014 http://addons.oscommerce.com/info/8457 is for 2.3.x qspider 1 Quote
qspider Posted February 24, 2014 Author Posted February 24, 2014 http://addons.oscommerce.com/info/8457 is for 2.3.x Yes, thank you. After manually installing the other add on I came to a dead end where the instructions ask to alter a column_right.php file yet there is no column_right.php file. I should have known a plugin that's nearly 4 years old and says 2.2 with no info given on 2.3 would not work. I'll give this one a go. Thanks! Quote
qspider Posted February 24, 2014 Author Posted February 24, 2014 This is great. Looks like most of it is the same edits so I didn't have to restore a backup and start over. Keeping fingers crossed. Thanks for the help again! Quote
qspider Posted February 25, 2014 Author Posted February 25, 2014 I'm having an issue with one of the modifications. 16.in catalog/includes/header.php ***FIND: <?php echo tep_draw_button(HEADER_TITLE_CART_CONTENTS . ($cart->count_contents() > 0 ? ' (' . $cart->count_contents() . ')' : ''), 'cart', tep_href_link(FILENAME_SHOPPING_CART)) . tep_draw_button(HEADER_TITLE_CHECKOUT, 'triangle-1-e', tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')) . tep_draw_button(HEADER_TITLE_MY_ACCOUNT, 'person', tep_href_link(FILENAME_ACCOUNT, '', 'SSL')); if (tep_session_is_registered('customer_id')) { echo tep_draw_button(HEADER_TITLE_LOGOFF, null, tep_href_link(FILENAME_LOGOFF, '', 'SSL')); } ?> ***REPLACE WITH: <!-- PWA BOF --> <?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><?php if (tep_session_is_registered('customer_id') && (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) && !$order->customer['is_dummy_account']) { ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> <!-- PWA EOF --> Yet in catalog/includes/header.php there is no find for what's asked for. Where should I put the replacement code? I am using a template as well so that's probably what's causing this issue I imagine. I was just thinking about placing the modification at the top. header.php <?php if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <div> <div class="headerError"> <div class="headerError"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['error_message']))); ?></div> </div> </div> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <div> <div class="headerInfo"> <div class="headerInfo"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['info_message']))); ?></div> </div> </div> <?php } ?> <link rel="shortcut icon" href="includes/favicon.ico"> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.