Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #8575
    AvatarRobs0ns
    Support Expired

    Hi,

    I have few problems that I want to find solution for.

    1. How or where I can remove the “Downloads” from the account menu?
    image of what i mean

    2. Where I can change the global font used for the theme? I can’t find any options in the Elementor.

    3. Favourites – when I add something to Favourites and then I try to see what I have there – once pressed on the heart icon -> the products in my favourites sliding widget are not displayed – there is loading animation – the widget spins all the time no matter what device I use.

    Thanks!

    #8587

    Hi you,

    #1. Please copy this code and paste into file functions.php ( child-theme):

    function rbpazt_account_dropdown() { ?>
    		<?php if ( has_nav_menu( 'my-account' ) ) : ?>
                <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Dashboard', 'rbpazt' ); ?>">
    				<?php
    				wp_nav_menu( array(
    					'theme_location' => 'my-account',
    					'menu_class'     => 'account-links-menu',
    					'depth'          => 1,
    				) );
    				?>
                </nav><!-- .social-navigation -->
    		<?php else: ?>
                <ul class="account-dashboard">
    
    				<?php if ( rbpazt_is_woocommerce_activated() ): ?>
                        <li>
                            <a href="<?php echo esc_url( wc_get_page_permalink( 'myaccount' ) ); ?>" title="<?php esc_attr_e( 'Dashboard', 'rbpazt' ); ?>"><?php esc_html_e( 'Dashboard', 'rbpazt' ); ?></a>
                        </li>
                        <li>
                            <a href="<?php echo esc_url( wc_get_account_endpoint_url( 'orders' ) ); ?>" title="<?php esc_attr_e( 'Orders', 'rbpazt' ); ?>"><?php esc_html_e( 'Orders', 'rbpazt' ); ?></a>
                        </li>
                        <li>
                            <a href="<?php echo esc_url( wc_get_account_endpoint_url( 'edit-address' ) ); ?>" title="<?php esc_attr_e( 'Edit Address', 'rbpazt' ); ?>"><?php esc_html_e( 'Edit Address', 'rbpazt' ); ?></a>
                        </li>
                        <li>
                            <a href="<?php echo esc_url( wc_get_account_endpoint_url( 'edit-account' ) ); ?>" title="<?php esc_attr_e( 'Account Details', 'rbpazt' ); ?>"><?php esc_html_e( 'Account Details', 'rbpazt' ); ?></a>
                        </li>
    				<?php else: ?>
                        <li>
                            <a href="<?php echo esc_url( get_dashboard_url( get_current_user_id() ) ); ?>" title="<?php esc_attr_e( 'Dashboard', 'rbpazt' ); ?>"><?php esc_html_e( 'Dashboard', 'rbpazt' ); ?></a>
                        </li>
    				<?php endif; ?>
                    <li>
                        <a title="<?php esc_attr_e( 'Log out', 'rbpazt' ); ?>" class="tips" href="<?php echo esc_url( wp_logout_url( home_url() ) ); ?>"><?php esc_html_e( 'Log Out', 'rbpazt' ); ?></a>
                    </li>
                </ul>
    		<?php endif;
    
    	}
    #8588

    #2. Change font theme: https://leebrosusthemes.gitbook.io/baloca/setting/typography

    #3. Please send the admin web account for me, I will check and try to help you.

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

You must be logged in to reply to this topic.