writerdreamer
Forum Replies Created
-
Hi @ashikurwp, has the fix you made for me been added to the EB plugin yet, such that I can upgrade? Thanks!
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Can’t view any forumsI cannot change the theme as this is an active website for a program that has started this year already.
You can see in the picture forum4.png (same folder as above) that I do have a default forum (indeed our only forum). Do I need to add a shortcode to the forum page? The list of forums shows up, so that shortcode is working, it’s just an empty list.
I realize this is a free plugin, so I know your time is limited. If there’s no easy solution I can switch to bbPress, we were just hoping to use a plugin that played nicer with the Gutenberg editor (as we are using a block editor theme).
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Can’t view any forumsThat’s what I get when I go to the Forums page and click View on the one forum I’ve created. Screenshots: https://1drv.ms/f/s!AuQ_jowW9Bvhp6dEpW4KdiP7lrS2iw?e=NORi4e
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] Can’t view any forumsWarning: include(/home/themightypens/www/www/wp-content/themes/twentytwentythree/index.php): Failed to open stream: No such file or directory in /home/themightypens/www/www/wp-includes/template-loader.php on line 106
Warning: include(): Failed opening ‘/home/themightypens/www/www/wp-content/themes/twentytwentythree/index.php’ for inclusion (include_path=’.:/usr/local/php81/lib/php’) in /home/themightypens/www/www/wp-includes/template-loader.php on line 106Thank you!
Thanks! I did.
Hi! I’ve disabled as many plugins as I can while still keeping the site working, and I’ve cleared the minify CSS cache and the page cache and ctrl-F5 reloaded the page, and there are still the warnings displayed.
if ( isset( $attributes['ref'] ) && ! empty( $attributes['ref'] ) && $item["blockName"] === "core/block" ) { $reusable_block = get_post( $attributes['ref'] ); $reusable_content = parse_blocks( $reusable_block->post_content ); $reusable_blocks = []; $eb_blocks["reusableBlocks"][$attributes['ref']] = self::eb_block_style_recursive( $reusable_content, $reusable_blocks );
This code looks like it’s assuming that get_post ( $attributes[‘ref’] ) will never return null. I have access to the database so I can check the post_content column, but I don’t know what $attributes[‘ref’] is looking for.
Thanks! FWIW I am still seeing the errors even after wpForo was deactivated. That doesn’t mean it might not have created something, but just FYI. Also if there’s a way to suppress those warnings if they’re not causing trouble that would be great! We don’t want to disable Essential Blocks because we use them ??
Thank you! Here is the pastebin info. https://pastebin.com/2x9AeZ1M
I didn’t notice a problem before installing wpForo (and a few others so that might not be the culprit, but it’s the most likely). The problem is that the errors keep displaying even when I removed the EB Post Grid block from the page (and I’d still prefer to use the Post Grid if I can).
Forum: Fixing WordPress
In reply to: “Saving failed” in Site EditorHappy to help @eharris ! I wouldn’t have found the solution without this forum.
Forum: Fixing WordPress
In reply to: “Saving failed” in Site EditorHopefully if enough people complain they will just fix it. ?? I’m glad to help though!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] no way to set root padding to 0pxThanks @abitofmind! I was struggling with that too.
Forum: Fixing WordPress
In reply to: “Saving failed” in Site EditorI tried to disable mod_security on the website that was failing and still wasn’t able to save a new style. I contacted DreamHost support and got this reply:
I reviewed our error logs and noticed multiple ModSecurity records. Those were referring to your IP <x>. I adjusted some ModSecurity rules on the server and ran Apache config to make sure the changes are updated. May I ask you to try editing your website once again?
That worked, and I was able to save, and it seems like I’m now able to save after re-enabling mod_security. I’m not sure if the changes DreamHost made will help everyone or if the rules were specific to my site (although that seems weird?).
Forum: Fixing WordPress
In reply to: “Saving failed” in Site EditorI’m having the same problem. Using DreamHost, I can’t get a style variation to save with that theme.
Forum: Plugins
In reply to: [UsersWP - Social Login] My social Login doesn’t work on register formI noticed that there was an error in this line of template/linking.php:
<p><?php printf( __( "Please enter your username and password of your existing account on our website. Once verified, it will linked to your % ID", 'uwp-social' ), ucfirst( $provider ) ); ?>
The % specifies a format but %I is not valid, which is how it was interpreted. I just deleted the % and it worked.