sebuser
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] SQL dump incompleteI switched on DEBUG and made an export, which again created the too small sqldump. Nothing meaningful in the debug logs.
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] SQL dump incompleteSure, here are the relevant bits from the diagnostic file:
Web Server: ………………… Apache
PHP: ………………………. 8.2.24
WP Memory Limit: ……………. 256M
PHP Time Limit: …………….. 120WP Max Upload Size: 256 MB
PHP Post Max Size: 256 MBMedia Uploads
Transfer Bottleneck: …… 256 MB
Upload Folder Permissions: 755Themes & Plugins
Transfer Bottleneck: ……… 256 MB
Themes Permissions: ………. 755
Plugins Permissions: ……… 755
Must-Use Plugins Permissions: 755
WP-Content Permissions: …… 755
WP-Core Permissions: ……… 755
WPMDB Bottleneck: …… 1 MB
Compatibility Mode: …. No
Delay Between Requests: 0Forum: Plugins
In reply to: [Carousel Slider Block for Gutenberg] Latest update broke carouselThanks @virgildia! I can confirm it works now
Forum: Plugins
In reply to: [Carousel Slider Block for Gutenberg] Latest update broke carouselDowngrading to 1.10 fixed it, to 1.11 not. So 1.11 was the breaking change for me
Forum: Plugins
In reply to: [Contact Form 7] Custom shortcodes not working anymoreI assume this is related to this issue with WP 6.2.1: https://core.trac.wordpress.org/ticket/58333
Unfortunately, the fix in WP 6.2.2 seems not have fixed the issue for CF7 though.Forum: Plugins
In reply to: [Contact Form 7] Custom shortcodes not working anymoreMore info: This is related to the WP version. It’s still working at 6.2, but starts breaking from 6.2.1 onwards
Forum: Plugins
In reply to: [Contact Form 7] Custom shortcodes not working anymoreMore info: I’ve deactivated all other plugins, the error still persists. So this seems to be caused by Contact Form 7 on its own. I’ve also added a very simple shortcode to test whether it’s about my specific shortcode, but this one also didn’t work with a CF7 form
Forum: Fixing WordPress
In reply to: Full site editor: Templates created new rather than updatedLeaving this here in case someone has the same issue:
This bug was caused by a change I had made to the functions.php file of my child template. To remove blog posts from being shown by query loops on their own page (we show other blog posts underneath a blog post by using the full site editor’s query loop block, but this annoyingly cannot be modified to skip the post on which site it appears), I had used this hack:function exclude_current_post( $query ) {
$current_post = get_the_ID();
$query->set( ‘post__not_in’, array( $current_post ) );
}add_action( ‘pre_get_posts’, ‘exclude_current_post’ );
Commenting this out resolved the issue. I didn’t dig into the WP code too deeply, but you can see here that when making changes to a post it checks whether it’s an update or not and creates a new post in the latter case. I presume that since my code removed a post from the get_posts query, the WP code ended up assuming that no post (i.e., template) already exists and hence created a new one.
- This reply was modified 3 years ago by sebuser.
Forum: Fixing WordPress
In reply to: Full site editor: Templates created new rather than updatedThanks for the reply!
Not very comfortable with putting a video of our admin panel on the internet, but happy to describe the steps in more details:
– Go on “Design”
– Go on “Website Editor”
– Click “Templates”
– Click “404”
– Remove a paragraph from the default “404” page and Save –> The 404 page was successfully updated, the paragraph is gone
– Edit the 404 page again: For example, remove the search block from the 404 page and Save –> Now a new template has been created, with the new changes. The original template looks like it looked initially.
List of templates before:
https://drive.google.com/file/d/1KkvuR5yA-kqvOnfK4o_D_otg9jI8QYTJ/view?usp=sharingList of templates after:
https://drive.google.com/file/d/1KfoIHVqvBNdEcbvdVGN7fui_pU4mcJOR/view?usp=sharing