• Hello,

    Thank you for a great theme!

    * Is there a way to change “Select Category:” (when theme is viewed on mobile device) (located on the main menu) to search for woocommerce product categories?
    * And where can I change the “Where to?” text to something else?
    * if I have [featured_products per_page=”5″ columns=”5″] on a page, this is not nicely displayed on the mobile version. This is not a big issue since if I change it to 4/4, is is displayed on mobile nicely.
    * where can I change the size of the page titles?
    * is there a way I can place the main menu below the website title and subtitle?

    I hope not to many questions ?? Thank you for you help.

    Paul

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter paulthk

    (@paulthk)

    Hello Richie do you have a solution to this? Thanks for any help!

    Theme Author Richie KS

    (@rkcorp)

    1. need customize work but try add this to theme option->custom css


    #woo-mobile-search { display:none;}
    @media only screen and (min-width:280px) and (max-width:750px){
    #mobile-nav { display:none !important; }
    #woo-mobile-search { display:inline !important;}
    }

    and add this to custom functions as suggested in faq.txt or your current functions.php

    <?php
    function dez_add_woocommerce_search() {
    echo '<div id="woo-mobile-search">'.get_product_search_form().'</div>';
    }
    add_action('bp_inside_top_nav','dez_add_woocommerce_search');
    ?>

    2. its in lib/functions/theme=functions.php, should be easy to spot them.

    3. ok i see you adjust it to fit already.

    4. add this to theme-option->custom css
    #custom.page h1.post-title { font-size:14px; }

    5. isn’t the main(primary menu) below blog title and description already?

    Thread Starter paulthk

    (@paulthk)

    1. did not work for me unfortunately. it places a big search field in the menu.. But: I now block the catogory dropdown all together by commenting it out. Is it possible to change the mobile theme menu (“Select page”) to the three stripes you see on a lot of mobile menu’s?:
    3 stripes menu icon example: https://media02.hongkiat.com/mobile-navigation-icon/menu-icon.jpg

    2 I found it, thanks
    3 yep no problem for me
    4. thanks, i had to place !important, behind it to make it work
    5. no, by default the website title is below the main menu, I would like the website title above the main menu. This is not a big issue, I like the way it is also.

    Theme Author Richie KS

    (@rkcorp)

    its working if its showing the woo searchform. you mean the 3 stripe ‘hamburger’ icon dropdown, unfortunately the theme did not have this features.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘category to product category on mobile version main menu’ is closed to new replies.