This topic has 2 replies, 2 voices, and was last updated 3 years, 11 months ago ago by Olga Barlow
I have some issues,
I want to change location short description, it should be under the social icons
And out of stock option should be display on price.
And ADD TO CART should be like Ad To Cart in Sentence case
please check screen shot
https://prnt.sc/w09wo9
https://prnt.sc/w09z0r
Hello,
1) There is no such option by default you can use either single product builder or add the below code to child theme functions.php
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_product_description', 51 );
function woocommerce_product_description() {
woocommerce_template_single_excerpt();
}
2) There is no such option by default but you can use WooCommerce hooks and add the below code to child theme functions.php
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_stock', 10 );
function woocommerce_template_loop_stock() {
global $product;
if ( ! $product->managing_stock() && ! $product->is_in_stock() )
echo '<p class="stock out-of-stock">Out of Stock</p>';
}
Add the following code to Theme Options > Custom CSS
.content-product .stock {
position: relative;
background: transparent;
color: red;
transform: none;
left: auto;
}
.content-product .product-image-wrapper .stock {
display:none
}
3) Do you want to change the text to “Ad to cart” or just change the text-transfort to capitalized?
Regards
You must be logged in to reply to this topic.Log in/Sign up