-
Content count
124 -
Joined
-
Last visited
Profile Information
-
Real Name
Lorraine Hodgkinson
-
Gender
Female
-
Thanks for checking. The only other thing I didn’t do was add the wholesale attributes/options. I’ll keep playing, my database is modified but both 1.0.5.0 are clean and SPPC 4.1.1 is your original files ... very confusing ...
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Hello, I’m trying SPPC Lite 4.1.1 on 1.0.5.0 (clean) again. I’ve copied your files over for the above and when I add a wholesale product to the shopping cart no price shows at all. I’m using retail prices as 0. I’ve changed the names of wholesale/retail groups. Why if only a WP set does it not show in shopping cart? Thanks, Lorraine
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Okay I’ve sleep walked into trying to use the latest version and mod it up. Point taken I’ll follow your comments and pay more attention in future. Thank you
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Okay, Thank you so it won’t work with the latest Phoenix version. That will save some time ... Any idea on time frame? Could it be clearer on app the maximum version please. Thank you, Lorraine
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Hello Raiwa, Don't want to sound cheeky but I've just uploaded a brand new store: Installed Version: OSCOM CE Phoenix v1.0.5.8 and tried to install your latest Wholesale SPPC lite 4.1.1 It seems the file modifications don't exist in admin/customers.php I tried uploading the modified file but it completely broke everything. Puzzled can Wholesale SPPC lite 4..1.1 be put onto the above phoenix version? Thanks in advance, Lorraine
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Categories - Amount of articles not shown
herbsandhelpers replied to Philo2005's topic in osCommerce Online Merchant Community Bootstrap Edition
Hi, How have you even got SPPC to work on 1.0.0.5? I’m desperately trying to move to Phoenix but I simple can’t get SPPC to work? The admin area is fine but not the shop. Could you indicate which files need changing in Phoenix and from which version? I’ve had it working right up to BS Gold. Thanks in advance, Lorraine -
Ahh thank you! That’s going to save a few hours of puzzlement ... looks like I’ll have to try and hack the groups in. Thank you for your enlightenment ... Happy New Year!
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Very grateful for your wonderful SPPC which I’ve used successfully for years however after recently installing on Phoenix 1.0.4.0 I find that categories and products are no longer hidden. I’ve tried adding the Code listed manual installation to the .htaccess file but no luck. Is it just a case of placing this code somewhere? Love to have it back separating categories and products from retail/wholesale. Have I done something wrong? Lorraine
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Very grateful for your wonderful SPPC which I’ve used successfully for years however after recently installing on Phoenix 1.0.4.0 I find that categories and products are no longer hidden. I’ve tried adding the Code listed manual installation to the .htaccess file but no luck. Is it just a case of placing this code somewhere? Love to have it back separating categories and products from retail/wholesale. Have I done something wrong? Lorraine
- 141 replies
-
- sppc
- separate price per customer
-
(and 5 more)
Tagged with:
-
Square Payments Plugin for osCommerce
herbsandhelpers replied to shichemt's topic in General Add-Ons Support
Hello, Been trying to make this work on Frozen CE php 7.2 with Raiwa modular checkout. No problem installing and getting responses e.g. missing values etc. However running as sandbox with the test card nothing happens pressing confirm button. Pressing finalise button just seems to bypass, confirming order but no payment. Tried the recommended solutions above again nothing don’t seem to get a working button, no call to Square made. I am wondering what people have as the callback url in square? Couldn’t really work out what to put? Any help appreciated just so frustrating getting no where and not knowing why. Lorraine -
herbsandhelpers started following Mail Manager for OSC v2.3
-
I couldn't find anything similar in Add Ons that's why I persisted with altering the above module, it does work, although I'm not a coder so would appreciate an expert eye. I did look at the link you posted and one of the comments was that someone was unable to get it to work, which doesn't fill with confidence. I think for now I'll stick with what I've got, although if yours becomes an official add on I may give it a try. Lorraine
-
Doooh! Can you post the Add On link please ... Lorraine
-
Hello, Just moved to 2.3.4 BS GOLD and needed to carry on using this excellent contrib. Admin side worked fine along with assistance posted here, however getting the tabs to show shop side failed. I'm not a coder but I've just spent many hours altering the products_tabs.php module to work and show tabs again. I used a lot of help from here: http://forums.oscommerce.com/topic/398352-234bs-tabs-in-product-info/ If it will help anyone then please find the adjusted module below. You can remove the 'brand/image bit' if you prefer. Please note I'm not a coder so an expert eye would be helpful. Lorraine <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ ?> <script type="text/javascript"> $(function() { $( "#tabs" ).tabs(); }); </script> <nav class="navbar navbar-default"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="#"> <img alt="Brand" src="images/QELICON.png"> </a> <!-- Nav tabs --> <div id="tabs" role="tabpanel" class="nav nav-tabs" role="tablist"> <ul class="nav nav-tabs" role="tablist"> <li role="presentation" class="active"><a href="#tabs-0" aria-controls="tabs-0" role="tab" data-toggle="tab"><?php echo TEXT_TAB_DESCRIPTION; ?></a></li> <?php // Tab 1 if ($product_info['products_tab_1'] > '') { ?> <li role="presentation"><a href="#tabs-1" aria-controls="tabs-1" role="tab" data-toggle="tab"><?php echo PRODUCT_TABS_TAB_1; ?></a></li> <?php } ?> <?php // Tab 2 if ($product_info['products_tab_2'] > '') { ?> <li role="presentation"><a href="#tabs-2" aria-controls="tabs-2" role="tab" data-toggle="tab"><?php echo PRODUCT_TABS_TAB_2; ?></a></li> <?php } ?> <?php // Tab 3 if ($product_info['products_tab_3'] > '') { ?> <li role="presentation"><a href="#tabs-3" aria-controls="tabs-3" role="tab" data-toggle="tab"><?php echo PRODUCT_TABS_TAB_3; ?></a></li> <?php } ?> <?php // Tab 4 if ($product_info['products_tab_4'] > '') { ?> <li role="presentation"><a href="#tabs-4" aria-controls="tabs-4" role="tab" data-toggle="tab"><?php echo PRODUCT_TABS_TAB_4; ?></a></li> <?php } ?> <?php // Tab 5 if ($product_info['products_tab_5'] > '') { ?> <li role="presentation"><a href="#tabs-5" aria-controls="tabs-5" role="tab" data-toggle="tab"><?php echo PRODUCT_TABS_TAB_5; ?></a></li> <?php } ?> <?php // Review Tab if (PRODUCT_TABS_REVIEWS_TAB == 'True') { ?> <li><a href="#tabs-6"><?php echo TEXT_TAB_REVIEWS; ?></a></li> <?php } ?> <?php // Ask a Question Tab if (PRODUCT_TABS_QUESTION_TAB == 'True') { ?> <li><a href="#tabs-7"><?php echo TEXT_TAB_ASK_A_QUESTION; ?></a></li> <?php } ?> <?php // Tell a Friend Tab if (PRODUCT_TABS_FRIEND_TAB == 'True') { ?> <li><a href="#tabs-8"><?php echo TEXT_TAB_TELL_A_FRIEND; ?></a></li> <?php } ?> </ul> </div> <!-- Tab panes --> <div class="tab-content"> <div role="tabpanel" class="tab-pane active" id="tabs-0"> <?php echo stripslashes($product_info['products_description']); ?> </div> <?php // Tab 1 if ($product_info['products_tab_1'] > '') { ?> <div role="tabpanel" class="tab-pane" id="tabs-1"> <br> <?php echo stripslashes ($product_info['products_tab_1']); ?> </div> <?php } ?> <?php // Tab 2 if ($product_info['products_tab_2'] > '') { ?> <div role="tabpanel" class="tab-pane" id="tabs-2"> <br> <?php echo stripslashes ($product_info['products_tab_2']); ?> </div> <?php } ?> <?php // Tab 3 if ($product_info['products_tab_3'] > '') { ?> <div role="tabpanel" class="tab-pane" id="tabs-3"> <br> <?php echo stripslashes ($product_info['products_tab_3']); ?> </div> <?php } ?> <?php // Tab 4 if ($product_info['products_tab_4'] > '') { ?> <div role="tabpanel" class="tab-pane" id="tabs-4"> <br> <?php echo stripslashes ($product_info['products_tab_4']); ?> </div> <?php } ?> <?php // Tab 5 if ($product_info['products_tab_5'] > '') { ?> <div role="tabpanel" class="tab-pane"id="tabs-5"> <br> <?php echo stripslashes ($product_info['products_tab_5']); ?> </div> <?php } ?> <?php // Review Tab if (PRODUCT_TABS_REVIEWS_TAB == 'True') { echo ' <div id="tabs-6">'; include( DIR_WS_MODULES . FILENAME_PRODUCT_REVIEWS ); echo ' </div><div style="clear: both;"></div>'; } ?> <?php // Ask a Question Tab if (PRODUCT_TABS_QUESTION_TAB == 'True') { echo ' <div id="tabs-7">'; include( DIR_WS_MODULES . FILENAME_ASK_A_QUESTION ); echo ' </div><div style="clear: both;"></div>'; } ?> <?php // Tell a Friend Tab if (PRODUCT_TABS_FRIEND_TAB == 'True') { echo ' <div id="tabs-8">'; include( DIR_WS_MODULES . FILENAME_TELL_A_FRIEND ); echo ' </div><div style="clear: both;"></div>'; } ?> </div> </div> </div> </nav>
-
herbsandhelpers started following Kirod
-
herbsandhelpers started following Responsive osCommerce - Bootstrap
-
[Contribution] iOSC - mobile version of OSC on your iPhone
herbsandhelpers replied to bumbarash's topic in General Add-Ons Support
Solved! The whole problem was the Ultimate SEO urls 5, With making soo many changes I uploaded the original Ultimate SEO files but then didn't upload the ones from support as well! Once this corrected all is well. Many thanks, when you make several changes it's hard to know what's gone wrong sometimes. Back to normal thanks for a great contrib! -
[Contribution] iOSC - mobile version of OSC on your iPhone
herbsandhelpers replied to bumbarash's topic in General Add-Ons Support
Thanks Rainer, general is fine but a there's a </div> at the end of the header file. Removing it seems to make no difference can you direct me to the thread on this please? Thanks, Lorraine