Home / Forums / WoodMart support forum / Row Background Problem
Home › Forums › WoodMart support forum › Row Background Problem
Row Background Problem
- This topic has 7 replies, 2 voices, and was last updated 8 years ago by
Artem Temos.
-
AuthorPosts
-
November 23, 2017 at 1:32 pm #25106
sagraphicsParticipantI have tried to set a background image for a row in visual composer and it’s not working. Image is set but doesn’t show in frontend.
November 23, 2017 at 2:41 pm #25113
Artem TemosKeymasterHello,
We are glad to know that you considered using WoodMart for your web-site. I hope you will be happy with it.
Could you please send us a link where we can see this issue on your side?
Kind Regards
XtemosNovember 23, 2017 at 2:42 pm #25114
sagraphicsParticipantHi Artem. Yes:
https://www.maiseymoo.co.uk/shop/
The newsletter signup process should have a background image
November 23, 2017 at 2:46 pm #25117
Artem TemosKeymasterCould you please provide us your admin access so we can check?
November 23, 2017 at 2:48 pm #25118
sagraphicsParticipantsent privately
November 23, 2017 at 3:43 pm #25134
Artem TemosKeymasterTry to add the following code snippet to the functions.php file in the child theme to fix this issue
function woocommerce_product_archive_description() { // Don't display the description on search results page. if ( is_search() ) { return; } if ( is_post_type_archive( 'product' ) && 0 === absint( get_query_var( 'paged' ) ) ) { $shop_page = get_post( wc_get_page_id( 'shop' ) ); if ( $shop_page ) { $description = wc_format_content( $shop_page->post_content ); $shop_page_css = get_post_meta( $shop_page->ID, '_wpb_shortcodes_custom_css', true ); if ( $description ) { echo '<div class="page-description">' . $description . '</div>'; // WPCS: XSS ok. if ( ! empty( $shop_page_css ) ){ ?> <style type="text/css" data-type="vc_shortcodes-custom-css"> <?php echo $shop_page_css; ?> </style> <?php } } } } }November 24, 2017 at 8:59 am #25219
sagraphicsParticipantThank you, that seems to have worked!
November 24, 2017 at 9:53 am #25226
Artem TemosKeymasterGreat, you are welcome!
-
AuthorPosts
- You must be logged in to create new topics. Login / Register