Bheru Lal Gameti
Forum Replies Created
-
Thank you @kotmateusz for the response i have followed the above steps but it is still taking me to the shipment creation page. I’ll try after the creating a new account.
Thanks
Forum: Fixing WordPress
In reply to: Other favicon is displayed in first 2-3 secondsIt’s your browser caching. Check after clear the cache or try a different browser.
You can achive this by using https://wpultimo.com/ plugin.
Forum: Fixing WordPress
In reply to: images hidden from websiteYou have hosted your website on Hostinger they have LiteSpeed server sometime autoptimize caching plugin does not work as expected give a try to https://www.ads-software.com/plugins/litespeed-cache/ plugin
Forum: Developing with WordPress
In reply to: WP rest api endpointsHave you checked permission_callback parameter – https://developer.www.ads-software.com/rest-api/extending-the-rest-api/routes-and-endpoints/#permissions-callback
Forum: Fixing WordPress
In reply to: images hidden from websiteSeems like it’s a caching issue if you add a query parameter after the website URL all images load fine like this – https://digibandwidth.com/?test
- Try clearing the cache from wordpress admin and web host.
Forum: Everything else WordPress
In reply to: the banners on my website are not full width. Why?Extra space coming from the padding update this CSS in theme style-child.css file on line no. 781
.layout-wrapper { margin: 0px auto; padding: 0; }
Before updating this make sure that it does’t break other part of the website.
Forum: Fixing WordPress
In reply to: Cant open my site to fix an errorYou need to enable the debugging mode in from the wp-config.php to find out the cause of this issue you can find this file in the in root of the website check this article for detail guide – https://www.ads-software.com/documentation/article/debugging-in-wordpress/
Forum: Fixing WordPress
In reply to: What is the reason? Solution?The website URL is loading for me without any issue maybe it’s a connection issue if it’s working fine then check the browser console for more information
If you have already added the custom field in the quick edit menu then you can prepolulate data in the the field using jQuery – here is the full guide – https://rudrastyh.com/wordpress/quick-edit-tutorial.html#populate-columns
My WordPress website PHP version is 7.0.33
Forum: Themes and Templates
In reply to: [GeneratePress] Featured Image sizeI thought you are asking for a change in the single post feature image, for the blog page image size replace the first CSS with the below CSS code.
body.archive.category .post-image img, body.blog .post-image img { height: 240px; width: 380px; object-fit: cover; }
Forum: Themes and Templates
In reply to: [GeneratePress] Featured Image sizeAdd the following CSS for single blog feature image size, change size according to your requirement
body.single .featured-image.page-header-image-single img { height: 320px; object-fit: contain; }
Forum: Fixing WordPress
In reply to: Want to design online testHey @dheerajmanral
Try the following plugin it will fulfill most of the requirement
https://www.ads-software.com/plugins/quiz-master-next/Forum: Fixing WordPress
In reply to: Woocommerce import products with CSVHi there,
If this is the case, you’ll want to remove the Product ID column of your CSV document. The site will assign each product an ID upon import.
You should only include the Product ID if you’re trying to update a product that already exists on that site, say, for example, you want to change the price or the product description. The ID allows the system to realise that this is an existing product and then update it accordingly instead of creating a brand new product.
I hope that clears up some of your confusion.
Cheers.