DesignWall
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] The Options does not show in the customizer section?I don’t know why it does not generate?the file when I’m customizing new theme.
Forum: Plugins
In reply to: [Redux Framework] The Options does not show in the customizer section?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:<?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
In reply to: [Redux Framework] The Options does not show in the customizer section?Hi,
I have tested with the Twenty Twenty theme.
And used the following code: https://devs.redux.io/guides/basics/getting-started.htmlForum: Plugins
In reply to: [Redux Framework] The Options does not show in the customizer section?Hi,
I’m testing with the wordpress default theme.
I have added this code to the functions.php file:
/** * 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:
<?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' => ' ', ); 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 12 months ago by DesignWall.
- This reply was modified 12 months ago by DesignWall.
- This reply was modified 12 months ago by DesignWall.
- This reply was modified 12 months ago by DesignWall.
Forum: Plugins
In reply to: [DW Notifications] Red color count not showingHi,
Please let me know detail about this issue, you can send me a screenshot and site URL for further checking.
RegardsForum: Plugins
In reply to: [DW Question & Answer] Permission SettingHi,
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.
RegardsHi,
Have you installed the SMTP plugin?
We are checking on our demo site and this feature still works fine.
RegardsForum: Plugins
In reply to: [DW Question & Answer] Anonymous Comments Not WorkingHi,
Please check the permission in the Dashboard > Questions > Settings > Permission.
RegardsForum: Plugins
In reply to: [DW Question & Answer] Untranslatable placeholder textAt 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
In reply to: [DW Question & Answer] Submit button not showingYou 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
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.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
In reply to: [DW Question & Answer] answer questions anonymouslyHi,
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
In reply to: [DW Question & Answer] Caution – bug that erases answers!Hi,
I sent and notified to our technical team about this issue, we will check and discuss about this issue.
Regards,Forum: Plugins
In reply to: [DW Question & Answer] Вывод вопросов в листинге базовой категории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.