tomas.k.7
Forum Replies Created
-
Plugin author uses “new” arrays declaration such as “$array = [];”… in files config.php and analytics.php. This is not supported in PHP 5.3 and older.
Is it possible, for backward compatibility, to use former syntax (“$array = array();”) instead? I had to change it manually after upgrade 🙁
Thanks
Forum: Plugins
In reply to: [Related Posts for WordPress] Arrays declarationmy mistake – wrong plugin, apologies.
correct one is https://wordpress.org/support/plugin/wordpress-23-related-posts-plugin
Forum: Plugins
In reply to: [Rich Text Tags] non-breakable space issuecore issue (from wp-includes/formatting.php::function wp_htmledit_pre($output)):
var_dump(htmlspecialchars(html_entity_decode(‘A& nbsp ;A’), ENT_NOQUOTES, ‘UTF-8’ )); // –> string(0) “”
Forum: Plugins
In reply to: [WordPress Related Posts] Virtual "page" -> fail to load pageresolved -> it was combination of two plugins… the sexond one had:
include( ABSPATH . ‘wp-admin/includes/image.php’ );
instead of
include_once( ABSPATH . ‘wp-admin/includes/image.php’ );
Forum: Plugins
In reply to: [Rich Text Tags] Editor goes blank after a few repeated editsI found out, this is caused by whitespaces in the beginning/at the end of the text…
you can modify wp_term_taxonomy.description field for for affected term, remove characters like \n, \r, & nbsp ; (without spaces) , \t etc. from the beginning and ending of the database field… (a lot faster way to fix if you have access to phpmyadmin/any other db admin tool)
of course, it would be nice, if author could fix the plugin 🙂