dimaggio
Forum Replies Created
-
Seriously, still not fixed after 4 months?
Never mind, I found a solution
function unset_meta_column( $columns ) { unset($columns['page-meta-robots']); return $columns; } add_filter( 'manage_edit-post_columns', 'unset_meta_column', 10, 1 ); add_filter( 'manage_edit-page_columns', 'unset_meta_column', 10, 1 );
Ok now I feel stupid, I just realized I can disable it from “Panel options”. But I’d still be interested to know if there’s an option to disable it globally? Maybe through a filter?
Find line 679 and replace
setlocale(LC_ALL, get_locale());
withsetlocale(LC_ALL, get_locale().'.UTF8');
(Doesn’t work in windows)You can also use
utf8_encode()
on each individual dateForum: Plugins
In reply to: [Simple Events Calendar] [Plugin: Simple Events Calendar] No admin panelI have the same issue on wp 3.2.1
You’re awesome ??
And please make it so the schedule doesn’t get reset with the next update. I have quite a complex scheme ??
Thanks for this great plugin!
Ok, i found the error. You are trying to include the file s3.php but it’s actually named S3.php (captial S)
So change line 618 in /backwpup/app/functions.php from
require_once(plugin_dir_path(__FILE__).'libs/s3.php');
to
require_once(plugin_dir_path(__FILE__).'libs/S3.php');
Forum: Plugins
In reply to: [Plugin: WP-TTFGen] Why jQuery?That’s not very SEO-friendly if you eg want Google to be able to index your headlines. jQuery generates the images after the page’s loaded, so your solution should be avoided.
Forum: Plugins
In reply to: [Plugin: WordPress.com Stats] WP-Stats: Error from last API Key attemptI’m getting the same error. Pretty stupid error message, “you must contact support”, since I’m the admin and host owner. What support? WordPress.com?
Forum: Plugins
In reply to: Keeping array over multiple instances of the same widgetAny suggestions at all on what could cause this would be very appreciated. Thanks!