theseoguy 0 Report post Posted February 15, 2011 That's probably the most correct way of describing my situation - and it only happens on my Forum page. Please have a look at http://conneur.co.za/forum/'>http://conneur.co.za/forum/ VS. http://conneur.co.za/ 1) The menu items on the top navigation bar jumps around and function nothing like my other pages, drop-down etc. 2) This is a general problem - the home page icon disappeared for no reason, its still in the original folder but do not display on the frontend. Thank you so much Share this post Link to post Share on other sites
Kate 3 Report post Posted February 16, 2011 Did you get this working? Just took a look (in FireFox) and it seemed fine... Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 18, 2011 Thanks for the response Kate, The answer to your question would be no mam. Still have the same problem when I view in Chrome. Here's a short video of what happens: http://screencast.com/t/YzQsQFrMW Thanks for your assistance. Riaan Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 18, 2011 In your header.php file of your iblogforum add this line after the one that mentions custom css: `<?php get_template_part ('core/inits/init_dropdown');?>` Let me know if this fixes your navigation issues. Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 18, 2011 Hey Adam, Tried the code, with some improvement but it still has some serious problems. None of the menus actual drop down and no page/forum info is displayed. This is what I did: <?php // tells wordpress your on a BBPress Page global $bbpress_forum; $bbpress_forum = true; get_header(); ?> <?php if (pagelinesforum('customcss')):?> <style type="text/css"> <?php echo pagelinesforum('customcss');?> <?php get_template_part ('core/inits/init_dropdown');?> </style> <?php endif;?> <?php bb_load_template('_forumheader.php');?> Share this post Link to post Share on other sites
catrina 103 Report post Posted February 19, 2011 Try this instead: ` <?php // tells wordpress your on a BBPress Page global $bbpress_forum; $bbpress_forum = true; get_header(); ?> <?php if (pagelinesforum('customcss')):?> <?php get_template_part ('core/inits/init_dropdown');?> <?php endif;?> <?php bb_load_template('_forumheader.php');?> ` Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 21, 2011 Hi Catrina and thanks for the suggestion. I tried that and it gave me the following Fatal Error: Fatal error: Cannot redeclare dropdown_js() (previously declared in /home/conneur/public_html/wp-content/themes/iblogpro4_dev/core/inits/init_dropdown.php:8) in /home/conneur/public_html/wp-content/themes/iblogpro4_dev/core/inits/init_dropdown.php on line 10 PS: I really didn't think installing the forum would give this amount of problems... is there a more error-proof way of doing it? I mean, all I want is for the forum to work with my standard theme. Thanks in advance, Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 22, 2011 Bumping this up for developer review. Thanks, Bryan Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 22, 2011 thank you kindly Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 24, 2011 Bump! Any news here yet ladies & gents? I'm really desperate for a solution... Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 24, 2011 email me some login credentials adam [at] pagelines.com Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 24, 2011 thanks Adam, just did... Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 24, 2011 whoops just realized I cant edit the forum theme from the wp-dashboard...how can I get at that file? Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 24, 2011 Let me send you an email with Cpanel access quick. Share this post Link to post Share on other sites
Andrew 207 Report post Posted February 24, 2011 Try adding this to the header of your forum: ` http://conneur.co.za/wp-content/themes/iblogpro4_dev/pro/css/pro.css?ver=9562' type='text/css' media='all' /> http://conneur.co.za/wp-content/themes/iblogpro4_dev/pro/css/dropdown.css?ver=9562' type='text/css' media='all' /> ` Share this post Link to post Share on other sites
Andrew 207 Report post Posted February 25, 2011 Or better yet, You can try adding this to the functions.php in your forum theme: `if(pagelines('enable_drop_down') && VPRO) get_template_part ('core/inits/init_dropdown');` Share this post Link to post Share on other sites
theseoguy 0 Report post Posted February 28, 2011 Hey guys, Just a big thanks to you all! Adam, whatever you did worked like a charm. Much appreciate to collaborative effort and dedication to get the error dealt with! My confidence is fully restored. All the best, Share this post Link to post Share on other sites