mebrand
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Taxonomy Manager] Reseted taxonomy on edit post screenIt may be https://www.advancedcustomfields.com/ plugin problem. I’ll try to investigate it.
Forum: Plugins
In reply to: [Subscribe2 Widget Pro] $postto variable is undefinedSELECT * FROM "wp_options" WHERE "option_name" REGEXP "s2w" LIMIT 0 , 30
returns an empty option_value field
option_id -- 5623 option_name -- s2w_widget_settings option_value -- autoload -- yes
Forum: Plugins
In reply to: [Subscribe2 Widget Pro] $postto variable is undefinedHi, Devin. I’ve got some news!
The problem is occurred when opt-in form in Subscribe2 Widget Pro Submission Options parameter setted to Use Subscribe2 default (by default and for the first time) and if you’ve not setted Subscribe2 plugin default Subscribe2 page parameter at
/wp-admin/admin.php?page=s2_settings&tab=appearance
before and setted it after Subscribe2 Widget Pro configuration or/and if you’ve changed default Subscribe2 page widget keeps empty data for slected Submission Options -> Post form content to page option:
<option value="">Use Subscribe2 default</option>
Here it is. I hope it will be helpful to investigate. Great widget, by the way.
One more thing: I’ve no idea why does widget do not load selected styles and why widget-output.php can not receive
$options = get_option( 's2w_widget_settings' );
and why does var_dump( $options) returning this:string(0) ""
Should I try to remove and install the widget again?
Forum: Plugins
In reply to: [WP Lightbox 2] iPad/iPhoneThe same problem
“Where do you insert the ID code?” =)
the same
Forum: Plugins
In reply to: [Rich Text Tags] [Plugin: Rich Text Tags] filterGreat! Thank you, Zack. I’ve just update your plugin.
Forum: Plugins
In reply to: [Rich Text Tags] [Plugin: Rich Text Tags] filterYes, Nabha absolutely right. It’s working solution till the author make change for TinyMCE.init.
The ugly solution I have – TinyMCE Advanced Plugin install and configuratin it for
Stop removing the <p> and <br /> tags when saving and show them in the HTML editor
. It is usingwpautop()
like Nabha do.Forum: Plugins
In reply to: [Hikari Krumo] [Plugin: Hikari Krumo] Hangin up stateI’ll try and make my debuging plugins review update. tnx.
Forum: Plugins
In reply to: Creating Admin Menu Separatorsdon’t forget to add an action. e.g.:
add_action(‘admin_init’,’admin_menu_separator’);
function admin_menu_separator() {
add_admin_menu_separator(20);
add_admin_menu_separator(30);
add_admin_menu_separator(40);
}Forum: Plugins
In reply to: Creating Admin Menu Separators