Forum Replies Created
-
AuthorPosts
-
What can i for product price when is “0” i need a hide.
I add this code on funksion.php in child theme
add_action( ‘woocommerce_product_query’, ‘themelocation_product_query’ );
function themelocation_product_query( $q ){
$meta_query = $q->get( ‘meta_query’ );
$meta_query[] = array(
‘key’ => ‘_price’,
‘value’ => 0,
‘compare’ => ‘>’
);
$q->set( ‘meta_query’, $meta_query );
}Attachments:
You must be logged in to view attached files.Thank but, unfortunately it did not improve.
Hi thanks,
I have 2 another question.Can look at the pictures below. i have Slip and font size problems.
Attachments:
You must be logged in to view attached files.Hi i cant make prices in center, i need a help.
Attachments:
You must be logged in to view attached files.Hi, i have again problem with this on responsive view.
Attachments:
You must be logged in to view attached files.This work good on standart css, but for responsive css is bad. What can i do? Can u help me?
<!–more–>
.product-image .product-attr {
bottom: 0;
left: 0;
right: 0;
position: relative;
color: #222;
text-align: left;
margin-top: 10px;
opacity: 1;
visibility: visible;
}For ex. funktions.php for other themes.
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_single_excerpt’, 5);
Thanks!
is it possible to print the Short Description?
Kind Regards
-
AuthorPosts