Sajjad Hossain Sajib
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Extraneous Space Causing Scroll Bar to Extend@oscarguy The problem lies in the Category List block in the sidebar. There is an element overflowing far to the right, causing the horizontal scrollbar issue.
Maybe you can start troubleshooting from this block.
Forum: Fixing WordPress
In reply to: plugin for product reservationHere are some plugins that can help for booking or reservation system:
WP Simple Booking Calendar
WordPress Online Booking and Scheduling Plugin – BooklyYou can explore other booking plugins in the WordPress plugin directory
Forum: Fixing WordPress
In reply to: fonts problemHi @dassia,
I noticed a CORS policy error in your website console.
Access to font at 'https://tadiktia.com/wp-content/uploads/elementor/google-fonts/fonts/dmsans-rp2yp2ywxg089urii5-g4vlh9vod8cmcqbu0-k4.woff2' from origin 'https://www.tadiktia.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.It means that the font file is being loaded from a different origin (https://tadiktia.com without the www) than the site making the request (https://www.tadiktia.com) with www, and the server is not allowing cross-origin requests.
You can try to fix this issue by configuring CORS Headers to the .htaccess file or using the Better Search Replace plugin and replacing the non-www domains with the current domain.
From https://tadiktia.com/wp-content/uploads/
To https://www.tadiktia.com/wp-content/uploads/Taking a full backup of the website is recommended before doing that because it is a sensitive operation. You can also contact hosting support to configure CORS Headers.
Forum: Plugins
In reply to: [WooCommerce] Star ratings on product page obscuredHi @babybell29, The issue was caused by the theme’s CSS, which applied specific width and height values, resulting in the star container being cropped.
https://prnt.sc/wfEGhPue72rqYou can contact the theme support for further assistance.
As a temporary solution, you can add the following CSS in the theme option css area or under Appearance → Customize → Additional CSS to fix the issue:
.woocommerce ul.products li.product .star-rating {
font-size:.657em!important;
}If you are using a cache plugin, make sure to clear the plugin cache after adding the CSS to ensure the changes take effect.
Forum: Plugins
In reply to: [WooCommerce] Shipping costs differentiationHi @marcobutz,
Shipping costs up to 50 EUR, with free shipping for orders over 50 EUR, can be achieved through a combination of WooCommerce’s built-in shipping methods: “Free Shipping” and “Flat Rate”
Access your WooCommerce shipping settings from WooCommerce > Settings > Shipping
Select or create a shipping zone and add shipping method.
Flat Rate (Under 50 EUR):
- Add “Flat Rate” shipping method.
- Set the shipping cost (e.g., 5 EUR) for orders below 50 EUR.
Free Shipping (Over 50 EUR):
- Add “Free Shipping” method.
- Set the “Minimum order amount” to 50 EUR.
Then WooCommerce will handles the logic: If the order is under 50 EUR, Flat Rate applies. If it’s 50 EUR or more, Free Shipping applies. This setup applies to all customers.
WooCommerce does not provide built-in conditional shipping based on user roles, For registered customers it will require 3rd party plugin. The plugin will ensure registered users always get free shipping.
You can use a plugin like “Table Rate Shipping for WooCommerce – Flexible Shipping” It will allow you to set shipping costs based on user roles ( logged in users ). You can reach out to plugin support for help.
Forum: Plugins
In reply to: [WooCommerce] Editing WooCommerce Checkout Language@blondieowl08 You’re very welcome! I’m glad you were able to find the setting. 😊
Forum: Plugins
In reply to: [WooCommerce] Editing WooCommerce Checkout Language@blondieowl08 It’s the MailPoet plugin that created the checkbox in the checkout page. You should be able to customize it or remove it from the plugin settings.
- This reply was modified 1 year, 2 months ago by Sajjad Hossain Sajib.
Forum: Plugins
In reply to: [WooCommerce] Shipping charges on smaller items@thethirdkit You can create two shipping classes: one for small items and another for normal items. Assign the appropriate shipping class to each product.
In the Flat Rate settings, set a lower rate for small items and a higher rate for normal items. Then, set the calculation type to Per Order: Charge shipping for the most expensive shipping class.
- This reply was modified 1 year, 2 months ago by Sajjad Hossain Sajib.
- This reply was modified 1 year, 2 months ago by Sajjad Hossain Sajib.
Forum: Fixing WordPress
In reply to: Menu tab issue desktop vs mobileYou’re very welcome! I’m so glad to hear that fixed it. 😊 Have an amazing day!
Forum: Fixing WordPress
In reply to: Critical Error After Uploading backup websiteSince the “Critical Error” appeared right after uploading the theme, it’s highly likely that the theme is the cause. The issue might stem from the theme’s incompatibility with the current WordPress or PHP version, especially if the theme is outdated. To confirm, temporarily deactivate the theme by renaming its folder via FTP or File Manager. If the site works with a default theme, the Sydney or Sydney Child theme is likely the issue.
Also check your PHP version via the hosting panel and update it to 7.4 or 8.0 for better compatibility.
For further help, contact your hosting provider to review error log.
Forum: Fixing WordPress
In reply to: Menu tab issue desktop vs mobile@whitneyleighwhite1423 The Gate Design & Pricing Info menu tab is removed sitewide. I can verify this by checking other pages with the ?nocache parameter:
https://custom-driveway-gates.com/traditional-ranch-security-gates/?nocache=11It’s still showing on other pages due to server level cache or plugin cache or CDN, as @bcworkz mentioned above.
It seems you are using NitroPack CDN. Try flushing the CDN cache and check again.
Forum: Fixing WordPress
In reply to: Scrolling issue with dynamic contentThe following CSS might help you fix the problem:
html {
overflow-y: visible!important;
}Your theme options should have a Custom CSS section to css codes. If not provided, add the CSS under Customizer > Additional CSS area.
Forum: Fixing WordPress
In reply to: Hamburger button for navigation bar not working@weichu0617 Please contact the hosting support to fix that.
Hi there,
It might be related to the cache or performance plugin.
Try disabling the ‘Combine CSS files’ option from the Speed Optimizer plugin.

If that doesn’t help, try disabling other performance options one by one.
Forum: Fixing WordPress
In reply to: Hamburger button for navigation bar not workingHi there!
The problem is due to the CORS) policy error.
Your current domain is https://khu.f18.myftpupload.com, but the scripts are loading from https://khuf18.p3cdn1.secureserver.net

Due to the different domain, this causes a cross-origin resource sharing (CORS) policy error, which is preventing the scripts for the hamburger menu from working.
To fix the CORS error, you can replace the old URL with the current domain URL in the database. Following the documentation will help you complete this process.
https://www.hostinger.com/tutorials/how-to-perform-search-and-replace-in-wordpress-database/
Please check and let me know if that helps.
- This reply was modified 1 year, 7 months ago by Sajjad Hossain Sajib.