Okay
  Public Ticket #1772617
Questions
Closed

Comments

  • EticaTerra started the conversation

    Hi!

    We are already running the web with some friends!

    I have several questions:

    1) Is there any chance to change payment methods´ dropdown  (Q1 jpg attached). I would like the 3 different options to be shown by default on screen so that the user does not have to open the dropdown.

    2) We installed Woo Checkout Field Editor Pro plugin in order to edit checkout information fields but changes are not reflected in the web. Any suggestion?

    Waiting for your reply,

    Regards,

    Daniel



  •  608
    WordPress replied

    Hello,

    1: It is the default of Woocommerce.

    2: You can install and active child theme. Then, you can add code in file function.php in child theme.

    function remove_parent_filters(){
        remove_filter('woocommerce_checkout_fields', 'foodfarm_custom_override_checkout_fields');
        remove_filter('woocommerce_checkout_fields', 'foodfarm_order_fields');
        remove_filter('woocommerce_checkout_fields', 'foodfarm_order_shipping_fields');
    }
    add_action( 'after_setup_theme', 'remove_parent_filters' );
    Best Regards!

    Alex Vũ