-
Content count
148 -
Joined
-
Last visited
-
Days Won
4
Moxamint last won the day on July 24 2017
Moxamint had the most liked content!
About Moxamint
- Currently Viewing Topic: Modular Checkout
Profile Information
-
Real Name
Ai-Teh Eddy Lin
-
Gender
Male
-
Location
TAIWAN (a country, NOT part of China. Period.)
Recent Profile Visitors
-
-
-
-
Moxamint started following View Cart Icons - is it Font Awesome or Bootstrap btn issue and Modular Checkout
-
Modular Checkout
Moxamint replied to raiwa's topic in osCommerce Online Merchant Community Bootstrap Edition
Step Wizard - maybe should be allowed to show on BOTH top and bottom of the page like the pagnation numbers? Eddy- 174 replies
-
-
-
View Cart Icons - is it Font Awesome or Bootstrap btn issue
Moxamint replied to Tiff13's topic in osCommerce Online Merchant Community Bootstrap Edition
fa fa-refresh => fas fa-sync fa fa-remove => fas fa-times should fix them unless those icons are from elsewhere other than stock shopping_cart.php. Maybe you should check those files that came from the module you installed? Cheers, Eddy -
-
-
-
Moxamint started following Faceted Search add-on, , Who in the EU has heard of GDPR and will it affect you and and 4 others
-
Who in the EU has heard of GDPR and will it affect you
Moxamint replied to 14steve14's topic in E-Commerce Laws
Hi, Is using Google Analytics module in osC considered GDPR's definition of profiling using personal information ? Thanks in advance for your input. Eddy -
-
Bootstrap 3 in 2.3.4 - Responsive from the Get Go
Moxamint replied to burt's topic in osCommerce Online Merchant Community Bootstrap Edition
Would be nice so that the "Pro" version can be utilized easily as well. -
-
Restock product quantity on order delete doesn't switch status to 1
Moxamint replied to raiwa's topic in General Support
For my shop I prefer not to even turn product status to false when the product has been bought out. It confuses the customer. Thanks, Eddy -
-
Just asked @burt about this yesterday! I also wish I could rearrange the input fields in account creating page by simply giving them sort order... Cheers, Eddy
- 15 replies
-
- default country
- remove country field
-
(and 1 more)
Tagged with:
-
Faceted Search add-on
Moxamint replied to rudolfl's topic in osCommerce Online Merchant Community Bootstrap Edition
Some products would disappear if I drag the slider around and then drag them back to the min and the max. Win10, Chrome. -
how to allow a paypal method over a certain amount
Moxamint replied to stellaplata's topic in General Support
Hi @stellaplata, This is how I did it on my legacy site, which involves core changes. In <<paypal_standard.php>>, find: function update_status() { global $order; Add right under: if ( $order->info['subtotal'] < MODULE_PAYMENT_PAYPAL_STANDARD_ACCEPTED_LOWER_THRESHOLD ) { $this->enabled = false; } Where MODULE_PAYMENT_PAYPAL_STANDARD_ACCEPTED_LOWER_THRESHOLD you could replace it with 100 so that PayPal payment option does not show for any orders < 100. Please backup your file before making changes to it. Cheers, Eddy- 2 replies
-
- paypal
- oscommerce2.3
-
(and 1 more)
Tagged with:
-
@Cyperis Hi Clint, Unfortunately you have to modify <<checkout_process.php>>. Find the following 3 lines of code and comment them out completely: if ( ($stock_left < 1) && (STOCK_ALLOW_CHECKOUT == 'false') ) { tep_db_query("update " . TABLE_PRODUCTS . " set products_status = '0' where products_id = '" . tep_get_prid($order->products[$i]['id']) . "'"); } And you'll get the result you'd like to achieve. Cheers, Eddy
-
On rare occasions I would receive two confirmation e-mails from PayPal from both <<paypal_standard.php>> & <<standard_ipn.php>> for the same PayPal transaction, but most of the time I receive just one confirmation e-mail from PayPal - either (mostly) from <<paypal_standard.php>> or from <<standard_ipn.php>>. My site is on the latest BS Edge with PayPal App v5.018 Payment Standard updated to work with BS Edge. PayPal PDT is set to on and IPN messages is disabled in my PayPal account. Cheers, Eddy
-
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
Moxamint replied to spidometrs's topic in General Add-Ons Support
@Jack_mcs Apparently the typo has been noticed & mentioned... never mind. Cheers, Eddy -
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
Moxamint replied to spidometrs's topic in General Add-Ons Support
@Jack_mcs In includes\classes\seo.class.php in the most recent Ultimate SEO URLs package you uploaded (1st October 2016), line 1124 FROM `peoducts_description` should be FROM `products_description` Cheers, Eddy -
Hi, I am using Ultimate Seo Urls 5 for Responsive Oscom (https://apps.oscommerce.com/Hj4y0&ultimate-seo-urls-5-for-responsive-oscom) and have not encountered any issues with it. However, one of my languages is Japanese, which is a multi-byte language. When I had all special characters filtered out, the URLs basically have nothing left but something like "-c-5_9.html". Is it possible to force all languages to use and only use the SEO URLs of the default language (English)? Since Japanese SEO URLs still have /ja/ as part of the URL, (I think) the Japanese pages will still be properly indexed. Thanks in advance if anyone could give me some ideas on how to do this. Cheers, Eddy
-
It requires code changes in class file \includes\classes\shopping_cart.php because the osC in-built attribute system does not recognize weight options so that they won't get added into the total weight. Perhaps some experienced coders in this forums would chime in and help you with the code changes required. Cheers, Eddy