Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author DesignWall

    (@designwall)

    Hi Whoji,

    Thank you for getting in touch with us.

    1. You can display a customized sidebar for single-question page. If you want us to do this for you, please reach us at [email protected]. We’d love to do it.

    2. As for the pro version of DW Question & Answer, it has been improved a lot since we have collected suggestions from our beloved users and added them into DW Q&A Pro.

    You can see and demo here:

    • Different styles: As you can see in the demos, both versions of DW Question & Answer have unique and different styles.
    • Extra extensions: The DW Q&A Pro is integrated with 4 premium extensions: DW Q&A Widgets, DW Q&A Leaderboard, DW Q&A Markdown, and DW Q&A Captcha. Each extension costs $29 and if you purchase the pro version, you’ll save at least $92 for yourself because we are constantly updating the DW Question & Answer with many more cool premium extensions.
    • Widgets: The free version supports 4 custom widgets while the pro version supports 7.
    • Leaderboard: The Pro version can list who makes great contributions as well as provides friendly competitions for your community
    • Markdown:
    • The markdown feature in the Pro version of DW Q&A Pro helps you to edit the plain text without using HTML formatting tags, now you can read and edit drafts with ease.
    • Reviewable before submitting.
    • Spell checking.
    • Anti-spam by reCaptcha / FunCaptcha: DW Q&A Pro is integrated with reCaptcha / FunCaptcha so you don’t have to worry about obnoxious spam.

    We are about to optimize our Pro version, so if you have any suggestions, please leave the comment down here. It encourages us a lot.

    Plugin Author DesignWall

    (@designwall)

    Hi Whoji,

    As for the 1st issue, please read these lines below as our assistance:

    You can go to wp-content/themes/<your-theme-folder> and add this following code into page.php

    <?php if ( is_singular('dwqa-question') ): ?>
     <?php dynamic_sidebar() ?>
    <?php endif; ?>
    

    If you want to register another sidebar for single question you can add this following code into functions.php at your theme folder.

    function dwqa_theme_register_sidebar() {
     register_sidebar( array(
      'name'          => __( 'Single Question', 'twentysixteen' ),
      'id'            => 'single-question',
      'before_widget' => '<section id="%1$s" class="widget %2$s">',
      'after_widget'  => '</section>',
      'before_title'  => '<h2 class="widget-title">',
      'after_title'   => '</h2>',
     ) );
    }
    add_action( 'widgets_init', 'dwqa_theme_register_sidebar' );
    

    and change dynamic_sidebar() in the 1st code example to dynamic_sidebar( 'single-question' )

    If you encounter any problem, please do not hesitate to get back to us. We’re here to help you.

    Plugin Author DesignWall

    (@designwall)

    Hey there,

    DW Question & Answer 1.4.4 has been released. Please keep updating and send us your precious feedback about it.

    Looking forward to hearing from you.

    i have a sidebar called ‘dqwa’ and i want to add this in below mentioned screenshot’s page. How do i ?

    screenshot link :

    View post on imgur.com

    • This reply was modified 8 years, 1 month ago by incarnate.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Is it possible to display a customized sidebar for single-question page?’ is closed to new replies.