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

HomePage Forums Themes Support Poco – Fast Food Restaurant WordPress Theme import successfully, but the page does not increase.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #14876
    [email protected]
    Support Expired

    I use the theme: POCO – Fast food restaurant wordpress theme.
    So I have successfully imported the theme demo with home 1 option. But when I checked the list of pages in the dashboard, no new pages were added.
    So now I’m repeating to import the demo, and now the process is a bit slow and I don’t know why.
    Can you fix it for me?

    #14892

    Hi you,

    I checked your site and it’s still working normally.

    Please recheck and let me know if you need to help.

    #14897
    [email protected]
    Support Expired

    oh yeah, I just finished fixing it.
    but I’m now confused, for the menu below, how do I hide or customize it?
    https://prnt.sc/1s9ymh2

    #14899
    [email protected]
    Support Expired

    and one more thing, why do I see that my mobile menu is not the same as the menu on the desktop?

    #14943

    Hi you,

    #1. Remove footer mobile menu:

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

    function poco_handheld_footer_bar() {
    return false;
    }

    Edit this menu:

    //Search

    function poco_handheld_footer_bar_search() {
            echo '<a href=""><span class="title">' . esc_attr__('Search', 'poco') . '</span></a>';
            poco_product_search();
        }

    //My account

    function poco_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', 'poco') . '</span></a>';
        }

    //Shop

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

    //Wishlist

    function poco_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', 'poco'); ?></span>
                    <span class="count"><?php echo esc_html(yith_wcwl_count_all_products()); ?></span>
                </a>
                <?php
            }elseif (function_exists('woosw_init')) {
                $key = WPCleverWoosw::get_key();
    
                ?>
                <a class="footer-wishlist" href="<?php echo esc_url(WPCleverWoosw::get_url( $key, true )); ?>">
                    <span class="title"><?php echo esc_html__('Wishlist', 'poco'); ?></span>
                    <span class="count"><?php echo esc_html(WPCleverWoosw::get_count($key)); ?></span>
                </a>
                <?php
            }
        }

    Copy and paste to file functions.php( child-theme) and edit link or text

    #2. Setup menu for mobile mode: Go to Appearance -> Menus -> Manager Locations -> Handheld Menu -> Select menu: https://prnt.sc/1sdjcyb

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

You must be logged in to reply to this topic.