threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal errorI recommend getting in touch with Elementors’s support about this via https://elementor.com/support/ since you are using Elementor Pro and the error occurs in their plugin.
Forum: Fixing WordPress
In reply to: Custom login page & Secure login URL & Login buttonI’ve only heard of MemberPress by name. And as it is a commercial plugin, we can’t help you with it here in the forum. I’d therefore recommend that you contact their support team to get your questions answered: https://memberpress.com/support/
I can’t find a ticket for that.
Forum: Fixing WordPress
In reply to: Custom login page & Secure login URL & Login buttonThis is just my opinion, but I would generally advise against hiding the WordPress backend. It only gives a false sense of security and can also cause problems with some plugins.
If you want to protect your backend from unauthorized access, it’s best to set up AuthBasic on your hosting server, not in WordPress itself. This way, a server-side component protects against any access, instead of a script that tries to obfuscate URLs.
However, this contradicts your plan to grant your users access to the backend. Why exactly? Why should they be able to log in to the backend? With AuthBasic protection, they would have to enter two passwords – not exactly user-friendly, I realize, but I also find it odd to grant users access at all.
So, this leaves you with only one truly reliable option in your case: do not hide the backend URL and customize the login visually with the plugins mentioned above. This is the safest way to ensure it actually works.
As I said: that’s my opinion. There are certainly others who see it differently, but I’ve experienced quite a few mistakes with hiding the backend URL that I’d rather avoid.
Forum: Fixing WordPress
In reply to: Performance Issues caused by POST /autodiscover/autodiscover.xmlIf I understand correctly, you suspect that the request to
/autodiscover/is getting through to WordPress? In my opinion, this suggests a misconfiguration on the hosting side, since those URLs are routed there before any request even reaches WordPress.I would therefore recommend discussing this with your hosting support.
If they can’t provide a solution, I’d suggest figuring out where the request is going within your WordPress installation. I don’t see this kind of behavior with any of my projects, and WordPress doesn’t even recognize these URLs – it would display a 404 page. So something in your project must be causing this high load. Try deactivating all plugins to rule them out as the cause.
Tip: Here in the forum, you can easily display code using the code block; see: https://ww.wp.xz.cn/support/forum-user-guide/block-editor/#code-block
Forum: Fixing WordPress
In reply to: E-mails are sent un-formattedSince you’re sending via Post SMTP, it might be worth testing the sending process without this plugin. Try deactivating it. If it works then, contact their support for clarification: https://ww.wp.xz.cn/support/plugin/post-smtp/
If it still doesn’t work without the plugin, deactivate all others except CF7. It should work by then at the latest – if not, it’s a misconfiguration on your hosting side, which you’ll need to clarify with your host’s support team.
Forum: Fixing WordPress
In reply to: Social media (FB) shares not showingI would recommend that you contact the support team for the plugin you’re using to resolve your issue: https://ww.wp.xz.cn/support/plugin/sassy-social-share/
If they are unable to resolve your issue, you are free to look for another plugin that can do what you need. You should be able to find examples here: https://ww.wp.xz.cn/plugins/tags/social-share-buttons/
Forum: Fixing WordPress
In reply to: Improvements/fixes to lists–free versionYour question refers to a website hosted at wordpress.COM. However, you are here in the forum of ww.wp.xz.cn. The difference is explained here, for example:
What’s the difference between ww.wp.xz.cn and WordPress.com?
Please contact the support of wordpress.COM with your request: https://wordpress.com/support/
Forum: Fixing WordPress
In reply to: Custom login page & Secure login URL & Login buttonIf I understand you correctly, you want to run WordPress’s built-in backend login page under a custom URL so you can fully customize its appearance. Unfortunately, this isn’t possible.
The reason: WordPress treats the login page as part of the backend. You cannot customize this using frontend URLs.
It seems you’re already using a security plugin to mask your backend URL. But that has no bearing on the frontend URLs either. The URL configured there is given priority to ensure you can always access the backend.
To achieve what you want, I would therefore recommend taking a step back. Don’t create a separate page for the login; instead, just customize WordPress’s built-in login form. There are plugins available for this; here are a few examples:
https://ww.wp.xz.cn/plugins/loginpress/
https://ww.wp.xz.cn/plugins/login-customizer/Forum: Fixing WordPress
In reply to: Improvements/fixes to lists–free versionFirst of all, thank you for your suggestions and ideas. However, I’m not quite sure what exactly you’re getting at.
First of all: you are also part of the “team” at WordPress. Anyone can contribute – with ideas or practical implementations – depending on their skills.
But I’m also unsure what you mean by “free version” in your title. The software here on ww.wp.xz.cn is free, open-source software. You don’t have to buy any of it.
With that in mind, I’m also wondering which lists you’re referring to? There are countless ways to display lists using WordPress. Feel free to share a practical example via a link or screenshot so we can see exactly what you mean.
Forum: Fixing WordPress
In reply to: Broken internal links, used to work fineUpon closer inspection, I see that the URL in the link doesn’t have a leading /. As a result, the browser sends the request to the wrong URL.
How is your permalink currently configured? You can find this under Settings > Permalinks.
And what kind of pages are these? Are they pages, posts, or custom post types?
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 🙂