Show Posts


Messages - Sam_78

Pages: [1] 2 3 ... 18
1
General Support / Use coupon for certain category only
« on: December 04, 2023, 06:35:56 PM »
Hi, is there a way to have coupon apply only to certain products or a selected category ?  I added category A for a coupon of 10% discount  but now if customer adds coin from category A & B both coupon is applied to total. I want it to apply to only to those product belonging to category A not the entire cart.

2
General Support / Re: Update Shipping logic
« on: November 13, 2023, 10:45:02 PM »
Thanks abolabo for your reply /default_flat_rate_shipping.php This is the file that needed to be updated.


Here is one more doubt regarding same issue. In my order I have 2 products one that has flat shipping rate of $25 and another one that has separate shipping for $15  I want shipping to be charged just $25 not $15 + $25= $40 (which ever is bigger). Where can I change that code??

3
General Support / Update Shipping logic
« on: November 11, 2023, 01:25:01 PM »
I have a extension 'default_flat_rate_shipping' turned on with price of $15  and now I have some products that requires individual shipping for $25.
The issue I am having is if a customer adds 1 product that has default flat shipping and 4 products of this individual shipping it charges $25*4 + $15  I want it to charge $24*1 + $15    How can I limit shipping for individual product to not multiply it by quantity?

4
General Support / Re: Replicate website for backup
« on: August 21, 2023, 02:16:26 PM »
Thanks llegrand 

I read about it and this is what I understood:

From what I read is I do not test failover site I just dump my code and MySql to a separate Cpanel account and have  job that updates my Database everynight and point that IP address as Failover at my DNS, correct?

main-website.com will have Cpanel and MySQL point to 1.2.3.4 and at my DNS they check it every minute and if they dont get response they point it to failover.
Let's say my failover is at failover-website.com   and MySQL is also there but I do need to test this failover and for this failover I need to have URL in config file? correct ?

One option I can think of is to make host entry and try it locally and it should work but I just want to know how these big companies handle failover.

5
General Support / Re: Replicate website for backup
« on: August 18, 2023, 05:09:32 PM »
I understand, but I want to replicate my code and handle it with load balancer. So lets say my original website crashes and load balancer will point it to my backup IP address. But at that backup URL would be different so I don't know how to fix that because domain name should be for real website not the backup one

main-website.com  is my original website     I copy code and database to to backup-website.com
My DNS Points to main-website.com and when it is down it points to backup-website.com   

6
General Support / Re: Replicate website for backup
« on: August 17, 2023, 10:10:01 AM »
Any suggestions?

7
General Support / Replicate website for backup
« on: August 16, 2023, 05:29:43 PM »
Hi I had my server crashed for over 5 hours and my website was down. Is there any solution in abanteCart that can handle this?
I know I can have the same code and database on a different server but again I have a question regarding that
Lets say my actual domain is domain.com and my website and database is hosted there.
I will set up a backup server name backup-domain.com and test my abanteCart over there and make sure it is working. But the URL for backup is backup-domain.com

My DNS provider does provide failover and he says I can set up failover but now my backup domain is backup-domain.com  I don't want customers to see backup-domain.com as DNS will be pointing to different IP.

So is there any way I can use same domain name in abanteCart's config file after testing it on backup server. I am confused here is there any other solution or can someone help me with this?

8
General Support / Re: Add class to image uploaded
« on: May 03, 2023, 12:01:47 PM »
Yes, so what file creates this <img> tag?  I need to add a class to it.   When we add media and hit save it creates <img src="resources/image/18/80/5.jpg" style="width: 300px;" />  I need to add a class="img-responsive"   Can you tell me what file ?

9
General Support / Re: Add class to image uploaded
« on: May 01, 2023, 10:34:58 AM »
any suggestions?

10
General Support / Add class to image uploaded
« on: April 24, 2023, 07:36:21 PM »
Hi on product page admin side if we add media (image) into product_description text_editor it takes full size on product page (storefront) is it possible to add a class to it? Not in html but via visual section as soon as they add media that class gets assigned

11
General Support / incomplete order email template
« on: April 20, 2023, 12:47:02 AM »
Hi I went to sales -> Abandoned Orders  and there are two options automatic emailing and email selected. Where is the template that will be used for sending this email   How can I customize it   I am using v 1.3.1

12
General Support / Extension for donation
« on: February 22, 2023, 10:55:24 AM »
Hi, I am looking for an extension which is similar to  https://marketplace.abantecart.com/donation  but instead of product it will be on checkout where customer can round off their total with few custom options like Donate: $1, $2, $5, $10 or ROUND-UP   


13
General Support / Automated email
« on: January 22, 2023, 10:22:35 PM »
Hello,

One of customer is getting automated emails with "subject": "Product with ID #283 is out of Stock."  Can you tell me when is it triggering or where is setting for this? for AbanteCart Version 1.3.1

Thanks

14
General Support / Re: Language not displaying
« on: December 15, 2022, 04:44:56 PM »
I tried doing that but still no luck.  Even hardcoding is not working. Strange thing is just the name part is not working rest everything is fine

'name'    => 'Select Type'

is also not working

15
General Support / Language not displaying
« on: December 05, 2022, 11:37:07 PM »
Hi I am trying to add a radio button on \storefront\controller\pages\account\subscriber.php Line #138

Code: [Select]
$this->data['form']['newsletter_type'] = $form->getFieldHtml(array(
            'type'    => 'radio',
            'name'    => $this->language->get('text_newsletter_type'); // tried  'label'    => $this->language->get('text_newsletter_type'); // 'name'    => 'Newsletter Type:', // nothing displays label
            'value'   => '1',
            'options' => array(
                '1' => 'Digital',
                '0' => 'Print',
            ),
        ));

added this to storefront\language\english\account\newsletter.xml

   <definition>
      <key>text_newsletter_type</key>
      <value><![CDATA[Newsletter Type:]]></value>
   </definition>

on the form I am not able to get label to display, options are displaying. I don't mind hardcoding this word in subscriber.php but I need a label for those radio button.  I did clear browser cache and system cache
Can someone point my mistake? or help me how to fix it

Pages: [1] 2 3 ... 18

Powered by SMFPacks Social Login Mod