Bug

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #300642

    c_yt
    Participant

    “Mobile Bottom Navbar” – necessary to double-tap.

    #300651

    Bogdan Donovan
    Keymaster

    Hello,

    Thank you so much for purchasing our theme and contacting our support center.

    Could you please send us a link to your website where we can see this issue?

    Kind Regards
    XTemos Studio

    #300714

    c_yt
    Participant

    Reply.

    #300733

    Bogdan Donovan
    Keymaster

    Hello,

    Could you please disable all plugins that are not related to our theme and provide us your admin access so we can check it?

    Thank you in advance

    #300775

    c_yt
    Participant

    Private Content:

    #300995

    Bogdan Donovan
    Keymaster

    Hello,

    We have added product links to decor slider buttons on our demo site (https://woodmart.xtemos.com/demo-decor/demo/decor/) and test it on several iPhones with Safari browser. In all cases, mobile nav bar buttons works normally. You can check it by yourselves or check the video (https://drive.google.com/file/d/1rjJKTRlI7byZvEaddUgnRJHKaC8EVGmi/view?usp=sharing).

    Kind Regards

    #301018

    c_yt
    Participant

    Builder!

    #301023

    Bogdan Donovan
    Keymaster

    We have tested this issue in both page builders (WPBakery and Elementor) with decor demo button link. In both builders, mobile nav button is working normally.

    Kind Regards

    #301076

    c_yt
    Participant

    Your advice?

    #301131

    Bogdan Donovan
    Keymaster

    Unfortunately, we cannot investigate this issue further without access to the site backend. If you cannot provide access to this site, please try to create a staging version of this site where this issue can be visible and provide us with admin access to it.

    Kind Regards

    #301146

    c_yt
    Participant

    Demo site!

    #301151

    c_yt
    Participant

    Or!

    #301258

    Bogdan Donovan
    Keymaster

    Hi,

    You can share admin access rights from temporary site in the reply form Private Content section. It will be visible only to the Xtemos support team.

    Kind Regards

    #301299

    c_yt
    Participant

    Problem is solved after theme updating!

    #301313

    Bogdan Donovan
    Keymaster

    We will fix this in our update very soon. Try to add the following PHP code snippet to the child theme functions.php file to fix this

    function woodmart_sticky_toolbar_template() {
    	$fields  = woodmart_get_opt( 'sticky_toolbar_fields' );
    	$classes = '';
    	if ( isset( $fields['enabled']['placebo'] ) ) {
    		unset( $fields['enabled']['placebo'] );
    	}
    	$enabled_fields = class_exists( 'XTS\Options' ) ? $fields : $fields['enabled'];
    	if ( ! woodmart_get_opt( 'sticky_toolbar' ) || ! $enabled_fields ) {
    		return;
    	}
    	if ( woodmart_get_opt( 'sticky_toolbar_label' ) ) {
    		$classes .= ' wd-toolbar-label-show';
    		$classes .= woodmart_get_old_classes( ' woodmart-toolbar-label-show' );
    	}
    	woodmart_enqueue_inline_style( 'bottom-toolbar' );
    	woodmart_enqueue_inline_style( 'header-elements-base' );
    	$classes .= woodmart_get_old_classes( ' woodmart-toolbar' );
    	?>
    	<div class="wd-toolbar<?php echo esc_attr( $classes ); ?>">
    		<?php
    		foreach ( $enabled_fields as $key => $value ) {
    			$key = class_exists( 'XTS\Options' ) ? $value : $key;
    			switch ( $key ) {
    				case 'wishlist':
    					woodmart_sticky_toolbar_wishlist_template();
    					break;
    				case 'cart':
    					woodmart_sticky_toolbar_cart_template();
    					break;
    				case 'compare':
    					woodmart_sticky_toolbar_compare_template();
    					break;
    				case 'search':
    					woodmart_sticky_toolbar_search_template();
    					break;
    				case 'account':
    					woodmart_sticky_toolbar_account_template();
    					break;
    				case 'mobile':
    					woodmart_sticky_toolbar_mobile_menu_template();
    					break;
    				case 'sidebar':
    					woodmart_sticky_sidebar_button( false, true );
    					break;
    				case 'link_1';
    				case 'link_2';
    				case 'link_3';
    				case 'link_4';
    				case 'link_5';
    					woodmart_sticky_toolbar_custom_link_template( $key );
    					break;
    				case 'home';
    				case 'blog';
    				case 'shop':
    					woodmart_sticky_toolbar_page_link_template( $key );
    					break;
    			}
    		}
    		?>
    	</div>
    	<?php
    }
    add_action( 'wp_footer', 'woodmart_sticky_toolbar_template' );

    Kind Regards

Viewing 15 posts - 1 through 15 (of 15 total)