Rick
Forum Replies Created
-
I was just going to report this and see that it was already reported ?? My client also had images that were now on their own line instead of inline. Headers were different sizes, actually most fonts were different sizes. The plus add content block wasn’t showing up at times. Most of all though my client was complaining that the editor was all screwed up. After some troubleshooting I found that it was due to the new version of the plugin. Once I reverted to the .1 release instead of .2 then everything was back to normal.
Forum: Plugins
In reply to: [WP Fastest Cache] Not cachingOh strange, I was logged out when I checked and it wasn’t showing compressed. I just tried a different web browser and I do see it compressed there… strange. Ok thank you!
Ok thank you, hopefully you don’t break it any time soon then ??
Ok I was able to find another helper class that.. well.. helped, but I was hoping to use just MailPoet functions/classes to pull the data instead of $wpdb, but I couldn’t figure it out:
global $wpdb; $newsletter = $wpdb->get_results("SELECT id, hash from ". MP_NEWSLETTERS_TABLE ." WHERE status = 'sent' ORDER BY sent_at DESC LIMIT 1"); if (!empty($newsletter)) { $data = [$newsletter[0]->id, $newsletter[0]->hash]; $previewURL = Router::buildRequest( ViewInBrowserEndpoint::ENDPOINT, ViewInBrowserEndpoint::ACTION_VIEW, $data ); return $previewURL; }
- This reply was modified 3 years, 8 months ago by Rick.
Forum: Plugins
In reply to: [PrestaShop Integration] Revslider issuesOk thank you, that worked! Although I can’t see any changes on the blog at least it’s not getting all the errors ??
Forum: Plugins
In reply to: [PrestaShop Integration] Revslider issuesTrying to modify the revslider plugin will take a whole lot of renaming dozens of function names, so is there a way to tell the WP plugin that when loading all the Prestashop assets that it skips loading the revslider module?
Forum: Fixing WordPress
In reply to: Something causing crippling CPU spikeYeah it’s not the problem Im having. Everything on the server is fine about a load of 2 and then as soon as I paste in lots of tags, the server will spawn a massive number of requests, mysql will die and then the server dies. So yeah mine is definitely tag related. Now I just need to find out if it’s due to a plugin, although Im not looking forward to potentially causing my server to go down again ??
Forum: Fixing WordPress
In reply to: Something causing crippling CPU spikeFor some reason I need to be on PHP 7.2 otherwise the site goes down.. but yeah same issue, complete crash of the server when adding lots of tags at once. I basically copy a comma separated list and then paste in the tags and it spawns a whole bunch of tasks and bam server goes down.
Forum: Plugins
In reply to: [WooCommerce] Grouped Product not working after WC 4.0 updateAwesome, thank you @aovivo ! Mod added and it’s working, thank you.
Forum: Plugins
In reply to: [WooCommerce] Grouped Product not working after WC 4.0 updateMy client is having this problem also and they are using the same theme ENFOLD as the OP so it’s possible that could be the issue. Im going to look into it now, but thought I would Google for a fix and that’s how I found this thread.
Forum: Plugins
In reply to: [Easy Table of Contents] Removing the plugin after generating the table?Im not the developer, but No, it pulls your page content and creates the table of content on the fly, plus it uses styles from the plugin to display the TOC.
No nothing like that, it just adds a div around the content:
[box]This is the shortcode[/box]
<div class="box shortcode-box">This is the parsed shortcode</div>
So if the content is this:
[box]This is the shortcode Yep this is what it is.[/box]
Then it renders as this:
<p><div class="box shortcode-box">This is the shortcode</p> <p>Yep this is what it is.</div></p>
Which isn’t nested correctly.. this is my running theory at this point ??
It’s a theme specific shortcode, but here you go:
[box]Just a whole bunch of stuff[/box]
Now I think I might see the problem and it might not be a row layout issue. I looked at the code and there will be improperly nested code:
<div kadence inner column><p>[box]Just a whole bunch of stuff</p><p>another test[/box]</p></div>
so basically parsed
<div kadence inner-col><p><div box>whole bunch of stuff</p><p>more stuff</div></p></div>
So hmm.. yeah it looks like it’s not going to like this at all… and from what I can tell it’s a theme shortcode issue not really made for this new version of WordPress. I was converting the page to use blocks, which was fine and then row layout is just what highlighted that there was an issue.. Im not going to close this issue as resolved since there are other people having similar problems.. might even be the same.. Ill continue monitoring though ??
What is the proper way of using a shortcode, especially one that has a start and end block, like [box][/box] with HTML and formatting in between that shortcode? The regular shortcode block doesn’t allow for formatting and if the classic block and the row layout is having issues with it.. how do you get around it?
Forum: Plugins
In reply to: [WooCommerce] Product files, breaks when it’s an external URLThanks you guys! I added the filter and things are working so far. I had tried using the WordPress filters/mime types, but that wasn’t working, so thanks for the heads up on that! Ill follow that github thread also ?? Thanks!