Home Forums WoodMart support forum Problems with Filter on mobile

Problems with Filter on mobile

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #652840

    ganja480
    Participant

    Hi,
    I have a problem, I can’t see the filter button on my phone. Although when I use elementor editor the button is visible. There is no problem with dekstop. I have all off-canvas, etc. turned on. Can you help me ?

    Attachments:
    You must be logged in to view attached files.
    #652845

    ganja480
    Participant

    Please help as fast as possible

    #652866

    Luke Nielsen
    Keymaster

    Hello,

    The issue is fixed – https://prnt.sc/w3FjkTbWm25q

    To make it work, you need to define an appropriate element – https://prnt.sc/CcXYsOf8RKmr

    So clear the cache and check how it works on your end.

    Kind Regards

    #652959

    ganja480
    Participant

    I have one more problem i deleted text from wishlist with woodmart theme settings but it still apears, can u check it ?
    u have connections.

    #652965

    ganja480
    Participant

    All good i resolved it

    #652968

    ganja480
    Participant

    Where to find button Create An Account and change text (i dont want use loco or etc translate i just want change text to “Sukurti paskyrą”).

    Please help me asap
    i send u connection before it

    Attachments:
    You must be logged in to view attached files.
    #652977

    Luke Nielsen
    Keymaster

    Hello,

    Add the code below to the functions.php file in your child theme, and change an appropriate text there.

    function woodmart_sidebar_login_form() {
    		if ( ! woodmart_woocommerce_installed() || is_account_page() ) {
    			return;
    		}
    
    		$settings     = whb_get_settings();
    		$login_side   = isset( $settings['account'] ) && $settings['account']['login_dropdown'] && $settings['account']['form_display'] == 'side';
    		$account_link = get_permalink( get_option( 'woocommerce_myaccount_page_id' ) );
    		$page_id      = woodmart_get_the_ID() ? woodmart_get_the_ID() : get_option( 'woocommerce_myaccount_page_id' );
    		$redirect_url = apply_filters( 'woodmart_my_account_side_login_form_redirect', get_permalink( $page_id ) );
    		$action_url   = apply_filters( 'woodmart_my_account_side_login_form_action', wc_get_page_permalink( 'myaccount' ) );
    
    		$wrapper_classes = '';
    
    		if ( 'light' === whb_get_dropdowns_color() ) {
    			$wrapper_classes .= ' color-scheme-light';
    		}
    
    		$position = is_rtl() ? 'left' : 'right';
    
    		$wrapper_classes .= ' wd-' . $position;
    
    		if ( ! $login_side || is_user_logged_in() ) {
    			return;
    		}
    
    		woodmart_enqueue_inline_style( 'header-my-account-sidebar' );
    		woodmart_enqueue_inline_style( 'woo-mod-login-form' );
    		?>
    			<div class="login-form-side wd-side-hidden woocommerce<?php echo esc_attr( $wrapper_classes ); ?>">
    				<div class="wd-heading">
    					<span class="title"><?php esc_html_e( 'Sign in', 'woodmart' ); ?></span>
    					<div class="close-side-widget wd-action-btn wd-style-text wd-cross-icon">
    						<a href="#" rel="nofollow"><?php esc_html_e( 'Close', 'woodmart' ); ?></a>
    					</div>
    				</div>
    
    				<?php if ( ! is_checkout() ) : ?>
    					<?php woocommerce_output_all_notices(); ?>
    				<?php endif; ?>
    
    				<?php woodmart_login_form( true, $action_url, false, true, $redirect_url ); ?>
    
    				<div class="create-account-question">
    					<p><?php esc_html_e( 'No account yet?', 'woodmart' ); ?></p>
    					<a href="<?php echo esc_url( add_query_arg( 'action', 'register', $account_link ) ); ?>" class="btn create-account-button"><?php esc_html_e( 'Create an Account', 'woodmart' ); ?></a>
    				</div>
    			</div>
    		<?php
    }
    
    add_action( 'woodmart_before_wp_footer', 'woodmart_sidebar_login_form', 160 );

    Kind Regards

    #652990

    ganja480
    Participant

    can i just change it in woodmart not child theme ?

    #652991

    ganja480
    Participant

    Same problem with YOUR PRODUCT WISHLIST

    Attachments:
    You must be logged in to view attached files.
    #652993

    Luke Nielsen
    Keymaster

    If you change it via the parent theme, after the update, your changes will be lost.

    Kind Regards

    #653000

    ganja480
    Participant

    oky so how to do this 2 updates ?

    #653006

    ganja480
    Participant

    with create account now done.
    now i wnat change YOur product wishlist, remove and share

    #653018

    ganja480
    Participant

    This text
    Your product wishlist, remove and share

    #653020

    ganja480
    Participant

    add screenshot

    Attachments:
    You must be logged in to view attached files.
    #653043

    Luke Nielsen
    Keymaster

    Hello,

    Those words are not possible to translate via the Child theme. You need to use the Loco Translate for that purpose, just after translation in the .mo file, you can remove the Loco plugin.

    Kind Regards

    #653378

    ganja480
    Participant

    Super, thanks 🙂

    #653382

    Luke Nielsen
    Keymaster

    Hello,

    You are welcome!

    Always remember that you can reach out to us with any questions you may have.

    Kind Regards

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

The topic ‘Problems with Filter on mobile’ is closed to new replies.