Nehemc
Forum Replies Created
-
Thank you.
Forum: Plugins
In reply to: [Easy Career Openings] with 3.5.2 its come errorI also had the same problem. I found out the opening tag “<?php” was written without “php” in it.
So you have to deactivate the plugin and reinstall it and change with correct opening PHP tag – <?php in “easy-career-openings.php” file.
(File Path: wp-content/plugins/easy-career-openings/easy-career-openings.php )
Forum: Themes and Templates
In reply to: [Spun] How could i have a blog in the menu bar? :)Add custom menus to wordpress:
1. ADD this code to functions.php
——————————–
register_nav_menus(
array(‘topic1’ => __( ‘Main Menu’, ‘TOPIC_1’ ),)
);register_nav_menus(
array(‘topic2’ => __( ‘Footer Menu’, ‘TOPIC_2’ ),)
);2. wp admin -> appearance -> mens.
create menu name and select theme location.3. Add this to where you want:
—————————-<?php wp_nav_menu( array( ‘container_id’ => ‘none’, ‘container_class’ => ‘none’, ‘menu_class’ => ‘none’, ‘menu_id’ => ‘none’, ‘theme_location’ => ‘topic1’ ) ); ?>
<?php wp_nav_menu( array( ‘container_id’ => ‘none’, ‘container_class’ => ‘none’, ‘menu_class’ => ‘none’, ‘menu_id’ => ‘none’, ‘theme_location’ => ‘topic2’ ) ); ?>
Hi essaysnark,
Thanks for replying. i am disable all plugins and check one by one. Now it will working fine.
Thank you for your wonderful answer…
Forum: Themes and Templates
In reply to: [Admired] my static page is not showing upHey,
Note: Backup Your theme before deleting.
Delete your customized Admired theme from FTP and reload your website. It will be work fine. I hope it is useful for you.