Home Forums WC Vendors Pro Support Type of Auction

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 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #59197
    patrick
    Participant

    In the product edit. Is there a way to make this drop down menu “type of auction” disapear and just have all auctions run defualt to a normal auction.

    This is a part of the code pertianing to auctions on my product edit.
    Just wondering if something can be changed here

    `<!– Type of Auction –>
    <?php WCVendors_Pro_Form_Helper::select( apply_filters( ‘wcv_simple_auctions_auction_type’, array(
    ‘post_id’ => $post_id,
    ‘id’ => ‘_auction_type’,
    ‘class’ => ‘select2’,
    ‘label’ => __( ‘Auction Type’, ‘wc_simple_auctions’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => sprintf( __( ‘Type of Auction – Normal prefers high bidders, reverse prefers low bids to win.’, ‘wcvendors-pro-simple-auctions’ ) ),
    ‘wrapper_start’ => ”,
    ‘wrapper_end’ => ”,
    ‘options’ => array( ‘normal’ => __(‘Normal’, ‘wc_simple_auctions’), ‘reverse’=> __(‘Reverse’, ‘wc_simple_auctions’) )
    ) )
    );
    ?>

    #59877
    Jamie
    Keymaster

    Hello,

    You can use hidden fields.

    < ?php WCVendors_Pro_Form_Helper::input( apply_filters( 'wcv_auction_proxy', 
    array( 'type'	=> ‘hidden’,
    ‘id’ => ‘ _auction_type’,
    ‘value’	=> ‘normal’
    ) )
    );
    ?>

    Our forum messes up the quotes so you’ll have to check that copying this code is done right.

    cheers,

    Jamie.

    #64042
    patrick
    Participant

    Thank you

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