mypcbasics
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: TinyMCE Can’t reply to comments@mkmllr I used the rich text instead:
add_filter( 'comment_form_defaults', 'rich_text_comment_form' ); function rich_text_comment_form( $args ) { ob_start(); wp_editor( '', 'comment', array( 'media_buttons' => false, // show insert/upload button(s) to users with permission 'textarea_rows' => '5', // re-size text area 'dfw' => false, // replace the default full screen with DFW (WordPress 3.4+) 'tinymce' => false, 'quicktags' => array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ) ) ); $args['comment_field'] = ob_get_clean(); return $args; }
Forum: Developing with WordPress
In reply to: TinyMCE Can’t reply to commentsup
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Hebrew translationDone. now it’s waiting for approval.
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Style sheet could not be loadedThe update solved the problem thanks!
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Style sheet could not be loadedI’m using the default settings of the app. I didn’t add any custom image or CSS setting.
Before I used this app, I changed the default media upload location from wp-content/uploads to /images using this code at the wp-config.php:
define( ‘UPLOADS’, ‘images’ );
I checked the custom.css file and it’s empty…
I think that the browser did manage to load this CSS file, but I only get this message because this file is empty1. How can I disable this CSS file if I’m not using it?
2. I’m also using the like button only on post pages. so I entered to General=>Disable Plugin Files, to disable the plugin on all pages except post pages, now the wp-ulike.min.js file is loaded on pages and post pages. how to disable it on pages?