• Resolved dell21000

    (@dell21000)


    Hi. I am able to use the wiki widget, with buddypress default theme 1.5.2. It displays the wiki correctly on the page, but when I click on the “discussion” tab, this results in the entire sidebar, containing all of my widgets including the wiki links, to move the left side of the blog, offset to the left of the page/post window, and the top of the sidebar lines up with the bottom of the page/post.

    http://wordpress.org/extend/plugins/wordpress-wiki-plugin/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there.

    Do you have any links or screenshots I could see?

    Take care.

    Hi, for discussion and history tabs, it lacks the $btop content from lines 461 and 462 : see the wordpress-wiki-plugin.php file

    What i did till it is fixed :
    – line 466 added “$new_content .= $btop;”

    switch ($action) {
    	case 'discussion':
    		$new_content .= $btop;
        break;

    – line 580 or so : added “$new_content .= $btop;”

    case 'history':
    	$new_content .= $btop;

    Cheers 😉

    thanks for the tip bdnosp! Works for me too 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Wiki] discussion tab results in entire widget sidebar moving’ is closed to new replies.