Skip to content

Instantly share code, notes, and snippets.

@fervous
Created May 17, 2017 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fervous/575d124f9bbef278e71e360cd6b0a65b to your computer and use it in GitHub Desktop.
Save fervous/575d124f9bbef278e71e360cd6b0a65b to your computer and use it in GitHub Desktop.
Change Auctions Labels WC Vendors Pro Simple Auctions
/* Item Condition */
add_filter ('wcv_simple_auctions_item_condition', 'custom_wcv_simple_auctions_item_condition');
function custom_wcv_simple_auctions_item_condition ($args) {
$args['label'] = 'Change label/title text here';
return $args;
}
/*Auction Type */
add_filter ('wcv_simple_auctions_auction_type', 'custom_wcv_simple_auctions_auction_type');
function custom_wcv_simple_auctions_auction_type ($args) {
$args['label'] = 'Change label/title text here';
return $args;
}
/*Enable Proxy Bidding */
add_filter ('wcv_simple_auctions_proxy_bidding', 'custom_wcv_simple_auctions_proxy_bidding');
function custom_wcv_simple_auctions_proxy_bidding ($args) {
$args['label'] = 'Change label/title text here';
return $args;
}
/*Enable Proxy Bidding */
add_filter ('wcv_simple_auctions_proxy_bidding', 'custom_wcv_simple_auctions_proxy_bidding');
function custom_wcv_simple_auctions_proxy_bidding ($args) {
$args['label'] = 'Change label/title text here';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment