In this topic we would like to provide css code for customer price color for products on woocommerce

this example below we change product price color to black

.woocommerce-Price-amount amount{
color: #000 !important;
}

 1,918 total views,  1 views today

Related Posts

  • In this topic i would like to share code change add to cart button text on woocommrce Please go to file function.php, Apearace > Theme Editor // Change add to cart text on single product pageadd_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_add_to_cart_button_text_single' );function woocommerce_add_to_cart_button_text_single() {return __( 'add to cart', 'woocommerce' );}// Change add to…
    Tags: change, woocommerce, product, code, topic, woo, price, knowledge, website, woocomerce
  • In this topic i would like to share code change currency symbol on woocommrce Please go to file function.php, Apearace > Theme Editor add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);function change_existing_currency_symbol( $currency_symbol, $currency ) {switch( $currency ) {case 'USD': $currency_symbol = 'USD'; break;}return $currency_symbol;}
    Tags: change, woocommerce, code, topic, woo, price, knowledge, website, woocomerce, products
  • In this topic i would like to share code change select option button text on woocommrce Please go to file function.php, Apearace > Theme Editor add_filter( 'woocommerce_product_add_to_cart_text', 'cloudttrust_change_select_options_button_text', 9999, 2 );functioncloudttrust_change_select_options_button_text( $label, $product ) {if ( $product->is_type( 'variable' ) ) {return 'select option';}return $label;}
    Tags: change, woocommerce, code, topic, woo, price, knowledge, website, woocomerce, products
  • Someone need to change about text on place order button for support requirement per your company, this solution will help you to fix it Go to backend admin page > Appearance > Theme File Editor > Function.php /**Woocommerce change text on place order buttton*/add_filter( 'woocommerce_order_button_text', 'custom_button_text' );function custom_button_text( $button_text )…
    Tags: change, woocommerce, website, knowledge, woocomerce, woo, price
  • So i think some theme of wordpress with plugin woocommerce that show relate products label on single product page wrong postion, We try to using CSS for adjust this label to correct position and it working Before use CSS code for adjust relate products label CSS Code.related.products {float: left!important;} After…
    Tags: products, css, code, woocommerce, product, knowledge, website

Categories: