Forum Replies Created
-
AuthorPosts
-
Hi,
I sent the Behealth Framework plugin (Yolo Event update) to the above email.
Best regards.
Hi,
Your issue is solved!. Please reload your site and check again.
Thanks.
This reply has been marked as private.Hi,
I have updated the function "Event Order" (Upcoming, Past, Custom Date) for the shortcode Yolo Event.
If you want, please send me your email. I will send it for you or you can wait the next version update.
Thanks.
Hi,
1. Show 2 columns on Mobile: you can add these lines to Custom CSS:
@media (max-width: 414px){
.woocommerce.columns-5 .product-item-wrap, .single-product.columns-5 .product-item-wrap, .woocommerce.columns-4 .product-item-wrap, .single-product.columns-4 .product-item-wrap, .woocommerce.columns-3 .product-item-wrap, .single-product.columns-3 .product-item-wrap, .woocommerce.columns-2 .product-item-wrap, .single-product.columns-2 .product-item-wrap {
width: 50%;
}
}
Note: You custom pretty much CSS, you should use Child theme.
2. - Custom price text: You can use this plugin: https://wordpress.org/plugins/woocommerce-custom-price-label/
(I have removed the function that I was added earlier)
- Single Page layout: You go to Theme Options -> Shop -> Single Product -> Select Single Product Layout -> Set "Default". Set "Container" for Single Product Layout.
Best regards,
Hi,
1- You can set 6 colunms for product instead of 5 columns to show more.
You can set the image (2*1) but the image will by crop. You go to Customize -> Woocommerce -> Product Image -> Thumbnail cropping -> Custom -> set the size
2. After update the last new version, you need to the Theme Options -> click "Save Change" again.
Currently, you can reload your site and check again.
Best regards,
tinhbeng.
Hi,
I have added the above lines to the functions.php file (/wp-content/themes/yolo-rubino/functions.php).
Note: You should use the Child Theme and add the above function to the function.php file of Child Theme.
Because if you add the above function to the functions.php file of Parent Theme, it will lost when you update the last new version.
https://codex.wordpress.org/Child_Themes
Best regards.
This reply has been marked as private.This reply has been marked as private.Hi,
You can translate for Organisk theme. (wp-content/themes/yolo-organisk/languages/yolo-bestruct.pot)
Hi,
Currently, alll the archive page will use the background image of Blog page.
If you want to add a background image for the Portfolio archive page, you can add these lines to the archive-heading.php file (you can use the Child Them to custom this file).
if(is_post_type_archive('yolo_portfolio')){
$page_title_bg_image_url = 'http://dev.yolotheme.com/wordpress/bestruct/wp-content/uploads/2016/12/bg-paralax.jpg' ;
}
You can change your image link that you want.
Best regards.
Hi,
1, Please send me a screenshot to clarify. I have go to your site and it still normal loaded.
2, If you use the Child Theme, you can add these lines to the file "functions.php" of Child Theme esle you can add them to the function.php file of parent theme.
function cw_change_product_price_display( $price ) {
$price = esc_html__( 'reserved' ,'yolo-rubino');
return $price;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );
Best regards.
Hi,
Sorry for the delayed reply.
- You can go to Theme Options -> Header -> Top Bar -> Enable Top Bar.
- You go to Appearance -> Widgets -> Add Custom text to the Top Bar Left, Top Bar Right.
- Later add these lines to Custom CSS or the style.css:
.yolo-top-bar{display: none;}
@media(max-width: 992px){
div.yolo-top-bar{display: block;}
}
Best regards.
Hi,
Currently, the demensions and weight will display in the tab "ADDITIONS INFORMATION".
Best regards.
Hi,
You can add these lines to Custom CSS or the style.css of Child Theme.
.woocommerce table.shop_table.cart td.actions .button{
margin-bottom: 10px;
}
-
AuthorPosts
