Title: DesignWall's Replies | WordPress.org

---

# DesignWall

  [  ](https://wordpress.org/support/users/designwall/)

 *   [Profile](https://wordpress.org/support/users/designwall/)
 *   [Topics Started](https://wordpress.org/support/users/designwall/topics/)
 *   [Replies Created](https://wordpress.org/support/users/designwall/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/designwall/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/designwall/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/designwall/engagements/)
 *   [Favorites](https://wordpress.org/support/users/designwall/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 1,025 total)

1 [2](https://wordpress.org/support/users/designwall/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/designwall/replies/page/3/?output_format=md)…
[67](https://wordpress.org/support/users/designwall/replies/page/67/?output_format=md)
[68](https://wordpress.org/support/users/designwall/replies/page/68/?output_format=md)
[69](https://wordpress.org/support/users/designwall/replies/page/69/?output_format=md)
[→](https://wordpress.org/support/users/designwall/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redux Framework] The Options does not show in the customizer section?](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/)
 *  Thread Starter [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/#post-17244441)
 * I don’t know why it does not generate the file when I’m customizing new theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redux Framework] The Options does not show in the customizer section?](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/)
 *  Thread Starter [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/#post-17244080)
 * Hi, 
   I found the issue, I see that the plugin will generate the “redux” folder
   in the uploads folder with the file types and with the following code:
 *     ```wp-block-code
       <?php
          class Redux_Customizer_Control_media extends Redux_Customizer_Control {
            public $type = "redux-media";
          }
       ```
   
 * Could you let me know What conditions the redux folder will be generated?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redux Framework] The Options does not show in the customizer section?](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/)
 *  Thread Starter [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/#post-17241047)
 * Hi, 
   I have tested with the Twenty Twenty theme. And used the following code:
   [https://devs.redux.io/guides/basics/getting-started.html](https://devs.redux.io/guides/basics/getting-started.html)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redux Framework] The Options does not show in the customizer section?](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/)
 *  Thread Starter [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/the-options-does-not-show-in-the-customizer-section/#post-17234530)
 * Hi, 
   I’m testing with the wordpress default theme. I have added this code to 
   the functions.php file:
 *     ```wp-block-code
       /**
        * Check if Redux Framework is activated
        */
       if( ! function_exists( 'em_fixel_is_redux_activated' ) ) {
         function em_fixel_is_redux_activated() {
             return class_exists( 'ReduxFrameworkPlugin' ) ? true : false;
         }
       }
   
   
       // require redux framework files
   
       if ( em_fixel_is_redux_activated() ) {
   
         require get_template_directory() . '/inc/redux-framework/em-options.php';
   
         require get_template_directory() . '/inc/redux-framework/hooks.php';
   
         require get_template_directory() . '/inc/redux-framework/functions.php';
   
       }
       ```
   
 * And this is option code:
 *     ```wp-block-code
       <?php
       if ( ! class_exists( 'Redux' ) ) {
           return;
       }
   
       if ( ! class_exists( 'Test_Options' ) ) {
   
           class Test_Options {
   
               public function __construct( ) {
                   add_action( 'after_setup_theme', array( $this, 'load_config' ) );
               }
   
               public function load_config() {
   
                   $options        = array( 'general', 'header', 'footer', 'archive', 'single' ,'style', '404', 'typography' );
                   $options_dir    = get_template_directory() . '/inc/redux-framework/options';
   
                   foreach ( $options as $option ) {
                       $options_file = $option . '-options.php';
                       require_once $options_dir . '/' . $options_file ;
                   }
   
                   $sections   = apply_filters( 'test_options_sections_args', array( $general_options, $header_options, $footer_options, $archive_options,$single_options, $error_page_options, $style_options, $typography_options) );
                   $theme      = wp_get_theme();
                   $opt_name   = 'test_options';
                   $args       = array(
                       'opt_name'          => $opt_name,
                       'display_name'      => $theme->get( 'Name' ),
                       'display_version'   => $theme->get( 'Version' ),
                       'allow_sub_menu'    => true,
                       'menu_title'        => esc_html__( 'Test Options', 'emo-fixel' ),
                       'page_priority'     => 3,
                       'page_slug'         => 'theme_options',
                       'intro_text'        => '',
                       'dev_mode'          => false,
                       'customizer'        => true,
                       'menu_icon'         => get_template_directory_uri() . '/assets/img/test-favicon.png',
                       'footer_credit'     => '&nbsp;',
                   );
   
                   Redux::set_args( $opt_name, $args );
                   Redux::set_sections( $opt_name, $sections );
                   Redux::disable_demo();
               }
           }
   
           new Test_Options();
       }
   
       if( ! array_key_exists( 'test_options' , $GLOBALS ) ) {
           $GLOBALS['test_options'] = get_option( 'test_options', array() );
       }
       ```
   
    -  This reply was modified 2 years, 5 months ago by [DesignWall](https://wordpress.org/support/users/designwall/).
    -  This reply was modified 2 years, 5 months ago by [DesignWall](https://wordpress.org/support/users/designwall/).
    -  This reply was modified 2 years, 5 months ago by [DesignWall](https://wordpress.org/support/users/designwall/).
    -  This reply was modified 2 years, 5 months ago by [DesignWall](https://wordpress.org/support/users/designwall/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Notifications] Red color count not showing](https://wordpress.org/support/topic/red-color-count-not-showing/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/red-color-count-not-showing/#post-12149206)
 * Hi,
    Please let me know detail about this issue, you can send me a screenshot
   and site URL for further checking. Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Permission Setting](https://wordpress.org/support/topic/permission-setting-2/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/permission-setting-2/#post-12135891)
 * Hi,
    Yes, the plugin has supported the Permission setting, you can configure 
   the User role to allow users can submit a question and can not answer the question
   as you want. Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Not Receiving notification for New Answer and New Comment](https://wordpress.org/support/topic/not-receiving-notification-for-new-answer-and-new-comment/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/not-receiving-notification-for-new-answer-and-new-comment/#post-12135871)
 * Hi,
    Have you installed the SMTP plugin? We are checking on our demo site and
   this feature still works fine. Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Anonymous Comments Not Working](https://wordpress.org/support/topic/anonymous-comments-not-working/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/anonymous-comments-not-working/#post-12135861)
 * Hi,
    Please check the permission in the Dashboard > Questions > Settings > Permission.
   Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Untranslatable placeholder text](https://wordpress.org/support/topic/untranslatable-placeholder-text/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/untranslatable-placeholder-text/#post-12135854)
 * At the moment, to change this placeholder, you can find the line 465 – 467 of
   the Template.php file.
    We will check and update this issue in the next version.
   Hope this help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Submit button not showing](https://wordpress.org/support/topic/submit-button-not-showing-7/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/submit-button-not-showing-7/#post-12135839)
 * You can add the following code to the style.css file:
 *     ```
       .post-password-form input[type="submit"], input[type="submit"] {
       background: #cbe051;
       border-color: #cbe051;
       box-shadow: none;
       }
       ```
   
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] How can we allow the author for a comment or answer to edit and delete comment?](https://wordpress.org/support/topic/how-can-we-allow-the-author-for-a-comment-or-answer-to-edit-and-delete-comment/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/how-can-we-allow-the-author-for-a-comment-or-answer-to-edit-and-delete-comment/#post-11567150)
 * Hi,
    Just configure the permission in the backend of the plugin. We have checked
   on our demo and the plugin still work fine. Regards, DesignWall team.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Arrow selection style issue and missing placeholder translation](https://wordpress.org/support/topic/arrow-selection-style-issue-and-missing-placeholder-translation/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/arrow-selection-style-issue-and-missing-placeholder-translation/#post-11567144)
 * Hi,
    1/ Please send me your site URL for further checking. 2/ To translate this
   string, you need to open the plugins/dw-question-answer/inc/Template.php file
   then find the line 465. Regards, DesignWall team.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] answer questions anonymously](https://wordpress.org/support/topic/answer-questions-anonymously/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/answer-questions-anonymously/#post-11567141)
 * Hi,
    At the moment, the plugin does not support the approve answer option in 
   the Free version, we have included this option into the Pro version. And you 
   can allow anonymous user to submit an answer for the questions. Regards, DesignWall
   team.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Caution – bug that erases answers!](https://wordpress.org/support/topic/caution-bug-that-erases-answers/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/caution-bug-that-erases-answers/#post-11567131)
 * Hi,
    I sent and notified to our technical team about this issue, we will check
   and discuss about this issue. Regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Question & Answer] Вывод вопросов в листинге базовой категории](https://wordpress.org/support/topic/%d0%b2%d1%8b%d0%b2%d0%be%d0%b4-%d0%b2%d0%be%d0%bf%d1%80%d0%be%d1%81%d0%be%d0%b2-%d0%b2-%d0%bb%d0%b8%d1%81%d1%82%d0%b8%d0%bd%d0%b3%d0%b5-%d0%b1%d0%b0%d0%b7%d0%be%d0%b2%d0%be%d0%b9-%d0%ba%d0%b0%d1%82/)
 *  Plugin Author [DesignWall](https://wordpress.org/support/users/designwall/)
 * (@designwall)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/%d0%b2%d1%8b%d0%b2%d0%be%d0%b4-%d0%b2%d0%be%d0%bf%d1%80%d0%be%d1%81%d0%be%d0%b2-%d0%b2-%d0%bb%d0%b8%d1%81%d1%82%d0%b8%d0%bd%d0%b3%d0%b5-%d0%b1%d0%b0%d0%b7%d0%be%d0%b2%d0%be%d0%b9-%d0%ba%d0%b0%d1%82/#post-11567129)
 * Hi,
    At the moment, the Free version does not support this feature. We have supported
   the shortcode to show the question in a category for the pro version. Regards,
   DesignWall team.

Viewing 15 replies - 1 through 15 (of 1,025 total)

1 [2](https://wordpress.org/support/users/designwall/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/designwall/replies/page/3/?output_format=md)…
[67](https://wordpress.org/support/users/designwall/replies/page/67/?output_format=md)
[68](https://wordpress.org/support/users/designwall/replies/page/68/?output_format=md)
[69](https://wordpress.org/support/users/designwall/replies/page/69/?output_format=md)
[→](https://wordpress.org/support/users/designwall/replies/page/2/?output_format=md)