Search page template and woocommerce checkout fields editor

Hi,

  1. can we customize search page template with your theme or third party plugin?
  2. same with woocommerce checkout fields. Can we add plugin or theme has setup for checkout fields?

Comments

  • Hi,

    1) We do not have an option for search page templates, so you would have to use some plugin for that, but we cannot recommend any other plugins except the ones we support.

    https://support.muffingroup.com/documentation/bundled-plugins/#compatibility

    2) Same as in point one. We are working on cart and checkout templates but I cannot tell when they will be out as they are still in development.


    Best regards

  • Maybe you have some code snippet to add into child theme?

    We need only Name, Surname , mob nr. and email.

  • I think this code solved problems:

    /**

     Remove all possible fields

     **/

    function wc_remove_checkout_fields( $fields ) {


      // Billing fields

      unset( $fields['billing']['billing_company'] );

      unset( $fields['billing']['billing_state'] );

      unset( $fields['billing']['billing_address_1'] );

      unset( $fields['billing']['billing_address_2'] );

      unset( $fields['billing']['billing_city'] );

      unset( $fields['billing']['billing_postcode'] );


      // Shipping fields

      unset( $fields['shipping']['shipping_company'] );

      unset( $fields['shipping']['shipping_state'] );

      unset( $fields['shipping']['shipping_address_1'] );

      unset( $fields['shipping']['shipping_address_2'] );

      unset( $fields['shipping']['shipping_city'] );

      unset( $fields['shipping']['shipping_postcode'] );


      return $fields;

    }

    add_filter( 'woocommerce_checkout_fields', 'wc_remove_checkout_fields' );

  • I am happy that you fond the solution.

    Can I help you with anything else?


    Best regards

  • I think is done for a while, will wait later for updates. Can we subscribe or check somehow whats new or upcoming in new releases?

  • We do not have anything like this, but we will consider adding some pages with upcoming features.


    Best regards

Sign In or Register to comment.