sproutchris
Forum Replies Created
-
WordPress 6.6.1
PHP 8.2.21Thanks, Steve! Looks like it’s working on this end.
The working solution provided to me from support:
WordPress Admin Page —> Settings —> Anti-Spam by CleanTalk —> Advanced settings —> set the option “Set cookies” to “Store data in the website database (alternative mechanism)” —> Save ChangesSure, I will submit that. Thanks, @katereji.
Forum: Plugins
In reply to: [Clear cache for Timber] doesn’t work with Timber 2.x@kilianso What does your error log say the 500 error is being caused by?
Forum: Plugins
In reply to: [Clear cache for Timber] doesn’t work with Timber 2.xFixed for release 0.2.0.
Forum: Plugins
In reply to: [Clear cache for Timber] doesn’t work with Timber 2.xHere’s a fix that worked for me. In
clear-cache-for-timber.php
, add the new Timber method to theclear_cache_for_timber_clear_cache()
function:function clear_cache_for_timber_clear_cache() { if (class_exists('Timber\Cache\Cleaner')) { return Timber\Cache\Cleaner::clear_cache_twig(); } else if (class_exists('Timber\\Integrations\\Command')) { return \Timber\Integrations\Command::clear_cache(); } else { return TimberCommand::clear_cache(); } }
I believe this works:
SELECT ID as post_id, COUNT(ID) AS total_authors FROM wp_posts JOIN wp_term_relationships ON wp_posts.ID = wp_term_relationships.object_id JOIN wp_terms on wp_term_relationships.term_taxonomy_id = wp_terms.term_id WHERE post_status='publish' AND wp_terms.slug LIKE 'cap-%' GROUP BY post_id
To narrow down the posts with multiple authors, you can add
HAVING total_authors > 1
at the end of the query.Thanks!
Forum: Plugins
In reply to: [Network Posts Extended] error in switching posts list dynamicallyThat worked. Thanks, @johnzenausa!
Forum: Fixing WordPress
In reply to: Unable to upload imagesRan wp-cli command
wp cache flush
and that solved my issue.Forum: Plugins
In reply to: [WP Responsive Menu] Error: Constant MG_WPRM_BASE_NAME already definedMuch appreciated for the plugin fix, @kshirod-patel @sagarseth9! Have a wonderful day.
Forum: Plugins
In reply to: [WP Responsive Menu] Error: Constant MG_WPRM_BASE_NAME already definedExperiencing same error. Using Divi theme 3.19.7, WP 5.0.3, PHP 7.2. I also get these errors on the frontend:
Undefined variable: before_menu_header - wp-content/plugins/wp-responsive-menu/inc/wprmclass.php:426 Undefined variable: before_menu_elements - wp-content/plugins/wp-responsive-menu/inc/wprmclass.php:464 Undefined variable: after_menu_element - wp-content/plugins/wp-responsive-menu/inc/wprmclass.php:522 Undefined variable: after_menu_header - wp-content/plugins/wp-responsive-menu/inc/wprmclass.php:533
Forum: Plugins
In reply to: [The Events Calendar] Bug in 4.6.22 when adding/editing events in WP backendThanks for the note, @erishel. I think this bug was already squashed in the 4.6.22.1 release according to: https://www.ads-software.com/support/topic/existing-even-organizers-and-venues-not-showing-correctly-when-adding-new-event/#post-10630476
That thread was started after this one (they must not have seen this one or something) so the multiple threads are a little confusing.
- This reply was modified 6 years, 6 months ago by sproutchris.
Thanks; I replaced the code in super_socializer.php with version you provided and the behavior is unfortunately the same.