Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #58272
    mosign
    Member

    i have to ask this once again:
    its possible to put the menu after the header image on the pages in the settings, but its not possible to do the same at the main page with the slider? this does not make sense, the menu should always be on the same position within the whole website to be userfriendly? could you please help me, i cant figure it out, im not a php specialist 🙂
    i put the site online for you: http://www.fraeulein-mona.at/mona/ THX!

    #58310
    Sakin
    Keymaster

    @mosign: Did you try the code that I send you on http://catchthemes.com/support-forum/topic/menu-at-bottom-of-slider-featured-image/. When I add this code in our server child theme. Menu is showing below the slider.

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );

    If this is not working in your site then, can you send me the code that you have in your child theme functions.php file. Also try increasing the value of add_action from 20 to like 40 and so on. So, you replace the code:

    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );

    with 40 like this:

    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 40 );
    #58394
    Marina
    Member

    Hi! is it possible to change the name of the Home page on the menu bar? Every time I select a static front page, that page automatically becomes “Home” page. I need to call it something else.

    Please help.

    #58425
    Sakin
    Keymaster

    @Marina: You can create custom menu from “Appearance => Menus”, Then you can add pages, post, links and category as per your need. There you can change the Label to change the menu text. See this screencast for Custom Menus http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/ and you can also check this screenshot which shows different element of menus https://www.pinterest.com/pin/548594798330820987/

    #58535
    Marina
    Member

    It worked! Thank you so much for your help 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Menu Position Slider / Featured Image’ is closed to new replies.