This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change from text on price | |
function custom_from_price_html( $price, $product ) { | |
if ( strpos( $price, 'From: ' ) <> false ) | |
return str_replace( 'From: ', '', $price ) . __( ' and up', 'woocommerce'); | |
else return $price; | |
} | |
add_filter( 'woocommerce_get_price_html', 'custom_from_price_html', 10, 2 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add to cart checkout redirect | |
function add_to_cart_checkout_redirect() { | |
wp_safe_redirect( get_permalink( get_option( 'woocommerce_checkout_page_id' ) ) ); | |
die(); | |
} | |
add_action( 'woocommerce_add_to_cart', 'add_to_cart_checkout_redirect', 11 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [product_count] shortcode | |
function product_count_shortcode( ) { | |
$count_posts = wp_count_posts( 'product' ); | |
return $count_posts->publish; | |
} | |
add_shortcode( 'product_count', 'product_count_shortcode' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 11 ); | |
remove_action( 'woocommerce_pagination', 'woocommerce_catalog_ordering', 20 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Display Fields | |
add_action( 'woocommerce_product_after_variable_attributes', 'variable_fields', 10, 2 ); | |
//JS to add fields for new variations | |
add_action( 'woocommerce_product_after_variable_attributes_js', 'variable_fields_js' ); | |
//Save variation fields | |
add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 ); | |
function variable_fields( $loop, $variation_data ) { | |
?> | |
<tr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_get_price_html', 'woocommerce_nyp_min_price', 11, 2 ); | |
function woocommerce_nyp_min_price( $price, $product ) { | |
if ( !$product->nyp ) | |
return $price; | |
if( is_shop() || is_product_category() || is_product_tag() ) { | |
$price = woocommerce_price( $product->minimum ); | |
} | |
return $price; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_is_sold_individually', 'wc_remove_all_quantity_fields', 10, 2 ); | |
function wc_remove_all_quantity_fields( $return, $product ) { | |
if ( is_product() ) | |
return true; | |
else return $return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_bacs_fields', 'woocommerce_bacs_custom_sort_code_text', 10, 1 ); | |
function woocommerce_bacs_custom_sort_code_text( $fields ) { | |
$fields['sort_code'] = 'BSB'; | |
return $fields; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function woocommerce_content() { | |
if ( is_singular( 'product' ) ) { | |
while ( have_posts() ) : the_post(); | |
woocommerce_get_template_part( 'content', 'single-product' ); | |
endwhile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); | |
add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); | |
function my_theme_wrapper_start() { | |
echo '<div class="fixed">'; | |
echo '<div class="content-home-right">'; | |
} | |
function my_theme_wrapper_end() { | |
echo '</div>'; |