threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broken internal links, used to work fineTwo approaches:
- Go to Settings > Permalinks in the backend and save the settings without making any changes. Does that work?
- Otherwise, I would also recommend either deactivating your caching plugin, W3 Total Cache, or clearing its cache.
Forum: Fixing WordPress
In reply to: WordPress Failover KB Article/Documentation.Setting up a failover system is primarily the responsibility of the hosting provider, who supplies the resources needed to run websites. I’m not sure if WordPress requires any specific settings for this – actually, it doesn’t. That’s why you probably won’t find any instructions on the subject. I’d recommend contacting your hosting provider’s support team first, since they’re the ones who should be providing the failover system.
If you’re looking for documentation, you can usually find it here: https://make.ww.wp.xz.cn/docs/handbook/
The team of volunteers who maintain it can be found here: https://make.ww.wp.xz.cn/docs/
Forum: Fixing WordPress
In reply to: Database migration form mariadb to PostgreSQL DB.WordPress is only compatible with MariaDB or MySQL. It is not compatible with PostgreSQL. Therefore, nobody can provide any instructions for this.
The last person who tried this had already asked about it here: https://ww.wp.xz.cn/support/topic/configuring-wordpress-with-postgresql/
See also: https://ww.wp.xz.cn/about/requirements/
Forum: Fixing WordPress
In reply to: Possible to open Dashboard, All Pages, mypage in a new tab?What you’re looking for isn’t available as an option in WordPress. But you can customize the link using a PHP hook. Here’s how to do it:
add_filter('page_row_actions', 'open_edit_link_in_new_tab', 10, 2);
function open_edit_link_in_new_tab( $actions, $post ): array {
// bail if this is not a page.
if( $post->post_type !== 'page' ) {
return $actions;
}
$actions['edit'] = str_replace('aria-label=', 'target="_blank" aria-label=', $actions['edit'] );
return $actions;
}You’ll need to add this code to the functions.php file of your child theme or use a code snippet plugin to insert it into your project.
By the way: I use my middle mouse button for this. It always opens everything in new tabs whenever I click it 🙂
Forum: Fixing WordPress
In reply to: Wrong WordPress domain in notification emailsAre you sure the messages are coming from the current domain? It looks like there’s still a website on the old domain. If there’s a WordPress site there, the emails might actually be coming from there.
Forum: Fixing WordPress
In reply to: Color Plugin , Theme – Light & Dark & SnappyThat’s a lot of questions; I’ll try to go through them.
A theme called Snappy is no longer available in the repository on ww.wp.xz.cn. Although its support forum is still there, it appears to be inactive. It also seems quite old, which is why I suspect it isn’t compatible with the current version of WordPress. So you’ll need to find a different, more up-to-date theme.
You can definitely customize the backend using various plugins:
https://ww.wp.xz.cn/plugins/my-wp/
https://ww.wp.xz.cn/plugins/wp-custom-admin-interface/
https://ww.wp.xz.cn/plugins/customize-admin/
https://ww.wp.xz.cn/plugins/add-admin-css/
https://ww.wp.xz.cn/plugins/white-label/The options you have for customizing colors in a theme actually depend heavily on the theme itself. There is no plugin that can generally expand these options. With modern block themes like TwentyTwentyFive, you also have complete freedom when it comes to such settings. So you’ll need to choose a theme that offers the options you’re looking for.
Forum: Fixing WordPress
In reply to: Fixing Broken Links in ThemesThe theme you’re using is primarily responsible for how the frontend is displayed. When I look at your site, however, I don’t see any issues. All links are working. Which one are you referring to exactly?
Forum: Fixing WordPress
In reply to: images no longer displaying correctly since update to 6.9.4Based on your description, the issue seems to be related to the commercial Virtue theme. Unfortunately, we can’t help you with that here in the forum. I would recommend contacting their support team: https://www.kadencewp.com/help-center/premium-support/
Forum: Fixing WordPress
In reply to: Media file not uploadingWhat does the error log say?
Forum: Fixing WordPress
In reply to: Migating & “Under Construction” pageUnfortunately, there’s no one-size-fits-all answer to whether the scenario you described will cause problems. It depends primarily on how you migrate the pages – some methods literally overwrite everything in the destination system, so it doesn’t matter at all which plugins you already have there. However, if the new content is actually added without overwriting existing content, it depends heavily on exactly what is being migrated. If there are plugins that aren’t compatible with each other, error messages may occur. But given all the conditions that need to be met, there’s no one-size-fits-all answer. Just give it a try.
Forum: Fixing WordPress
In reply to: Critical error – can’t edit or anythingThe reason for the error should be visible in the error log. You can find it in your hosting area. If necessary, the support of your hosting can help you.
Alternatively, you could also enable debugging in WordPress. How to do this is described here: https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/ – also here the support of your hosting can help you if necessary to edit the file accordingly.
In both cases you should be able to see what the cause is in the logfile.
Forum: Fixing WordPress
In reply to: Media file not uploadingI suspect this is either a server-side error or a saving issue caused by a plugin you’re using. The fact that the problem only occurs with PDFs narrows it down significantly. WordPress is likely trying to generate a thumbnail for the PDF, but it’s failing.
Check under Tools > Site Health to see if there are any messages there.
Try deactivating all plugins as a test.
Also check the error log in your hosting account for any potential errors.
Forum: Fixing WordPress
In reply to: Resize Background ImageThe background image has a huge white border, so the photo inside it will never fill the entire background. See: https://guisadosdonaanita.com/wp-content/uploads/2026/03/Enchiladas.webp – you’ll need to resize the image so that the subject fills the entire background.
By the way, you’re using the Kadence Blocks plugin for the output. I don’t see that you’ve described your problem there yet. If the tip above doesn’t help, I’d recommend reaching out to them: https://ww.wp.xz.cn/support/plugin/kadence-blocks/
Forum: Fixing WordPress
In reply to: Gros problèmes avec les variationsI’m not sure which link you’re referring to. This one: https://ww.wp.xz.cn/support/plugin/woocommerce/ takes you to the WooCommerce support forum itself. And yes, it’s part of the forums on ww.wp.xz.cn, but it looks just like that. However, the WooCommerce experts are active there and can answer your questions much better than here in the general support forum.
Forum: Fixing WordPress
In reply to: Need help on WooCommerceIf this also happens with the shortcode provided by WooCommerce itself, I would recommend that you contact their support forum: https://ww.wp.xz.cn/support/plugin/woocommerce/