Your account expired support, please renew to get your support.

HomePage Forums Themes Support Freshio – Organic & Food Store WordPress Theme Change Menu voice on User section in homepage header ?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2559
    andreaburato
    Support Expired

    How can i delate some voice for example “Download” from User menù in Header ?

    #2598

    Hi there,

    Please copy code into file functions.php ( child-theme)

    function freshio_account_dropdown()
    	{ ?>
    		<?php if (has_nav_menu('my-account')) : ?>
    		<nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e('Dashboard', 'freshio'); ?>">
    			<?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 (freshio_is_woocommerce_activated()): ?>
    				<li>
    					<a href="<?php echo esc_url(wc_get_page_permalink('myaccount')); ?>"
    					   title="<?php esc_html_e('Dashboard', 'freshio'); ?>"><?php esc_html_e('Dashboard', 'freshio'); ?></a>
    				</li>
    				<li>
    					<a href="<?php echo esc_url(wc_get_account_endpoint_url('orders')); ?>"
    					   title="<?php esc_html_e('Orders', 'freshio'); ?>"><?php esc_html_e('Orders', 'freshio'); ?></a>
    				</li>
    				
    				<li>
    					<a href="<?php echo esc_url(wc_get_account_endpoint_url('edit-address')); ?>"
    					   title="<?php esc_html_e('Edit Address', 'freshio'); ?>"><?php esc_html_e('Edit Address', 'freshio'); ?></a>
    				</li>
    				<li>
    					<a href="<?php echo esc_url(wc_get_account_endpoint_url('edit-account')); ?>"
    					   title="<?php esc_html_e('Account Details', 'freshio'); ?>"><?php esc_html_e('Account Details', 'freshio'); ?></a>
    				</li>
    			<?php else: ?>
    				<li>
    					<a href="<?php echo esc_url(get_dashboard_url(get_current_user_id())); ?>"
    					   title="<?php esc_html_e('Dashboard', 'freshio'); ?>"><?php esc_html_e('Dashboard', 'freshio'); ?></a>
    				</li>
    			<?php endif; ?>
    			<li>
    				<a title="<?php esc_html_e('Log out', 'freshio'); ?>" class="tips"
    				   href="<?php echo esc_url(wp_logout_url(home_url())); ?>"><?php esc_html_e('Log Out', 'freshio'); ?></a>
    			</li>
    		</ul>
    	<?php endif;
    
    	}
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.