• Resolved siobhant

    (@siobhant)


    Thanks for a great plugin! I have a few questions:

    1. How can I make State a required field in the quote request form?
    2. How can I remove “Create an Account?” from the quote request form?
    3. How can I change the url of the Return To Shop link after the form has been submitted?
    4. Is it possible for the “Add to Quote” button on the category pages to have different text to the “Add to Quote” button on the single product page? I’d like to make it “More Info” and link to the single product page.

    I don’t have ftp access so all of the changes I am making are through the custom css option in my theme and by adding php to the functions.php file of my theme. Unfortunately I don’t have much understanding of php and I don’t want to break my site. Hoping you can help.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    Hi These changes are too complicated without some experience with php and WooCommerce. We are putting create an account an option in an upcoming version.

    Thread Starter siobhant

    (@siobhant)

    I know that this script will make the State field required in Woocommerce without this plugin. Are you able to tell me the changes to make to this?

    <?php

    add_filter( ‘woocommerce_billing_fields’, ‘woo_filter_state_billing’, 10, 1 );
    add_filter( ‘woocommerce_shipping_fields’, ‘woo_filter_state_shipping’, 10, 1 );
    function woo_filter_state_billing( $address_fields ) {
    $address_fields[‘billing_state’][‘required’] = false;
    return $address_fields;
    }
    function woo_filter_state_shipping( $address_fields ) {
    $address_fields[‘shipping_state’][‘required’] = false;
    return $address_fields;
    }

    Thanks

    Thread Starter siobhant

    (@siobhant)

    Issue resolved externally, thankyou.

    Plugin Author Neah Plugins

    (@gplsaver)

    sorry for delayed response. Glad it worked out.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changes to quote request form and Add to Quote buttons’ is closed to new replies.