Luis Sacristán
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Reverting CSS ChangesIf you don’t have backup it is hard. If you are using a theme try to download it again and check the file differences.
Hope it works.
Forum: Fixing WordPress
In reply to: Mobile redirect hijackHi
I should reinstall WordPress, then I will update all plugins. If it doesn’t work I will deactivate all the plugins, one by one, testing which one has malware. If you find the problem, delete the plugin and upload it again from a original ZIP file.
Hope it works
Forum: Fixing WordPress
In reply to: Shaking issue with the twenty seventeen themePerhaps the problem is with the menu that shows/hides making the page shaking
Hope it helps
Forum: Fixing WordPress
In reply to: Please help me fix Open Graph errors w/ FacebookHi
It seems you have 2 og:images
<meta property=”og:image” content=”https://i2.wp.com/www.disaus.com/wp-content/uploads/2017/01/coco-credit-disney-pixar.jpg?w=710″/>
<meta property=”og:image” content=”http://www.disaus.com/wp-content/uploads/2017/02/9.jpg” />The last one is added by Yoast. I think the first one belongs to your theme (or another plugin), so you need to remove it from your theme or desactivate Yoast.
Hope it helps
Forum: Fixing WordPress
In reply to: WP 4.7.2 update problemHi
It seems you have file permission issues, try to upload WordPress via FTP. If you deleted the file manually you shouldn’t have problems to update WP manually either.
Hope it helps
You mean in the WP dashboard? You want some new role to access to Contact Form 7 menu, don’t you?
I assume you are using Contact Form 7 but I don’t know what do you want to do exactly.
Why do to need permissions, menus and forms. I know a little bit of Drupal, perhaps you try to do things in Drupal way and you need a different approach.
A regexp helps to find text using patterns.
If you reinstall WordPress, deactivate all plugins and change the theme is strange you still have the same error.
It seems you have a different error now 😭
So you don’t have any plugin activated, you use a different theme and WordPress reinstalled… weird. Is this scenery OK?
Forum: Fixing WordPress
In reply to: An update failed, now my site is goneHi, you can download the latest version from:
https://ww.wp.xz.cn/latest.zip
Unzip and upload via FTP
Tell me if this works
Forum: Developing with WordPress
In reply to: customize email message-new user approve pluginChecking the plugin code you have a filter new_user_approve_approve_user_message_default, you can use it to change the email.
Hope it helps
Forum: Developing with WordPress
In reply to: customize email message-new user approve pluginHi Linda
What plugin are you using?
Forum: Developing with WordPress
In reply to: Plugin API/Filter Reference/authenticatePerhaps you can use this filter: ‘login_url’ you change the login url and use your own login process
Forum: Fixing WordPress
In reply to: Can’t access WP frontend; can’t see admin barHi
When you move a WP site to another URL you should change every reference to the previous web. I use this tool:
https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
If you change the database prefix you will have problems in the dashboard, not enough permissions issue. Here they explain what to do
http://wpsites.net/wordpress-tips/change-wp-database-table-prefix/
Hope it helps
Forum: Developing with WordPress
In reply to: 2 column, body text too far leftHi
The problem is that your content takes all the page width, you should add this CSS
.site-inner { max-width: 1170px; margin: 0 auto; }Hope it helps you
Forum: Developing with WordPress
In reply to: Plugin API/Filter Reference/authenticateHi
Perhaps you should use login_init action, it is called before any WP login process.
Hope it helps you