Forum Replies Created

Viewing 15 posts - 61 through 75 (of 1,879 total)
  • Author
    Posts
  • in reply to: Add A and get 20% on B #19827
    Soft79
    Keymaster
    in reply to: BUG – SHIPPING METHOD SELECTION GOES WRONG #19821
    Soft79
    Keymaster

    Please don’t send private information in this forum! Instead please send details to email address: admin at soft79.nl.

    When I click the url you provided, I do see that I get a ‘live staging’ cookie, but when I try to enter wp-admin I get redirected to /404. Also, all pages display the ‘Stiamo lavorando al nostro nuovo sitoweb’ notification.

    in reply to: BUG – SHIPPING METHOD SELECTION GOES WRONG #19814
    Soft79
    Keymaster

    I need (temporary) wp-admin access to investigate this further. Can you please send me credentials to admin at soft79.nl. If possible, please create a staging/test environment.

    in reply to: BUG – SHIPPING METHOD SELECTION GOES WRONG #19812
    Soft79
    Keymaster

    In that case you can’t restrict the coupon to the non-free shipping methods.

    Just in case I send you a link to how FREE SHIPPING works in WooCommerce: https://woocommerce.com/document/free-shipping/ .

    I suspect you don’t have a free shipping method configured. If you have, can you please send a screenshot of the configured free shipping method? ( WooCommerce > Settings > Shipping)

    in reply to: Js error when free shipping is selected #19803
    Soft79
    Keymaster

    Source of the problem is in this template file. Please let your theme developer take a look at it.

    /home/sinituotefi/website/wp-content/themes/storefront/assets/functions/WC_SINI_Shipping.php

    Please note: This is not an existing file in the original storefront theme. It looks like changes have been made to the storefront theme without using a child theme. This is not recommended!

    in reply to: Js error when free shipping is selected #19800
    Soft79
    Keymaster

    Please provide the full stack trace of the error

    in reply to: customer must choose from the free products #19798
    Soft79
    Keymaster

    To set the maximum number of free items to 2, paste this snippet in your child theme’s functions.php:

    
    add_filter(
      'wjecf_free_product_amount_for_coupon',
      function ( $amount, $coupon ) {
        if ( strcasecmp( $coupon->get_code(), 'THE_COUPON_CODE' ) === 0 && $amount > 2 ) {
          $amount = 2;
        }
        return $amount;
      },
      10,
      2
    );
    
    

    To use checkboxes in the form:
    Copy wp-content/plugins/woocommere-auto-added-coupons-pro/templates/coupon-select-free-product.php to wp-content/themes/YOUR_CHILD_THEME/woocommere-auto-added-coupons/coupon-select-free-product.php and replace

    $input_type = $allow_multiple_products ? 'number' : 'radio';

    with

    $input_type = $allow_multiple_products ? 'checkbox' : 'radio';

    in reply to: customer must choose from the free products #19794
    Soft79
    Keymaster

    When you check ‘allow multiplication’ the amount of products that can be chosen will be set to the number of times the minimum restrictions apply. E.g. if ‘minimimum subtotal’ is $100 and the cart contains $200 then 2 products can be chosen.

    in reply to: Coupon being removed during checkout #19793
    Soft79
    Keymaster

    Hi, please provide the details to admin at soft79.nl.

    in reply to: BUG – SHIPPING METHOD SELECTION GOES WRONG #19787
    Soft79
    Keymaster

    Hi,

    Thank you for sending me your coupon settings and video.

    Your coupon has ‘enable free shipping’ checked, but there is no free shipping method configured. Please uncheck ‘enable free shipping’.

    in reply to: How to work Custom Fields Operator ? #19776
    Soft79
    Keymaster

    I sent you a new url.

    in reply to: Cant select variation in free gift coupon #19772
    Soft79
    Keymaster

    Hi,

    Your store loads a css file ( /custom/themes/100×100/assets/css/100×100.min.css ) that contains the following css:

    
    form input[type=checkbox],form input[type=radio]{display:none}
    
    input,input[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none}
    

    These two css rules disable the free product selection.

    Please disable these two css rules.

    in reply to: Add timer to an autocoupon #19770
    Soft79
    Keymaster

    Hi, no our plugin doesn’t have timer-functionality.

    in reply to: Cant select variation in free gift coupon #19769
    Soft79
    Keymaster

    Can you please send an url + instructions for us so we can see this issue in your store? If you don’t want to share this information publicly, please send the details to admin at soft79.nl

    in reply to: Export/import coupons, possible? #19764
    Soft79
    Keymaster

    Use wp-admin > Tools > Export

Viewing 15 posts - 61 through 75 (of 1,879 total)