HomePage › Forums › Themeforest › RBpazt – Auto Parts Store WooCommerce Theme › Few problems
Tagged: favourites, font, menu
- This topic has 2 replies, 2 voices, and was last updated 1 year, 10 months ago by Supporter.
-
AuthorPosts
-
January 10, 2023 at 4:39 am #8575Robs0nsSupport 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?
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!
January 11, 2023 at 11:42 pm #8587Hi 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; }
January 11, 2023 at 11:48 pm #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.
-
AuthorPosts
You must be logged in to reply to this topic.