threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Library Problem after update to WordPress 7.0So, if you deactivate Elementor, does it still say “uploading” next to the images? Try reloading the page without the browser cache; maybe something is getting stuck there.
If that doesn’t help: which theme do you have active? OceanWP? Try switching to TwentyTwentyFive and make sure to deactivate all plugins as well.
I’m not sure what you mean by “single-page application” – are you referring to a website that consists of just a single page? Also known as a one-pager?
And do you want to continue using WordPress, or are you looking to migrate your content from WordPress to a “single-page application” that runs entirely without WordPress?
Forum: Fixing WordPress
In reply to: Color Palette ExpansionI can’t find anything really old on this, but there are plugins that support it:
https://ww.wp.xz.cn/plugins/contextual-adminbar-color/
https://ww.wp.xz.cn/plugins/sleeker-admin-color-schemes/Forum: Fixing WordPress
In reply to: Uploading featured imageNo, that isn’t currently possible in the same simple way as with the Image Block. You’ll need to upload the file for the featured image to the media library first.
If you’d like to see this improved, feel free to submit a request to the Gutenberg team: https://github.com/WordPress/gutenberg/issues
Forum: Fixing WordPress
In reply to: Display and allow purchase dynamicallyI recommend getting in touch with WooCommerce’s support about this via https://woocommerce.com/my-account/create-a-ticket/ if you have any of their paid WooCommerce products or https://ww.wp.xz.cn/support/plugin/woocommerce/ if you do not.
Forum: Fixing WordPress
In reply to: New posts overwriting previous on brand new installI’ve never seen anything like this before, and I’d guess Cloudflare is the cause. I’m not sure how it works in dev mode, but I’d recommend disabling it completely.
Forum: Fixing WordPress
In reply to: Is it possible to disable the editor’s iframed mode?No, the new mode is the default, and as far as I know, it will remain that way. The only way to revert to the old mode is to downgrade to a version of WordPress that still uses it, such as 6.9.4.
There are plugins that aren’t yet fully compatible with this new mode. This can sometimes result in strange display issues. It will likely take some time before their developers have updated their plugins.
Forum: Fixing WordPress
In reply to: Plugin auto update issues | WordPress 7.0There can be many reasons for a failed update. Some of them should be listed in the hosting error log. Have you checked there? Pay attention to the time the email was sent and any entries in the log around that time.
Forum: Developing with WordPress
In reply to: How do i integrate custom jquery in wordpress?The HTML code for the menu depends on which theme you’re using. Depending on that, one can see how the HTML code might be adjusted. However, it would be easier for you to adapt your CSS and jQuery to the HTML code that is actually generated. As described above, you’ll need to adjust the selectors to do this. If my example doesn’t work for you, there must be another reason for it, which can’t be determined without a link to the page or the full source code as described above.
Forum: Fixing WordPress
In reply to: Aprove CommentYou’re using the “wpDiscuz” plugin to enable comments on your website. I’d recommend reaching out to their support forum: https://ww.wp.xz.cn/support/plugin/wpdiscuz/
The link points to a file that, unfortunately, is not publicly accessible.
Forum: Fixing WordPress
In reply to: Updated gone wrongThe 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: Display and allow purchase dynamicallyYeah, I see. That’s an interesting project, and I totally get it.
So you want to add another button to the “Buy Photo” page. What kind of page is that? Did you create it yourself as a standalone page, or is it a WooCommerce single product page?
I added a snippet (which I posted earlier). When I saved it, the site crashed.
Of course, the code is executed exactly as written, without the functions it requires having been declared beforehand. I don’t know why it used to work for you. It might be a setting in the code snippet plugin you’re using. Or maybe you used to insert the code differently. In any case, based on what I’ve read here, this approach definitely won’t work and will result in exactly this error.
Forum: Developing with WordPress
In reply to: How do i integrate custom jquery in wordpress?No, help in the forum takes place within the forum itself, not outside of it. You’re welcome to host the website you’ve created somewhere so that others can access it with a single click. You can also upload the source code to a site like https://gist.github.com – even though users will still have to copy it themselves – or as a repository on GitHub.
However, your question primarily concerns the basics of HTML and CSS, not WordPress. You might find more help in a forum specializing in those topics. The generated HTML code with the menu likely comes from your WordPress theme, but your customization with the dropdown only applies to the resulting HTML code and isn’t specific to WordPress.
That said, I’m wondering why you’re using such a custom jQuery solution for a dropdown in the first place. For two reasons:
- These days, you can implement dropdown menus very easily with pure CSS. JavaScript is only needed in special cases, which I don’t see here so far.
- Your WordPress theme might already include what you’re trying to build. Therefore, such customization might not be necessary at all. Since I’m not familiar with your project, I can’t say for sure.
If you’re looking for personal support, you’ll surely find it here: https://jobs.wordpress.net
Forum: Fixing WordPress
In reply to: Newbie has unxpected problem that self fixed?As far as I understand, you’re referring to the email you received. This email came from your WordPress installation and states that two plugins were automatically updated. This is neither an error nor a problem – it helps protect your website by installing the latest versions of plugins.
If you don’t want this automatic plugin installation, you can disable it at any time. You can do this in the WordPress backend under Plugins. There, you can set whether each plugin is allowed to update automatically or not.
You can also configure this using various plugins: https://ww.wp.xz.cn/plugins/tags/disable-updates/
You can also find details on this here in the documentation: https://developer.ww.wp.xz.cn/advanced-administration/upgrade/upgrading/#configuring-automatic-background-updates
However, an exception to this are plugin updates that are forced by the WordPress repository or (in the case of commercial plugins) by the publisher. This overrides the setting you have configured to protect your project. This is the case, for example, when there are serious security vulnerabilities in these plugins. In my experience, however, this happens very rarely.
For my own projects, I generally turn this off, since I consider automatic updates to be a potential risk. But that’s up to you – you’re free to decide for yourself.