Jhimross Olinares
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gravatar Looks so BIGThat’s definitely not normal. Start to troubleshoot by checking for plugin conflicts. Deactivate your plugins one by one and refresh your site after each deactivation. If the Gravatar goes back to normal, the most recently deactivated plugin is likely the culprit.
Also, switch to a default theme like Twenty Twenty-Five. If the Gravatar looks normal with the default theme, the issue may be in your current theme’s styling.
If you’re using a caching or optimization plugin, clear the cache. Sometimes outdated styles can stick around.
Hope this helps.
Forum: Fixing WordPress
In reply to: Website redirection to cloudflare Captcha Malware@iamshubhamsp, you cannot determine the root cause without further investigation, which is why we recommend the steps mentioned above. Typically, the issue stems from malicious plugins, infected files, or compromised admin credentials. Hackers may exploit outdated plugins, inject harmful code into core files (like
.htaccess
orwp-config.php
), or insert malware directly into your database.Again, check with your hosting provider for more details on how this started. They can provide insights into server logs, file changes, and potential entry points.
Forum: Developing with WordPress
In reply to: add_editor_style making Gutenburg uglyHi @vespino ,
Since your theme is Bootstrap-based with minimal extra CSS, the issue likely arises because Gutenberg inherits unwanted Bootstrap styles.
Instead of using
add_editor_style()
directly (which pulls instyle.css
or other global styles), you can register and enqueue a dedicated editor stylesheet that includes only your custom styles. Here’s a refined solution:- Create a custom CSS file (e.g.,
editor-style.css
). Add only the styles you need:
p:first-of-type {
font-weight: bold;
}
blockquote {
font-style: italic;
}- Enqueue the custom editor stylesheet in
functions.php
:
function my_custom_editor_styles() {
add_theme_support('editor-styles');
add_editor_style('editor-style.css'); // Only applies your custom styles
}
add_action('after_setup_theme', 'my_custom_editor_styles');- You can revent Bootstrap from affecting the editor. If Bootstrap’s styles are still causing issues, you can target the
.editor-styles-wrapper
class in youreditor-style.css
to reset unwanted styles:
.editor-styles-wrapper body {
all: unset; /* Resets inherited global styles */
}This should give you a cleaner Gutenberg experience with just your custom CSS applied. Let me know how it goes.
Forum: Fixing WordPress
In reply to: Website redirection to cloudflare Captcha MalwareHi @iamshubhamsp,
I recommend starting by checking your plugins for anything suspicious. Remove any unrecognized or suspicious plugins immediately.
Next, use a security plugin like Wordfence, MalCare, or Sucuri to scan your website for malware or infected files. These tools can help identify and remove harmful code.
Also, review all the user accounts on your site. If you find any unfamiliar or suspicious users, remove them and update all passwords — including WordPress admin, hosting account, FTP, and database passwords — to secure your site.
Lastly, I strongly suggest contacting your hosting provider. Some malware infections may involve server-level compromises, and they can help investigate further.
Hi @timmyg06,
The issue you’re facing… where new posts turn into “Auto Draft” and lose their content — can be caused by a few things. Here’s what you can try:
- Clear Browser Cache – Cached data in your browser can sometimes cause issues. Try clearing your cache or switching browsers.
- Database Cleanup – Use a plugin like WP-Optimize to clean up old drafts and optimize your database.
- Check File Permissions – Incorrect file permissions may prevent WordPress from saving content properly. Ensure your
wp-content
folder has the correct permissions (usually755
). - Reinstall WordPress Core – Go to Dashboard > Updates and click “Reinstall Now” to refresh WordPress files without affecting your content.
If you are not sure how to do #2, #3, and #4, I recommend contacting your hosting provider, and ask for their help to troubleshoot this issue by trying the following above.
Let me know how it goes.
Forum: Fixing WordPress
In reply to: updatable plugins disappear after updating only oneHi @oyannaise ,
The issue you’re seeing — where plugin updates disappear from the “Updates” page — can happen due to caching or outdated data. Try some of these steps to troubleshoot the issue:
- Clear Cache- If you’re using a caching plugin or server-side caching, clear it after each update.
- Force Refresh – Go to Dashboard > Updates and click “Check Again” to refresh the update list.
- Check for Conflicts – Deactivate non-essential plugins and switch to a default theme to see if a conflict is causing the issue.
- Clean Up Data – Use a plugin like WP-Optimize or Transient Cleaner to clear old data.
Let me know if works.
Forum: Fixing WordPress
In reply to: Mixed Content – Forces SSL security WarningHi @biketruck6942,
I checked the link you sent, and it appears to be fixed now—no more Mixed Content issues. I double-checked by viewing the source, and I can’t find any links running over an HTTP connection.
If you’re still experiencing this issue on your end, try clearing your browser cache.
Also, ensure that all links are forced to run over HTTPS by verifying that your URL in Settings > General > WordPress Address (URL) and Site Address (URL) are set to HTTPS. See this example: https://share.zight.com/04uzj7bA
Forum: Fixing WordPress
In reply to: No table of contents block?There is actually a TOC in development, I am not sure when it will come to WordPress Core, but you can already use it by installing the Gutenberg Plugin. The Gutenberg Plugin makes it possible for everyone to test/use features, that will come to WordPress Core eventually, early on.
Hope this helps.
Hi @azkalex,
I saw your reply randomly upon finding for a solution myself. For your question, you can try to disable these options in WooCommerce > Settings > Products:
- Redirect to the basket page after successful addition?
- Enable AJAX add to basket buttons on archives
Here:- https://share.zight.com/WnuXQ5P9
This works for me. I hope that helps. ??
Hi @jiswebsite,
For clarification, do you mean if you can modify the labels in our plugin delivery fields? If that’s the case, yes, it is possible to modify the labels in our plugin.
Our plugin is translation ready, so you can change the label and also translate it to other language.
You can use a translation plugin like Loco Translate, manually edit the .po file using a software like Poedit, or you can also use code snippets to translate specific labels.
Please try this solution, and let me know if it works. I’ll be happy to further assist you with your questions.
Hi @jiswebsite ,
I’d like to verify if you’re still encountering the problem where the date doesn’t appear when you click “select a date.” If you are, here are steps you can take to resolve this issue:
- Ensure that your plugin is updated to the latest version. Plugin updates often include fixes for bugs and issues like the one you’re facing.
- Double-check your “Location” settings to make sure they are configured correctly, especially within the “Timeslots” section. You can refer to the guide on “How to Set up Time Slots” for assistance.
- Check if there are conflicts with other plugins or themes. You can do this by deactivating plugins one by one to see if any of them are causing conflicts, or you can switch to a default WordPress theme temporarily to check if the issue persists.
- If you are using a caching plugin, consider clearing the cache to ensure that caching is not contributing to the problem.
Please try these steps, and let me know if this resolves the issue you were experiencing.
Forum: Fixing WordPress
In reply to: Query loop showing a title with wrong contentHi @tstaruk ,
You might want to consider creating a support ticket in Lotusx theme forum as well. https://www.ads-software.com/support/theme/lotusx/
The theme dev might be able to help you or someone from the community of Lotusx theme.
Forum: Fixing WordPress
In reply to: Полноценный редактор в рубрики водпрессHi,
I just translated your question using Google Translate, and it says, “Hello! I really need a full-fledged editor in the headings of WordPress. When will he appear?”
For clarification, do you mean full site editing? And you are looking for an option to edit the Header? If so, in the latest version of WordPress (v. 6.3). Site Editor (Full Site Editing) already released.What you need is to use a Block Theme. Make sure to use a Block Theme, this has and supports Full Site Editing feature. See this sample block themes from the WordPress Theme repository:- https://www.ads-software.com/themes/tags/full-site-editing/
This is also a good resource for Full Site Editing:- https://fullsiteediting.com/site-creators/introduction-to-the-site-editor/
I hope that helps.
Russian translation using Google Translate:
—————————————————-Я только что перевела ваш вопрос с помощью Google Translate, а там написано: “Здравствуйте! Мне очень нужен полноценный редактор рубрик WordPress. Когда он появится?” Вы имеете в виду полное редактирование сайта? И вы ищете возможность редактировать заголовок? Если да, то в последней версии WordPress (v. 6.3). Редактор сайта (Полное редактирование сайта) уже выпущен. Что вам нужно, так это использовать тему блока. Обязательно используйте блочную тему, она имеет и поддерживает функцию полного редактирования сайта. Посмотрите этот образец темы блока из репозитория тем WordPress: https://www.ads-software.com/themes/tags/full-site-editing/. Это также хороший ресурс для полного редактирования сайта: https://fullsiteediting.com/site-creators/introduction-to-the-site-editor/. Надеюсь, это поможет.
Forum: Fixing WordPress
In reply to: Some Images and Features image not showing in Neve ThemeHi @bhaveshp437
I tried replicating the issue, but it appears that there is no problem with the images, and it is all loading fine on my end both on your website https://www.uscryptotrends.com/ and https://myeventtips.com/
Watch:- https://share.getcloudapp.com/E0uLkolB
One thing that I noticed is that you are using lazyload from Jetpack. https://share.getcloudapp.com/jkuR5mKZ Perhaps, this was causing the issue?
Try to clear the cache (also your browser cache), or temporarily disable Jetpack Lazyload and CDN for your images.
Let me know how it goes.
Forum: Fixing WordPress
In reply to: Query loop showing a title with wrong contentHi @tstaruk
It sounds like you’re encountering a mismatch between the titles of articles on your WordPress website’s design page and the actual titles displayed on the live site.Try the following:
- Clear Cache – Try to clear any form of caching, server-side, from caching plugin, and also browser cache.
- Permalink Settings – Check your permalink settings. If they are not set up correctly, it might cause discrepancies between the URLs and the actual content. Go to Settings > Permalinks and ensure you’re using a structure that works for your site.
- Theme Compatibility – possibly conflict from your theme? Try to switch to WordPress default theme.
- Category Filters – Since you mentioned that the issue seems to be related to filtering out certain categories, review your category filtering code (if you’ve implemented it) to make sure it’s correctly targeting the categories you want to exclude. Ensure you’re using the correct category slugs or IDs.
- Custom Code – If you have custom code snippets or modifications in your theme’s functions.php file or elsewhere, review them to see if they could be affecting the titles and content display.
- Enable WordPress debugging mode – to see if any errors are being generated. To do this, add the following code to your wp-config.php
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );
This will log any errors to a debug.log file in your wp-content directory which you can check and can give you a clue.
Let me know how it goes. If you can also give more details like steps to replicate, that will be really help.
- Create a custom CSS file (e.g.,