aimsam
Forum Replies Created
-
Forum: Plugins
In reply to: [Enhanced Text Widget] Not working/saving correctly since last update…Yeah, i am also facing the issue.
Forum: Plugins
In reply to: [User Access Manager] What is [LR]?This might be admin hint setting.If you do not want this to be displayed, Hide Admin Hint Text.
UAM>Settings>Other settings>Show admin hint at Posts
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] UI does not show up in the TinyMCETo make this work with TinyMCE 4 replace code in plugins/wp-ui/inc/wpuimce/editor_plugin.js
This is to accommodate the new initialization in TinyMCE 4
(function() { tinymce.PluginManager.add('wpuimce', function( editor, url ) { editor.addButton( 'wpuimce', { text: 'WP UI', title : "WP UI widgets", image : pluginVars.pluginUrl + "/images/wpui_editor.png", type : 'splitbutton', onclick: function() { }, menu: [ { text : 'Add Tab set', onclick : function() { // jQuery( '#wpui-dialog-mode' ).val( 'addtab' ); jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'addtab' }); // jQuery( '#wpui-editor-dialog' ) // .html( jQuery( '#_wpui-editor-dialog #wpui-new-tabset' ).clone() ) // .attr( 'title', 'Add a tab set') // .dialog( 'open' ); } }, { text : 'Wrap tab set', onclick : function() { // jQuery( '#wpui-dialog-mode' ).val( 'wrapset' ); // // jQuery( '#wpui-editor-dialog' ) // .attr( 'title', 'Wrap the tabs' ) // .html( jQuery( '#_wpui-editor-dialog #wpui-wrap-tabs' ).clone() ) // .dialog( 'open' ); jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'wraptab', selection : 'multiple' }); } }, { text : 'Spoiler', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'spoiler' }); } }, { text : 'Dialog', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'dialog' }); } }, { text : 'Feeds', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'addfeed' }); } }, { text : 'Documentation', onclick : function() { editorHelp = pluginVars.wpUrl + '/wp-admin/admin-ajax.php?action=editorButtonsHelp&TB_iframe=true'; tb_show('WP UI documentation', editorHelp); } } ] }); }); })();
To make this work with TinyMCE 4 replace code in plugins/wp-ui/inc/wpuimce/editor_plugin.js
This is to accommodate the new initialization in TinyMCE 4
(function() { tinymce.PluginManager.add('wpuimce', function( editor, url ) { editor.addButton( 'wpuimce', { text: 'WP UI', title : "WP UI widgets", image : pluginVars.pluginUrl + "/images/wpui_editor.png", type : 'splitbutton', onclick: function() { }, menu: [ { text : 'Add Tab set', onclick : function() { // jQuery( '#wpui-dialog-mode' ).val( 'addtab' ); jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'addtab' }); // jQuery( '#wpui-editor-dialog' ) // .html( jQuery( '#_wpui-editor-dialog #wpui-new-tabset' ).clone() ) // .attr( 'title', 'Add a tab set') // .dialog( 'open' ); } }, { text : 'Wrap tab set', onclick : function() { // jQuery( '#wpui-dialog-mode' ).val( 'wrapset' ); // // jQuery( '#wpui-editor-dialog' ) // .attr( 'title', 'Wrap the tabs' ) // .html( jQuery( '#_wpui-editor-dialog #wpui-wrap-tabs' ).clone() ) // .dialog( 'open' ); jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'wraptab', selection : 'multiple' }); } }, { text : 'Spoiler', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'spoiler' }); } }, { text : 'Dialog', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'dialog' }); } }, { text : 'Feeds', onclick : function() { jQuery('#wpui-editor-dialog').wpuiEditor({ mode : 'addfeed' }); } }, { text : 'Documentation', onclick : function() { editorHelp = pluginVars.wpUrl + '/wp-admin/admin-ajax.php?action=editorButtonsHelp&TB_iframe=true'; tb_show('WP UI documentation', editorHelp); } } ] }); }); })();
Same issue here. The new dropdown menus in 3.9 feature does not seem to work. When i use the Black Studio TinyMCE Widget in Widget it is working fine.
Forum: Plugins
In reply to: [Search Everything] Where is this?simple html code for the form is given below(not tested).
<form action="https://whitestonechurchtx.com/"> <input name="s" type="text"/><input type="submit" /> </form>
Forum: Plugins
In reply to: [Search Everything] Where is this?you can create a form with a input field named “s” and action parameter will be the blog url. The “/?s=<keyword>” searches everything including pages, posts,etc…
if you still need help, let me know
Forum: Plugins
In reply to: [Search Everything] Where is this?it is defaultly integrated with your default WP search form.
Or append /?s=<keyword> to your blog URL