Home › Forums › WoodMart support forum › Help Required With Various Issues › Reply To: Help Required With Various Issues
Artem Temos
Hello,
1. Most likely, it is some caching issue since it can’t be caused by our theme. Maybe you have some cache plugins or this function is activated on your web server.
2. Mega menu dropdowns built with HTML Blocks are supported by the main desktop menu only. You need to create a separate mobile navigation in Appearance -> Menus without HTML Blocks dropdowns.
3. Try to add the following code snippet to the Custom CSS area for mobile and tabled devices in Theme Settings to fix this issue.
.top-bar-left,
.topbar-left-text {
display: block;
}
4. We see that you hid the column with products for mobile and tablet devices in your about brand tab with WPBakery page builder.
5. You need to contact plugin’s developers for help with its bugs since it is not a part of our theme.
6. Please, send us a screenshot and link where we can see this issue on your website.
7. Try to add the following PHP code snippet to the child theme functions.php file to change them from gray to colored
function woodmart_product_share_buttons() {
$type = woodmart_get_opt( 'product_share_type' );
?>
<?php if ( woodmart_is_social_link_enable( $type ) ): ?>
<div class="product-share">
<span class="share-title"><?php echo ($type == 'share') ? esc_html__('Share', 'woodmart') : esc_html__('Follow', 'woodmart'); ?></span>
<?php echo woodmart_shortcode_social( array( 'type' => $type, 'size' => 'small', 'style' => 'colored' ) ); ?>
</div>
<?php endif ?>
<?php
}
Share and follow buttons visibility can be configured separately in Theme Settings -> Social profiles.
Regards