threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Widget-Get Rid of Adsense Auto CodesIf you want to remove the things that the plugins add, uninstall those plugins. This will also remove their output from your project.
Forum: Fixing WordPress
In reply to: WordPress 7.0.4: Repeated “Insufficient Permission” Dashboard ErrorsYou do not have sufficient permission to manage options.
This exact text does not appear in WordPress Core. However, I found it in the PowerPress plugin. Do you happen to use that? If so, you should contact their support forum for clarification: https://wordpress.org/support/plugin/powerpress/
Forum: Fixing WordPress
In reply to: Admin interface/menus all messed upDoes this happen when you use a different browser, too?
Try disabling all the plugins to see if that helps. One of them might be causing an issue here.
Forum: Fixing WordPress
In reply to: WordPress Widget-Get Rid of Adsense Auto CodesI’m not sure what you mean by “AdSense Auto Codes.” I can’t find a plugin with that name, and I can’t find anything about it online at all.
I have taken the codes out of the plugins that I have
Am I understanding this correctly – that you’ve modified the code of plugins that you use yourself, but that weren’t developed by you? I would advise against doing that, since the developers would then no longer be able to provide you with support.
If you have a problem with a plugin, contact its support team.
By the way, I can’t find anything in the WordPress repository regarding the two lines you mentioned. If they’re commercial plugins, please contact their support.
And aside from that, do you have a specific example of some code you want to get rid of?
To be honest, I’ve never experienced what you’re describing. My guess is that either a plugin in your project or an add-on in your browser might be causing the problem.
So try using a different browser. Does it work then?
What plugins are you using that might be affecting the login process? A security plugin? Try disabling them all just to test.
Forum: Fixing WordPress
In reply to: Images in Category pagesI wouldn’t recommend that. You already had images assigned to the categories. The plugin you’ve been using so far assigned those images to categories in a specific way. You can’t just use any other plugin to reuse those images – you have to find the right one.
By the way, it’s also possible that your theme has added this functionality. What specific updates have you installed most recently? WordPress? Plugins? Themes?
Forum: Fixing WordPress
In reply to: Images in Category pagesI just double-checked, but WordPress doesn’t natively support images for categories. However, there are various plugins available for this. Which one do you use? Is it possibly disabled?
Forum: Fixing WordPress
In reply to: Issue with update to 7.0.4Thanks for this detailed analysis. I tried to reproduce it on my end. The HTTP response is identical to yours, including the content-md5 value.
Then I also saved the file locally. In your test, it apparently returns the correct MD5 there as well. I did it differently, but I got the same result. That’s because WordPress uses
md5_file()to return the MD5 of the downloaded file (see https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/file.php#L1382(. So I simply used this:<?php
var_dump(md5_file(‘wordpress-7.0.4-partial-3.zip’));saved as a file and then ran it:
> php test.php
string(32) "6ae4a31d00882ee697475c2601e7006d"Since you’re getting the correct result there as well, the question is why WordPress is coming up with the wrong value during the actual update. The expected MD5 is correct, but the one calculated by your project from the downloaded file is not.
Are you using any security plugins? Or is there a security tool in your hosting environment that could be changing the value?
Forum: Fixing WordPress
In reply to: Issue with update to 7.0.4I haven’t had that happen on a single project of mine. What version of PHP are you using? The checksum is verified using PHP functions.
The manual update actually takes just a few minutes if you have FTP access.
Forum: Fixing WordPress
In reply to: Issue with update to 7.0.4Have you checked to see if there’s enough storage space on your hosting account? Also check under Tools > Site Health to see if any issues are listed there.
Since this is a security update, you could also quickly install it manually as described here: https://wordpress.org/documentation/article/updating-wordpress/#manual-update
Forum: Fixing WordPress
In reply to: Edit page showing headerI don’t quite understand what this is about. Can you show me some screenshots of it? See: https://wordpress.org/support/forum-user-guide/block-editor/#adding-screenshots
Forum: Fixing WordPress
In reply to: Uploading a file on the wordpressAlso check under Tools > Site Health to see if there’s any information there about missing permissions or full disk space.
Forum: Fixing WordPress
In reply to: MenuThe menu you’re looking for depends on the theme you’re using. If it’s a classic theme, you’ll find the menu under “Appearance”. With block themes, however, this option no longer exists, since the menus are managed within the theme itself.
If you’re using Elementor, you don’t need a block theme. I’d recommend “Hello Elementor” in this case. That way, you’ll have the menu you’re looking for. Alternatively, there are also plugins that restore the menu even with block themes.
Check under Tools > Site Health to see if any issues are listed there.
Forum: Fixing WordPress
In reply to: How to see code of header widget (Astra)?Now I understand your request a little better. You basically want to change the structure of the blocks to achieve your goal. But that’s not possible. Blocks provide you with predefined options and possibilities and use them to generate the code to be output.
Your only option is to look for alternative implementations. For accordions, for example, there’s the one built into WordPress, but there are also several accordion blocks available as standalone plugins that might meet your requirements.
If you have a specific example, we might be able to give you more details.