Title: BeyondWords (formerly SpeechKit)'s Replies - page 3 | WordPress.org

---

# BeyondWords (formerly SpeechKit)

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

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

 Search replies:

## Forum Replies Created

Viewing 9 replies - 31 through 39 (of 39 total)

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[BeyondWords - Text-to-Speech] Upload mp3 file not working](https://wordpress.org/support/topic/upload-mp3-file-not-working/)
 *  Plugin Author [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/upload-mp3-file-not-working/#post-11227162)
 * Hi J,
 * We’re very sorry to hear that you have been trying to get in contact with us!
 * We’ll get onto this issue right away. May I just get some more details from you?
 * I am right in thinking you are trying to distribute an audio file through the
   SpeechKit app, using the “recorded audio” option in the app?
 * If you could also let me know your SpeechKit username, I can investigate this
   for you right away.
 * Thanks!
 * James
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BeyondWords - Text-to-Speech] GDPR](https://wordpress.org/support/topic/gdpr-166/)
 *  Plugin Author [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/gdpr-166/#post-11007443)
 * Hello Anna,
 * yes, our plugin is gdpr-comliant. We don’t save or process any user data on our
   side.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BeyondWords - Text-to-Speech] Partial error](https://wordpress.org/support/topic/partial-error/)
 *  Plugin Author [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/partial-error/#post-11002985)
 * Hello Louis,
 * sorry for delay answering. That issue was fixed in version 2.4.2.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BeyondWords - Text-to-Speech] High Database Usage](https://wordpress.org/support/topic/high-database-usage/)
 *  Plugin Author [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/high-database-usage/#post-11002873)
 * Hello [@mrjeffpaul](https://wordpress.org/support/users/mrjeffpaul/),
 * that is strange.
 * Do you have such a behaviour only during plugin upgrade/activation?
    Or that 
   is something that happens all the time at every page load?
 * Do you use any caching plugins?
 * Could you please submit a support request from the plugins page ( /wp-admin/options-
   general.php?page=speechkit )?
    This will provide us some technical details, that
   could help identify this issue faster.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BeyondWords - Text-to-Speech] First phrase is repeating itself twice](https://wordpress.org/support/topic/player-doesnt-show-up-4/)
 *  Plugin Author [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/player-doesnt-show-up-4/#post-11002688)
 * Hello justatest47,
 * could you please give a link to the post with duplicate phrase?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Plugin author trying to purge cache for specific post](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/)
 *  Thread Starter [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/#post-9273772)
 * Awesome,
 * Thanks for the heads up. I’ve now added:
 *     ```
       if (function_exists('litespeed_purge_single_post')) {
         litespeed_purge_single_post($post_id);
       } else if (class_exists('LiteSpeed_Cache')) {
         LiteSpeed_Cache::get_instance()->purge_single_post($post_id);
       }
       ```
   
 * Which I’m hoping will take care of versions below and above 1.2
    -  This reply was modified 8 years, 11 months ago by [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Plugin author trying to purge cache for specific post](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/)
 *  Thread Starter [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/#post-9262490)
 * I just tried out:
 *     ```
       if (class_exists('LiteSpeed_Cache')) {
           LiteSpeed_Cache::get_instance()->purge_single_post($post_id);
       }
       ```
   
 * And it worked!
 * What is confusing about this is that I couldn’t find a method named `get_instance`
   on the `LiteSpeed_Cache` class.
 * Thank you for all your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Plugin author trying to purge cache for specific post](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/)
 *  Thread Starter [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/#post-9262027)
 * I did indeed use it as a global function. It makes more sense that it’s name 
   spaced under the LiteSpeed_Cache plugin. What seems to have worked with the w3tc
   plugin is doing something similar but calling a public function named `w3tc_flush_post`,
   so I assumed this would be similar.
 * I will try the second recommendation you had as well and report back.
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Plugin author trying to purge cache for specific post](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/)
 *  Thread Starter [BeyondWords (formerly SpeechKit)](https://wordpress.org/support/users/speechkit/)
 * (@speechkit)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-author-trying-to-purge-cache-for-specific-post/#post-9262009)
 * Kevin,
 * Thanks for your swift reply. The plugin has 2 flows into purging the cache, one
   would be through WPs cron loop and the other is on an ajax call made manually
   from a user by pressing a button in the admin panel.
 * By calling the `add_purge_tag` will it be “queued” for the next request? Having
   some trouble understanding how this is suppose to work with the cron job.
 * I will try what you recommended to see if it helps and report back here.

Viewing 9 replies - 31 through 39 (of 39 total)

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