• Resolved askmediy

    (@askmediy)


    HI how are you. First off I love your this. However I’m having an issue with the sidebars on a single questions being pushed way down.

    Yes I did install your code in the functions.php file but still no joy no matter what theme I use. Any ideas?

Viewing 1 replies (of 1 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    Thanks for your post.

    Please update plugins first on latest version and then if you want to remove sidebar please add following codeo n theme functions.php file

    
    remove_action('qa_action_single_question_sidebar','qa_action_single_question_sidebar_function');
    

    and if you want to keep sidebar then use exact class (site-main) for content container.

    
    add_action('qa_action_before_single_question', 'qa_action_before_single_question', 10);
    add_action('qa_action_after_single_question', 'qa_action_after_single_question', 10);
    
    function qa_action_before_single_question() {
      echo '<div id="main" class="site-main">';
    }
    
    function qa_action_after_single_question() {
      echo '</div>';
    }
    

    Regards

    • This reply was modified 9 years, 2 months ago by PickPlugins.
Viewing 1 replies (of 1 total)

The topic ‘Sidebars’ is closed to new replies.