skip to Main Content

Woocommerce adding "stock" after price in shop page

Hey I need to put "in stock" text after price at my shop page. Screen I found this code add_filter( 'woocommerce_get_price_html', 'prepend_append_icon_to_price', 10, 2 ); function prepend_append_icon_to_price( $price, $product ) { if( has_term( 'fast-shipping', 'product_cat', $product->get_id() ) && ! is_product()…

VIEW QUESTION

woocommerce address_2 dropdown placeholder not showing

I have created address_2 as a dropdown but the placeholder is not showing. /* address_2 dropdown */ add_filter( 'woocommerce_default_address_fields' , 'address2_dropdown' ); function address2_dropdown( $address_fields ) { // address_2 $address_fields['address_2']['type'] = 'select'; $address_fields['address_2']['placeholder'] = 'Adresse'; $address_fields['address_2']['options'] = array( '' =>…

VIEW QUESTION
Back To Top
Search