Your account expired support, please renew to get your support.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1696
    aleferr
    Support Expired

    Hi. Is it possibile to change label shop, my account ecc. in the mobile version?

    #1723

    Hi there,

    Please go to file functions.php in child-theme and paste code:

    1. Shop

    function freshio_handheld_footer_bar_shop_link() {
    		echo '<a href="' . esc_url( get_permalink( get_option( 'woocommerce_shop_page_id' ) ) ) . '"><span class="title">' . esc_attr__( 'Shop', 'freshio' ) . '</span></a>';
    	}

    2. My Account

     */
    	function freshio_handheld_footer_bar_account_link() {
    		echo '<a href="' . esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ) . '"><span class="title">' . esc_attr__( 'My Account', 'freshio' ) . '</span></a>';
    	}

    3. Search

    function freshio_handheld_footer_bar_search() {
    		echo '<a href=""><span class="title">' . esc_attr__( 'Search', 'freshio' ) . '</span></a>';
    		freshio_product_search();
    	}

    4. Wishlist

    function freshio_handheld_footer_bar_wishlist() {
    		if ( function_exists( 'yith_wcwl_count_all_products' ) ) {
    			?>
                <a class="footer-wishlist" href="<?php echo esc_url( get_permalink( get_option( 'yith_wcwl_wishlist_page_id' ) ) ); ?>">
                    <span class="title"><?php echo esc_html__( 'Wishlist', 'freshio' ); ?></span>
                    <span class="count"><?php echo esc_html( yith_wcwl_count_all_products() ); ?></span>
                </a>
    			<?php
    		}
    	}

    Then edit label in code

    #1738
    aleferr
    Support Expired

    Done, thank you. Another question, is it possible to find an element which php calls? For example, i want to change “search product” of the header search bar in an italian why. How can i find where is it defined?

    #1743

    Hi again,

    To translate, please install Loco translate plugin
    View guide at: https://localise.biz/wordpress/plugin/beginners

    #1761
    aleferr
    Support Expired

    I don’t find what i need. For example “search products” is not showed and also “you’re viewing” in the single article page

    #1777

    Hi,
    Please send Admin web account for me, I will check and help you

    #1799
    aleferr
    Support Expired

    How can i send it to you?

    #1815

    Please send via this topic and set as private reply.
    https://prnt.sc/vo3hcf

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

You must be logged in to reply to this topic.