Davood Denavi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot disable plugin auto-updates (5.5)check you wp-config file for define code that talks about the auto updater.
There are a few different definitions that could have been added.
One is:
define( 'AUTOMATIC_UPDATER_DISABLED', true );Also, I’d suggest making sure that your theme has not added the following code to the functions.php file. It never hurts to double/triple check.
add_filter( 'plugins_auto_update_enabled', '__return_false' ); add_filter( 'themes_auto_update_enabled', '__return_false' );Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5@magicpowers Look, I am a volunteer here and I am telling you that you confused me with the post I linked to about an hour and a half ago. Replying with all caps is very childish. You do not know what is confusing for me or others here. I am telling you what confused me just let it go since the thread is resolved. We can both learn from this to ask better questions and communicate better there is no need to post in all caps saying “I started.. so I finish…”
Good luck to you.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5@magicpowers There is nothing to repeat. I was showing you where you confused me and created the circles that we went in for apparently for no reason. Good luck to you too.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5My apologies for thinking you were a new user.
I must say though that you did “muddy the waters” with this post: https://ww.wp.xz.cn/support/topic/disable-auto-updates-link-missing-on-themes-wp-5-5/#post-13259450
You basically said it worked but it did not, so I provided you a different method and said this usually needs to go in wp-config.php since I do not know which plugin you are using and therefore can not support you with the plugin.
I agree we can move on from this exchange. You are welcome, I am happy to support any time that’s why I am here.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5Just cause you are a newer user does not mean we do not know what we are doing. the release advisory does not need to be updated and WordFence already knew whatever you told them. I am sorry you feel that my communication style is confusing, that is the first time I’ve heard that one. The fact is you muddied the waters by saying the advice in the link I originally provided crashed your site when it did not. WP.org’s advisory about the update never offers any tips on how to disable features and it never will. That is what the forums are for so you came to the right place to get help disabling auto updates.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5I think what you are not understanding here is that the code that crashed your site when using it in the code snippets plugin never would have worked in any code snippets plugin and is the same code that I provided here in this thread later when you said that the code provided in my link crashed your site. Also, the link I provided originally is not something I originally wrote it is just something I found in google that had the accurate information. When I provided the define code right here in this thread I did say it goes in wp-config.php very clearly if you read my post above.
Anyhow, I am glad that you see this as resolved now. Happy Blogging.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5The Code Snippets plugin in not an issue here, I’m not sure why you keep referring to it as if it was the key issue. The issue is that this process which does NOT require any plugin was not included in the WP 5.5 release article.
For your information, the Code Snippet developers have advised that this type of code can only be inserted directly into wp-config.php and not via a plugin. Any plugin.
I told you that earlier in this thread. Also, I am sure that the code
from the original article I linked you to which says to add it to functions.php in your theme can be added using a plugin because I did it using a code snippets plugin on a few of the 30 sites I mentioned I implemented the code on.All the articles I say clearly state to add the code to your themes functions.php file or in the case of the define code I provided directly in this thread they clearly say to add it to your wp-config.php.
Filters always go in the theme functions.php file no matter what they are being used for and define code like what I gave you directly in this thread always goes in the wp-config.php file no matter what. With that I will leave this for a moderator to handle from here.
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5I actually did answer all of your questions already. Nothing was ignored. Let me attempt to answer them again. This “very simple issue” (in your words) was fixed before the release of 5.5 that is why the code exists to allow you to disable it. It is not our responsibility to maintain plugin code if a plugin is out of date and breaks that is the responsibility of it’s developer to update that code so it works with the new hooks that are being provided for 5.5, if they don’t that is their decision.
As far as I know if you do not insert any code auto updates will run. Period, end of story.
If however you insert the code from the article in your theme it will disable auto updates according. The article has code for disabling theme and plugins auto updates. Your other option is to use the code I provided in my later post and place it in the wp-config.php file.
Hope this clears up your confusion.
Forum: Fixing WordPress
In reply to: Admin Dashboard page freezeStart by making sure your server meets the minimum recommended requirements https://ww.wp.xz.cn/about/requirements/
Forum: Fixing WordPress
In reply to: Disable auto updates link missing on themes WP 5.5You are using a plugin. Plugins are supported by their developers. There are a large number of code snippet plugins. Many are no longer supported and have not been for some time.
This thread is posted in a board that is for CORE WP Support not support for your plugin. Yes, you are looking to disable a feature of CORE but you want to add the code into a plugin therefore you need to contact the plugin developer for support. If you would share with us the exact plugin you are using we can better guide you to the right place for support.
Again, I implemented the original code and the code I provided the second time on 30 different sites with no problems. Therefore the problem are having was one of two things:
1) User error implementing the code provided
2) outdated plugin that does not work with 5.5.I am sorry you feel otherwise but the fact is that there is no problem and it is the plugin developers responsibility to make sure their plugin works with the most recent version of wordpress.
Forum: Fixing WordPress
In reply to: Unable to add Plugins and change many thingSounds like your server might not be configured correctly to me. I’d suggest contacting your hosting provider.
Forum: Fixing WordPress
In reply to: 5.5 – delete multiple usersTo be clear, the problem I was having was not the same exact issue you are having… but it’s always a good idea to clean cookies and cache when having issues after an update.
Forum: Fixing WordPress
In reply to: wordpress Comments errorI’d advise contacting the theme developer. https://ww.wp.xz.cn/support/theme/generatepress/
if you are using GP Premium contact them here: https://generatepress.com/contact/
They will be able to best help you with this.
Forum: Fixing WordPress
In reply to: Customize page broken since 5.5 updateYou need to contact your theme developer…. you can do so here:
https://presscustomizr.com/contact/Forum: Fixing WordPress
In reply to: 5.5 Problems – Remote Loading of Image Fail5.5 adds lazy load features. If your script does not support lazy load then yes, it will not load the images that the script is supposed to be loading.
I’d suggest rolling back to 5.4.2 and then copying the site to a development environment and doing some testing with your script.
Hope this helps you debug your issue.