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

    (@designwall)

    The issue style has been fixed on DW Question & Answer 1.4.0, can you help me download this version then test with your theme: https://github.com/designwall/dw-question-answer/archive/1.4.0.zip

    Thread Starter wpthemes

    (@wpthemes)

    Yes, the bug is fixed.

    However, for the plugin WPLMS DWQA.

    I am enqueuing the styles for dwqa via below code

    add_action('template_redirect',array($this,'dwqa_styles'));
    function dwqa_styles(){
    
          if(isset($_GET['questions']) && is_singular('course')){
              if(function_Exists('dwqa_enqueue_scripts')){
                add_action( 'wp_enqueue_scripts', 'dwqa_enqueue_scripts' );
              }
          }
       }

    and I am using
    echo do_shortcode('[dwqa-list-questions]');

    to list out questions, but the style sheet is not including in the screen : https://prntscr.com/9yxtvn

    am I missing something ?

    Plugin Author DesignWall

    (@designwall)

    Did you update DW Question & Answer on your website to 1.4.0?
    The styles of DW Question & Answer has been enqueued by default. Why do you need to enqueue the scripts via codes above?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘dwqa question styling not loading in questions’ is closed to new replies.