Title: tasker204's Replies | WordPress.org

---

# tasker204

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

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

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Split, Merge, and Replace events on RichText Component](https://wordpress.org/support/topic/split-merge-and-replace-events-on-richtext-component/)
 *  Thread Starter [tasker204](https://wordpress.org/support/users/tasker204/)
 * (@tasker204)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/split-merge-and-replace-events-on-richtext-component/#post-11646933)
 * Thanks Ella [@iseulde](https://wordpress.org/support/users/iseulde/), but unfortunately
   I have read through all of that before I posted here, and it was not much help.
 * Looking at the core/paragraph block code, it seems all the onSplit function is
   doing is creating a new block and returning it. when I do that nothing is happening,
   nor am I getting any errors.
 * I also wanted to point out that in the core/paragraph code, as well as the documentation,
   the onSplit function is stated to only receive one argument that is meant to 
   be the chunk of content that is being split into the new block. In actuality 
   this function receives two arguments, the first is the content before the cursor,
   and the second is the content after the cursor. But regardless, I am unable to
   actually split the content, as when I return the newly created block nothing 
   is happening.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Image Generator] PHP Deprecated: Imagick::flattenImages](https://wordpress.org/support/topic/php-deprecated-imagickflattenimages/)
 *  Thread Starter [tasker204](https://wordpress.org/support/users/tasker204/)
 * (@tasker204)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/php-deprecated-imagickflattenimages/#post-7182617)
 * Fixed the issue…
 * replaced line 210 of pdf-image-generator.php
 *     ```
       $imagick = $imagick->flattenImages();
       ```
   
 * with
 *     ```
       $imagick->setImageAlphaChannel(imagick::ALPHACHANNEL_REMOVE);
       $imagick->mergeImageLayers(imagick::LAYERMETHOD_FLATTEN);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TinyPNG - JPEG, PNG & WebP image compression] API connection unsuccessful](https://wordpress.org/support/topic/api-connection-unsuccessful/)
 *  Thread Starter [tasker204](https://wordpress.org/support/users/tasker204/)
 * (@tasker204)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/api-connection-unsuccessful/#post-6097822)
 * Unfortunately I was not getting any error messages.
 * I think I realized what was happening though. I was testing this on my staging
   server which is protected by HTTP AUTH.
 * When I tried on my my production server, everything was fine.
 * Thanks

Viewing 3 replies - 1 through 3 (of 3 total)