firman888
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WooCommerce disables Visual Editor in WP 3.9?All you need to do is go to
class-wc-admin-editor.php
the location is in
wp-content / plugins / woocommerce / includes / adminCreate a backup of the original file by putting
class-wc-admin-editor-BACKUP.phpthen download the copy, rename to original name
Find this line:
public function add_tinymce_lang( $arr ) {
$arr[‘wc_shortcodes_button’] = WC()->plugin_path() . ‘/assets/js/admin/editor_plugin_lang.php’;
return $arr;
}Comment the line
/**
public function add_tinymce_lang( $arr ) {
$arr[‘wc_shortcodes_button’] = WC()->plugin_path() . ‘/assets/js/admin/editor_plugin_lang.php’;
return $arr;
}*/See the difference? that works for me at least for now.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce 2.1 Missing Visual Editorwell, that fixes it. But make sure you close after the return line. Otherwise, it will goes error. Freaking me out.
/**
public function add_tinymce_lang( $arr ) {
$arr[‘wc_shortcodes_button’] = WC()->plugin_path() . ‘/assets/js/admin/editor_plugin_lang.php’;
return $arr;
}*/Forum: Fixing WordPress
In reply to: Plugin Add New : Unexpected Error OccuredTopic closed
Forum: Fixing WordPress
In reply to: Plugin Add New : Unexpected Error OccuredI contacted the web host support. They change the ip filter… and it works now.. thanks huys
Forum: Fixing WordPress
In reply to: Plugin Add New : Unexpected Error OccuredIt also happens to my other website on wordpress on the same web hosting.
I probably need to contact the webhost support teamForum: Fixing WordPress
In reply to: Plugin Add New : Unexpected Error OccuredI hosted on web hosting.
Its been great for the past 2 years. its just today…Thanks for the reply.
I have done it.??
Forum: Fixing WordPress
In reply to: Lock WordPress Website with LoginThanks for the reply, i will try it now.
Forum: Fixing WordPress
In reply to: Post not showing on Post PageThx Andrew, i have edited css from the child theme that the plugin created.