tasker204
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Split, Merge, and Replace events on RichText ComponentThanks Ella @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
In reply to: [PDF Image Generator] PHP Deprecated: Imagick::flattenImagesFixed 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
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] API connection unsuccessfulUnfortunately 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