Title: ecclescake's Replies | WordPress.org

---

# ecclescake

  [  ](https://wordpress.org/support/users/ecclescake/)

 *   [Profile](https://wordpress.org/support/users/ecclescake/)
 *   [Topics Started](https://wordpress.org/support/users/ecclescake/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ecclescake/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ecclescake/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ecclescake/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ecclescake/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ecclescake/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 38 total)

1 [2](https://wordpress.org/support/users/ecclescake/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ecclescake/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ecclescake/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] String translation not working](https://wordpress.org/support/topic/string-translation-not-working-9/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/string-translation-not-working-9/#post-18948298)
 * 🤦‍♀️ Thanks for the response, I didn’t realize that. I’m new to this plugin 
   but it’s working well so far. Thanks again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cooked - Recipe Management] Hyphens stripped from ingredient amounts](https://wordpress.org/support/topic/hyphens-stripped-from-ingredient-amounts/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [9 months, 4 weeks ago](https://wordpress.org/support/topic/hyphens-stripped-from-ingredient-amounts/#post-18684197)
 * I see, that makes sense. I think your workaround will be okay. Thank you for 
   the quick response and explanation!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Volunteer Sign Up Sheets] New signup sheets not displaying in widget or list](https://wordpress.org/support/topic/new-signup-sheets-not-displaying-in-widget-or-list/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/new-signup-sheets-not-displaying-in-widget-or-list/#post-18017997)
 * You know, I think caching was it. I force-refreshed multiple times to no avail.
   This site is on SiteGround, which I haven’t worked with in several years. I’ll
   go read up on their caching setup.
 * Thanks so much for the response!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Can’t programmatically add category to event in plugin](https://wordpress.org/support/topic/cant-programmatically-add-category-to-event-in-plugin/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/cant-programmatically-add-category-to-event-in-plugin/#post-17555047)
 * Thanks for the additional info, Darian. I’m not using a custom REST endpoint 
   and don’t want to set one up just to handle event categorization. My code simply
   runs in a plugin rather than in a theme. (Another commenter on this thread is
   using the custom endpoint.)
 * Please consider allowing event categorization from plugin code. WordPress best
   practices suggest that functionality code like event creation be handled in a
   plugin rather than the theme, so this is a very common occurrence. I think there
   are a lot of developers who won’t want to deal with switching over to REST endpoint
   setup/configuration and just want to continue to be able to do basic event creation
   tasks in their plugins like always.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Can’t programmatically add category to event in plugin](https://wordpress.org/support/topic/cant-programmatically-add-category-to-event-in-plugin/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/cant-programmatically-add-category-to-event-in-plugin/#post-17515869)
 * My event creation is triggered by cron. Here is the relevant portion of my reduced
   test-case code that doesn’t work:
 *     ```wp-block-code
       /**
         * Check whether it's time to create this
         * year's calendar.
         *
         * @return void
         */
       public static function cron_test() {
         $next_execution = get_option( 'prefix_next_execution' );
         if ( ( time() >= $next_execution ) && ( gmdate( 'm' ) >= '3' ) ) {
           self::test_create_event();
           self::set_next_execution_time( strtotime( '+1 year' ) );
         }
       }
   
       /**
         * TEST event creation.
         */
       public static function test_create_event() {
         $args = array(
           'post_title'   => 'Test Event',
           'post_content' => 'Test description',
           'post_status'  => 'publish',
           'venue'        => 61,
           'show_map'     => true,
           'start_date'   => gmdate( 'Y-m-d H:i:s' ),
           'end_date'     => gmdate( 'Y-m-d H:i:s', strtotime( '+2 hours' ) ),
           'category' => array( 9 ),
         );
   
         $result = tribe_events()->set_args( $args )->create();
       }
       ```
   
 * The cron_test() function is added to a daily cron schedule by my plugin’s Loader
   class, via:
 *     ```wp-block-code
       add_action( 'prefix_cron_hook', $plugin_instance, 'cron_test' );
       ```
   
 * The event is created with proper time, venue, etc, but no category gets added.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cookiebot by Usercentrics - Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode] Still loading GA4 & Maps prior to consent given (autoblocking mode)](https://wordpress.org/support/topic/still-loading-ga4-maps-prior-to-consent-given-autoblocking-mode/)
 *  [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/still-loading-ga4-maps-prior-to-consent-given-autoblocking-mode/#post-16750020)
 * I came here searching for this issue because I’m experiencing it too. I’m using
   the Cookiebot plugin to load GTM and it is enqueuing the GTM script before its
   own consent code, thereby going against its own setup recommendations. Is this
   a bug?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[List Petfinder Pets] Filtered shortcode returning all pets](https://wordpress.org/support/topic/filtered-shortcode-returning-all-pets/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/filtered-shortcode-returning-all-pets/#post-16014256)
 * 🤦‍♀️ Oy vey, I didn’t realize it was case-sensitive! I swear it worked lowercase
   before 🙂
 * Capitalizing the animal type is working great; thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[List Petfinder Pets] Filtered shortcode returning all pets](https://wordpress.org/support/topic/filtered-shortcode-returning-all-pets/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/filtered-shortcode-returning-all-pets/#post-16014122)
 * Sure, our ID is CA522. Thanks for looking into this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Tax (formerly WooCommerce Shipping & Tax)] USPS not available to add as shipping method](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/#post-10817355)
 * Thanks for the response. I did create a ticket, and was told that even though
   we’ve been *trying* to get this method to work since before 10/23, since we weren’t
   able to *actually* get it to work in time, we’re SOL and must buy the USPS extension.
   We don’t seem to have any recourse, so :shrug: …I guess we’re a captive audience
   since we need to offer USPS shipping rates.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Tax (formerly WooCommerce Shipping & Tax)] USPS not available to add as shipping method](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/#post-10816753)
 * Oh wow, so just to be clear: we’ve been trying to get this working since before
   10/23, but since support wasn’t able to resolve this before then, we now must
   buy the USPS shipping rates extension? Was there another (faster) avenue of support
   that I should have utilized? Are the WooCommerce Services shipping rates going
   to be phased out soon anyway?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Tax (formerly WooCommerce Shipping & Tax)] USPS not available to add as shipping method](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/usps-not-available-to-add-as-shipping-method/#post-10809343)
 * We’ve tried that and still don’t have USPS shipping as an option to add to our
   zone. We just have Flat Rate, Free Shipping, Local Pickup, and UPS. I’ve got 
   no errors in the log or in WC system status, either. Would love to get this resolved…
   this is one of our last steps before testing + launching! Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cooked - Recipe Management] Pagination gives 404 not found error](https://wordpress.org/support/topic/pagination-gives-404-not-found-error/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/pagination-gives-404-not-found-error/#post-9940625)
 * I submitted a bug report this morning. Thanks for looking into this!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Share Buttons Plugin – AddThis] Lost share counts](https://wordpress.org/support/topic/lost-share-counts-2/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/lost-share-counts-2/#post-9816338)
 * It looks like this is caused by a change in how Facebook’s JSSDK calculates likes.
   The AddThis team was very helpful via email, but we were unable to solve this
   problem with them. We’ve switched to a different sharing plugin and have our 
   share counts back.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Share Buttons Plugin – AddThis] Lost share counts](https://wordpress.org/support/topic/lost-share-counts-2/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/lost-share-counts-2/#post-9754524)
 * Hi Leland, any updates? Any followup? Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Share Buttons Plugin – AddThis] Lost share counts](https://wordpress.org/support/topic/lost-share-counts-2/)
 *  Thread Starter [ecclescake](https://wordpress.org/support/users/ecclescake/)
 * (@ecclescake)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/lost-share-counts-2/#post-9744566)
 * Sure, you can see a share count of zero on the following post: [https://wineoh.tv/livermore-valley-wine-tours-wine-tasting-video](https://wineoh.tv/livermore-valley-wine-tours-wine-tasting-video)
 * It should be more than 400, as you can see here: [http://graph.facebook.com/http://wineoh.tv/livermore-valley-wine-tours-wine-tasting-video](http://graph.facebook.com/http://wineoh.tv/livermore-valley-wine-tours-wine-tasting-video)
 * You should be able to view source of the above blog post and see where I’m setting
   the share URL in the addthis_share variable, but the share button isn’t picking
   that up. I’ve tried all the methods listed in the article on your website, but
   none of them seem to work anymore.
 * Thanks.

Viewing 15 replies - 1 through 15 (of 38 total)

1 [2](https://wordpress.org/support/users/ecclescake/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ecclescake/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ecclescake/replies/page/2/?output_format=md)