alberstein
Forum Replies Created
-
Even with line 218 of API.php updated I’m still getting the error from OP. I’ve disabled Monsterinsights and as above, the error resolves.
BTW I’m running WP v4.7.1, Woocommerce v2.6.13, and YITH Deposits plugin v1.0.4.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Month Views without empty daysThanks Ben!
I’m looking more for documentation as to what twig variables are available in Timely. It seems Timely encourages creating child themes but the instructions on the site seem to be just the start of the process. (https://time.ly/document/user-guide/customize-calendar/create-new-calendar-theme/).Tried deleting uninstall.php from core plugin, in order to save my events. Uninstalled and reinstalled and problem persisted. Then I compared DB entries of working install vs non working and discovered some entries that needed to be cleaned up in the non-working install.
My solution was to keep and use uninstall.php, but I edited it to remove lines pertaining to removing post and drop tables, and removed a line a little further down regarding cleaning up tables:
uninstall.php @ Line 77: remove
/** * Deletes posts and drop tables */ function ai1ec_clean_up_tables() { global $wpdb; // Delete events $table_name = $wpdb->prefix . 'ai1ec_events'; $query = 'SELECT DISTINCT <code>ID</code> FROM‘ . $wpdb->posts .
‘WHEREpost_type` = \’ai1ec_event\”;
foreach ( $wpdb->get_col( $query ) as $postid ) {
wp_delete_post( (int) $postid, true );
}// Delete table events
ai1ec_delete_table_and_backup( $table_name );// Delete table event instances
$table_name = $wpdb->prefix . ‘ai1ec_event_instances’;
ai1ec_delete_table_and_backup( $table_name );// Delete table event feeds
$table_name = $wpdb->prefix . ‘ai1ec_event_feeds’;
ai1ec_delete_table_and_backup( $table_name );// Delete table category colors
$table_name = $wpdb->prefix . ‘ai1ec_event_category_meta’;
ai1ec_delete_table_and_backup( $table_name );// Delete legacy logging table
$table_name = $wpdb->prefix . ‘ai1ec_logging’;
ai1ec_delete_table_and_backup( $table_name );
}Then find and editfunction ai1ec_clean_up_site() {
// Delete event categories taxonomy
ai1ec_remove_taxonomy( ‘events_categories’ );
// Delete event tags taxonomy
ai1ec_remove_taxonomy( ‘events_tags’ );
// Delete custom user roles and capabilities
ai1ec_remove_custom_user_roles_capabilities();
// Delete custom user meta
ai1ec_remove_custom_user_meta();
ai1ec_uninstall_crons();
ai1ec_uninstall_options();
ai1ec_clean_up_tables(); <— delete this line
}`to:
function ai1ec_clean_up_site() { // Delete event categories taxonomy ai1ec_remove_taxonomy( 'events_categories' ); // Delete event tags taxonomy ai1ec_remove_taxonomy( 'events_tags' ); // Delete custom user roles and capabilities ai1ec_remove_custom_user_roles_capabilities(); // Delete custom user meta ai1ec_remove_custom_user_meta(); ai1ec_uninstall_crons(); ai1ec_uninstall_options(); }This will preserve your events and remove everything else.
Hi, I tried to reinstall the addon. Still haven’t gotten the settings for posterboard to appear.
I know I’m not the first person to have this problem. What causes this and fixes it?
I did. Did this for core too. Deactivated, deleted, redownloaded, reinstalled. Same result.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Posterboard as in example@bsokic It’s the same topic, was +1ing it. I’ll wait to see how @cshaffstall get it working. Thanks!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Posterboard as in exampleSame problem here, one of my sites is working fine, the other doesn’t show the posterboard styles dropdown.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Event feeds & Time.ly network sign-inSame here, says (once signed into timely) that I don’t have a subscription.
I’ve been using Timely for a few years!
Emailed data@time.ly with my calendar URL.Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Event feeds & Time.ly network sign-inCalvin, why not publicly answer the question, what’s the meaning of
“
Please upgrade here to a plan that supports “Import Feeds”.
“
If you don’t charge for feeds? Doesn’t make sense, right?+1 as well!
I also see that the password is not stored in sql with an MD5 hash. What up with that?!