htvu
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] too many 404 errorAddition info: the link cause 404 error, it access normally yesterday. Maybe this is cookie, session relate issue. I havent look into your code yet.
Forum: Plugins
In reply to: [WPS Hide Login] too many 404 error404 error occurred on random links. For example, I’m using Wordfence (WF) plugin, I can access WF dashboard, scan page… but cant access firewall page (404). I use a trick by add ?something=111 and I access normally. But this trick not work for all cases, some time it lead into some WordPress errors.
Forum: Plugins
In reply to: [OptionTree] Add Font Family in TypographyYes, use this code in your functions.php
function filter_ot_recognized_font_families( $array, $field_id ) { /* only run the filter when the field ID is my_google_fonts_headings */ if ( $field_id == 'my_google_fonts_headings' ) { $array = array( 'sans-serif' => 'sans-serif', 'open-sans' => '"Open Sans", sans-serif', 'droid-sans' => '"Droid Sans", sans-serif' ); } return $array; } add_filter( 'ot_recognized_font_families', 'filter_ot_recognized_font_families', 10, 2 );
Forum: Plugins
In reply to: [OptionTree] OptionTree and NEW Insert MediaCheck it for new Media Upload https://github.com/valendesigns/option-tree/issues/84#issuecomment-16179238
Forum: Plugins
In reply to: [OptionTree] Request for implementation of new media uploader (WP 3.5)Forum: Plugins
In reply to: [OptionTree] Support for new Media UploaderForum: Reviews
In reply to: [OptionTree] Exellent job !Yes. I’m using your plugin for my first WP theme at ThemeForest.
Forum: Plugins
In reply to: [OptionTree] How to use option tree@derek you’re welcome. I l love this plugin and I’m using it for my new theme in ThemeForest. I made some changes on the plugin and I just want give a little help.
Forum: Plugins
In reply to: [OptionTree] Can Theme Options be used after removal of plugin?Yes, it’s possible. See ot-ui-theme-options.php in includes folder of OT plugin.
Forum: Plugins
In reply to: [OptionTree] Can Theme Options be used after removal of plugin?This plugin stored settings in database, it NOT generate codes for admin panel. If plugin is removed, no admin panel displayed. You can see document to know how to use plugin in THEME MODE. In THEME MODE, admin panel always show even plugin is intalled or not.
The latest version (2.0.12) of this plugin still use old Media Upload but you can easy switch it to the new one by modyfying some codes (of couse you should use plugin in THEME MODE)
Forum: Plugins
In reply to: [OptionTree] Meta Boxes on specific theme template pageIf you want to show specific metabox for new post that not save yet, you must regirster all metaboxes in PHP and use JS to show metabox base on what tempate is selected.
Forum: Plugins
In reply to: [OptionTree] Theme options under the Appearance tab…. why?@w1cky: I’m not sure about an elegant solution because I just like you, a user of this plugin not author.
My idea to solve your issue is use a capability value (publish_pages) that available for superadmin, admin and editor. manage_options is a capability just availabe for superadmin and admin, not for editor. You can see Roles and Capabilities in WP document for more information.
UPDATE: in new version of OT, Derek (plugin’s author) use edit_theme_options instead manage_options. Editor still can’t access page because edit_theme_options not available for editor.
Forum: Plugins
In reply to: [OptionTree] Theme options under the Appearance tab…. why?@dhaval007: use ot_theme_options_page_title and ot_theme_options_menu_title filters
Forum: Plugins
In reply to: [OptionTree] Theme options under the Appearance tab…. why?@dhaval007: see ot-ui-theme-options.php file
Forum: Plugins
In reply to: [OptionTree] Theme options under the Appearance tab…. why?You should change capability value too, from manage_options to publish_pages.
This is not elegant solution but easiest.