Ashutosh Sharma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing appearance of images using CSSPart 1 and Part 3 are using different blocks. You have used Gallery on Part 3, which has a different structure, therefore, the same CSS selector won’t work.
.gallery-item img { width: 100% !important; height: auto !important; border-radius: 0 !important; object-fit: unset !important; }
You can use the above CSS to make the images full width, but make sure to edit the gallery and use medium image size (at least) for better results.
You can also edit the existing CSS, and add
.gallery-item img
(recommended):figure img { width: 100% !important; height: auto !important; border-radius: 0 !important; object-fit: unset !important;}
Becomes:
figure img,
.gallery-item img
{ width: 100% !important; height: auto !important; border-radius: 0 !important; object-fit: unset !important;}Forum: Fixing WordPress
In reply to: 404 Error on Entire WebsiteYou seem to be using PHP 8.2.13, if you made this switch recently, try downgrading. You have a custom theme, and it could be outdated. Outdated code could cause different issues, including yours. You can also enable debugging mode and see logs to see if you have any leads there.
You have also added some redirects, for example,
https://www.proscubadiver.net/sitemap.xml
redirects tohttps://www.proscubadiver.net/sitemap.xml/
make sure to correct these, and add a redirect fromhttp
tohttps
after updating your links.You are using LiteSpeed cache, which could be taking time to generate the optimized CSS/JS files, depending on your server resources and how busy it is.
Have you tried disabling the plugin and compared the results?
If that doesn’t help, you can try to use the crawler cron if it is enabled by your hosting provider.
Forum: Fixing WordPress
In reply to: Removing Schema codesWooCommerce generates its own schema. Have you disabled that? If not, here is an existing thread which contains the PHP code to do so.
Forum: Fixing WordPress
In reply to: Disable Elementor only on checkout pageYou can use Plugin Load Filter plugin to achieve this.
Forum: Fixing WordPress
In reply to: Random Hard Returns in Body Copy of Columns@t-p screenshot just shows what’s on the website, not sure how it is an issue. And I can’t edit my comment anyway, there is no option to do that.
Forum: Fixing WordPress
In reply to: Cannot upload plugin by www.ads-software.comYou need to enable debugging and capture error logs to see if there are any errors when you upload the plugin zip.
Forum: Fixing WordPress
In reply to: Anchor Links Not WorkingThanks @williambeach, but that isn’t necessary.
Forum: Fixing WordPress
In reply to: Random Hard Returns in Body Copy of ColumnsForum: Fixing WordPress
In reply to: Anchor Links Not WorkingCheck your menu, looks like this menu item is missing URL. And make sure to use
/#about
not just#about
Forum: Fixing WordPress
In reply to: Slow backendI tried query monitor, but I do not really seem to find out what exactly makes the backend slow.
- How much time are the DB queries talking? (Overview panel)
- Are there any entries under HTTP API Calls?
You can also try using Code Profiler plugin if you haven’t already (deactivate Query Monitor first).
Forum: Fixing WordPress
In reply to: Paypal payment not workingYou should post this on their support forum: https://www.ads-software.com/support/plugin/dokan-lite/
Forum: Fixing WordPress
In reply to: Random Hard Returns in Body Copy of ColumnsYou have non-breaking space (
) characters in your text:Replace them with normal space, and browsers will wrap the text properly.
- This reply was modified 11 months, 2 weeks ago by t-p.
Forum: Fixing WordPress
In reply to: ParseError thrownI wouldn’t suggest updating WP on the live website. You should create a staging website to test the updates.
Forum: Fixing WordPress
In reply to: ParseError thrownRename
accordions-or-faqs
directory under/wp-content/plugins
. Your website should then work if the problem was caused by that plugin.You can also enable debugging mode and capture logs to get a better idea about what’s happening.