Home Forums WC Vendors Pro Support Force proxy on product edit

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #59198
    patrick
    Participant

    Can something can be done with this code to make proxy bidding defualt and remove the check box on the product edit page?

    `<!– Proxy Options –>
    <?php WCVendors_Pro_Form_Helper::input( apply_filters( ‘wcv_simple_auctions_proxy_bidding’, array(
    ‘post_id’ => $post_id,
    ‘id’ => ‘_auction_proxy’,
    ‘label’ => __( ‘Enable proxy bidding’, ‘wc_simple_auctions’ ),
    ‘type’ => ‘checkbox’
    ) )
    );
    ?>

    #59876
    Jamie
    Keymaster

    Hello,

    You can use hidden fields to hardcode these values.

    ‘hidden’,
    ‘id’ => ‘_auction_proxy’,
    ‘value’ => ‘yes’
    ) )
    );
    ?>

    cheers,

    Jamie.

    #59886
    patrick
    Participant

    Thank you. would i put that code in functions?

    #59896
    Jamie
    Keymaster

    Hello,

    Yes pretty much all code we provide goes in functions.php unless we say otherwise.

    cheers,

    Jamie.

    #59908
    patrick
    Participant

    ok, much appreciated

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘WC Vendors Pro Support’ is closed to new topics and replies.