Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Yeah, i am also facing the issue.

    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

    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);
    						}
    					}
    				]
    			});
    		});
    })();

    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.

    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>

    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

    it is defaultly integrated with your default WP search form.
    Or append /?s=<keyword> to your blog URL

Viewing 8 replies - 1 through 8 (of 8 total)