HomePage › Forums › Themes Support › Poco – Fast Food Restaurant WordPress Theme › import successfully, but the page does not increase.
Tagged: Import, import demo failed, Poco
- This topic has 4 replies, 2 voices, and was last updated 3 years, 2 months ago by Billy Nguyen.
-
AuthorPosts
-
September 15, 2021 at 11:12 am #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?September 15, 2021 at 3:23 pm #14892Hi you,
I checked your site and it’s still working normally.
Please recheck and let me know if you need to help.
September 15, 2021 at 3:52 pm #14897[email protected]Support Expiredoh 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/1s9ymh2September 15, 2021 at 4:25 pm #14899[email protected]Support Expiredand one more thing, why do I see that my mobile menu is not the same as the menu on the desktop?
September 16, 2021 at 9:42 am #14943Hi 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
-
AuthorPosts
You must be logged in to reply to this topic.