budlix
Forum Replies Created
-
Great! That’s what I was looking for.
Thank you very much for your help!- This reply was modified 7 years, 11 months ago by budlix.
Hello,
thank you for quick reply.
What I understood is that your plugin is able to show only posts from same category as actual post is in? Then I dont know which shortcode I should put in so it will check the post’s category and then show the rest of same category posts. Sorry for my English.. 🙂- This reply was modified 7 years, 11 months ago by budlix.
Forum: Plugins
In reply to: [Ditty – Responsive News Tickers, Sliders, and Lists] Title as link?How simple!
Works for me, thank you very much!Forum: Fixing WordPress
In reply to: Remove menu from blog page (posts page)SOLVED
This was my process:
File: header.php
Original Code Line: <?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) ); ?>
Revised Code Line: <?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’, ‘menu’ => get_post_meta( $post->ID, ‘MenuName’, true) ) );?>
Also: “Then create a new custom field called MenuName and give it a value matching the name of the menu you want that page to use.”Solved – just moved code from header.php into page.php