• Resolved joaquin2019

    (@joaquin2019)


    Dear experts,
    Please this is an urgency.
    https://www.candleart.es/
    When placing an order – when I place the country – indicates the fix price of deliver 35 euros. And not distinguish between the price of the diferent countries.

    please help

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi @joaquin2019

    I understand that the currency and amount is not changing at the time of checkout, irrespective of the country selected.

    I noticed that your checkout page has fields like “Province” which is not inbuilt into WooCommerce. So, it seems the checkout fields are controlled by some plugin or custom code, which is in conflict with WooCommerce.

    The best way to determine this is to:

    • Temporarily switch your theme to Storefront
    • Disable all plugins except for WooCommerce
    • Repeat the action to check the problem

    If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.

    If nothing comes out of the conflict test, please share a copy of your site’s System Status. You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”. Once you’ve done that, paste it here in your response.

    Thread Starter joaquin2019

    (@joaquin2019)

    thanks Margaret,
    pluggin is check out manager custom fields I think. Can I try deleting the atribute Province in this pluggin?
    If I delete this pluggin you think woocommerce is able to do a check out? more or less like my panel?
    No problem if is more simple, simply I need that works. My job is here.

    thanks,

    Thread Starter joaquin2019

    (@joaquin2019)

    If I find any problem can I send copying here directly?
    Sorry I don’t have experience in this step. CAn you explain me how can I send you ?

    thanks,
    Joaquín

    Hi @joaquin2019

    Thanks for your response.

    If I delete this pluggin you think woocommerce is able to do a check out? more or less like my panel?

    We recommend temporarily disabling that plugin and then testing if the checkout is working as expected. Please give it a try and let us know if all worked well.

    If all works fine, then you may get in touch with the plugin’s developer about the problem.

    Can I try deleting the atribute Province in this pluggin?

    Because it is a third-party plugin, we are not familiar how it works. Trying to delete one particular field won’t be a useful idea.

    Thread Starter joaquin2019

    (@joaquin2019)

    Hi Margaret,

    Thank you so much, seems after disabling this pluggin “Checkout Field Editor (Checkout Manager)” is working fine.

    Just one query in the check out in woocommerce I would like to remove the “validation” of postal code and if there is another cheker validator also. And remove the atribute: company. I think I can loose orders because of that.

    There is some way please?

    thanks
    Joaquín

    Hi Joaquín!

    You can choose to hide some fields on the checkout page by going to Appearance → Customize → WooCommerce → Checkout, once in there, select the Hidden option on the Company field.


    Image URL: https://i.ibb.co/K6FGdpd/kafknafin.png

    But if you need to hide other fields, you would need a plugin or custom coding for that.

    You could use an extension like Checkout Field Editor to add, edit or remove fields shown on your WooCommerce checkout page.

    Also, you could use the following code to hide the ZIP Code field on the checkout page:

    add_filter( 'woocommerce_checkout_fields' , 'custom_remove_woo_checkout_fields' );
     
    function custom_remove_woo_checkout_fields( $fields ) {
    	unset($fields['billing']['billing_postcode']);
    	return $fields;
    }

    You can use a plugin like Code Snippets to add this snippet without having to edit your PHP code.

    If you want to delete more fields on the checkout using code, you could take a look at this GitHub Gist thread for pointers:

    https://gist.github.com/cryptexvinci/75ba823a824b29e04a08ee7893fc0ee5

    I hope this helps!

    Thread Starter joaquin2019

    (@joaquin2019)

    Hi Juan,

    Thank you.
    I don’t want to hide the ZIP postal code. I mean what I want is annulate the autoverification by woocommerce of the ZIP. Just the clients can type without code verification.

    is possible?
    thanks,

    Oh, I understand. Thank you for the clarification.

    In that case, to disable the postcode validation, you can use the following code displayed in this article:

    add_filter( 'woocommerce_default_address_fields' , 'bbloomer_override_postcode_validation' );
     
    function bbloomer_override_postcode_validation( $address_fields ) {
      $address_fields['postcode']['required'] = false;
      return $address_fields;
    }

    Cheers!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘deliver prix’ is closed to new replies.