threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media file not uploadingI suspect this is either a server-side error or a saving issue caused by a plugin you’re using. The fact that the problem only occurs with PDFs narrows it down significantly. WordPress is likely trying to generate a thumbnail for the PDF, but it’s failing.
Check under Tools > Site Health to see if there are any messages there.
Try deactivating all plugins as a test.
Also check the error log in your hosting account for any potential errors.
Forum: Fixing WordPress
In reply to: Resize Background ImageThe background image has a huge white border, so the photo inside it will never fill the entire background. See: https://guisadosdonaanita.com/wp-content/uploads/2026/03/Enchiladas.webp – you’ll need to resize the image so that the subject fills the entire background.
By the way, you’re using the Kadence Blocks plugin for the output. I don’t see that you’ve described your problem there yet. If the tip above doesn’t help, I’d recommend reaching out to them: https://wordpress.org/support/plugin/kadence-blocks/
Forum: Fixing WordPress
In reply to: Gros problèmes avec les variationsI’m not sure which link you’re referring to. This one: https://wordpress.org/support/plugin/woocommerce/ takes you to the WooCommerce support forum itself. And yes, it’s part of the forums on wordPress.org, but it looks just like that. However, the WooCommerce experts are active there and can answer your questions much better than here in the general support forum.
Forum: Fixing WordPress
In reply to: Need help on WooCommerceIf this also happens with the shortcode provided by WooCommerce itself, I would recommend that you contact their support forum: https://wordpress.org/support/plugin/woocommerce/
Forum: Fixing WordPress
In reply to: Header Not Collapsing Properly in Mobile ViewI’m not sure what you mean by “not collapsing properly”. On my end, the hamburger menu appears as soon as the viewport width is 600 pixels or less. Do you want the hamburger menu to appear at 760 pixels, for example? Is that what you’re referring to?
Forum: Fixing WordPress
In reply to: Need help on WooCommerceI recommend getting in touch with Elementors’s support about this via https://elementor.com/support/ if you have Elementor Pro or https://wordpress.org/support/plugin/elementor/ if you do not.
Forum: Fixing WordPress
In reply to: Home Page Title Not Displaying Site TitleYou’re using the commercial theme BeTheme and a child theme based on it. My guess is that what you’re looking for is hidden somewhere in one of these two. However, we don’t have access to the commercial theme here, so no one can check that for you.
So here are my recommendations:
- Activate BeTheme itself so that the child theme is no longer active. Does the page title change then? If so, the issue lies somewhere in the child theme, and you’ll need to check its source code accordingly.
- Otherwise: try activating the default TwentyTwentyFive theme. If the page title changes as a result, the problem is with your commercial theme, “BeTheme.” In that case, I’d recommend contacting their support: https://themeforest.net/item/betheme-responsive-multipurpose-wordpress-theme/7758048/support
- If the title doesn’t change after switching themes, try deactivating all plugins to rule them out as the cause. One of them must be the culprit if you’ve already ruled out the theme as the cause.
Forum: Fixing WordPress
In reply to: Rest API for Media – Caption and DescriptionWhat you’re seeing is completely normal behavior from WordPress regarding excerpts.
In WordPress, a caption is handled exactly like post excerpts. If one is specified, it appears in the
post_excerptfield of the attachment record. If none is specified, the normal text (in this case, the description, since it is equivalent topost_content) is used and, if necessary, shortened and cleaned up using the usual methods.If you want to prevent this, you would need to deactivate this filter here:
add_filter( 'get_the_excerpt', 'wp_trim_excerpt', 10, 2 );You can do this, for example, with this line:
remove_filter( 'get_the_excerpt', 'wp_trim_excerpt', 10, 2 );However, you will then no longer have excerpts in the frontend or for any posts and other post types. You may therefore need to remove the filter only for REST API requests. You can determine this using
wp_is_rest_endpoint().Forum: Fixing WordPress
In reply to: PHP Warning – Undefined array key “path”Although the message refers to information in a WordPress Core file, the actual cause is likely a plugin or theme you’re using that is calling these core functions incorrectly. Specifically, I suspect that the inclusion of language files from one or more plugins or your theme is not working properly.
You have the following options:
- Disable the display of warnings, as described above. This will prevent you from seeing them here, but it won’t solve the actual problem.
- Deactivate all plugins and check if the message still appears. If so, try switching the theme as well. This way, you can rule out these components as the cause and find the actual cause.
- If the message still appears even with a default theme and no plugins at all, then the language files in your project are saved incorrectly.
Note: By the way, this is by no means an error message, but merely a warning.
Forum: Fixing WordPress
In reply to: The editor has encountered an unexpected error.Have you tried using a different browser? There are browser extensions that might be causing this issue.
Also, try reinstalling your WordPress core. You’ll find the option under “Updates”.
Forum: Fixing WordPress
In reply to: Media library not loading, showing blankdThen the problem is probably related to this plugin.
Have you installed all the pending updates for it? If not, please do so.
If it still doesn’t work, it’s best to contact their support forum: https://wordpress.org/support/plugin/elementor/
Forum: Fixing WordPress
In reply to: Media library not loading, showing blankdA blank page indicates a server-side error. The 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.wordpress.org/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: Gros problèmes avec les variationsI 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://wordpress.org/support/plugin/woocommerce/ if you do not.
Forum: Fixing WordPress
In reply to: Extra fields on the product category page per productI 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://wordpress.org/support/plugin/woocommerce/ if you do not.
Forum: Plugins
In reply to: [Classic Widgets] Widget Screen QuestionYou can only use classic widgets with themes that support widgets. This usually includes all classic themes, such as the latest classic default theme, TwentyTwentyOne. However, you won’t be able to use them if you’re using a block theme like TwentyTwentyFive.