• Resolved QROkes

    (@qrokes)


    I tried to use this plugin and in general is great, but I found some minor issues and some features that would be nice to have.

    – Not 100% compatible with Genesis Framework. Single question page is broken (style), tested in Genesis Sample Theme (The most basic theme in Genesis Framework).

    – Would be nice to have a way to deactivate private questions.

    – Would be nice to have the option to allow users posting a question/answer with just name/email like native WP comment system (not account required).

Viewing 1 replies (of 1 total)
  • Thanks for your post.

    #1. you need to add content wrapper by action hook,

    
    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>';
    }
    
    

    #2. thanks for your both suggestion we may consider in future versions.

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Suggestions’ is closed to new replies.