Md. Mashiur Rahman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updating failed. The response is not a valid JSON response.Sometimes, security settings on the server or certain rules in the
.htaccessfile can block the JSON response. This can cause issues with the WordPress editor updates.You should contact your hosting service provider to check if any server-side security rules or firewall settings are blocking the JSON responses required by WordPress.
Forum: Networking WordPress
In reply to: Fatal ErrorTo fix the Elementor “in_array()” error:
- Edit the Code:
- Go to
/wp-content/plugins/elementor/includes/conditions.php. - Replace:phpCopy code
if (in_array($needle, $haystack)) {With:phpCopy codeif (is_array($haystack) && in_array($needle, $haystack)) {
- Go to
- Update Elementor: Ensure both Elementor and Elementor Pro are up-to-date.
- Check for Conflicts:
- Deactivate all plugins except Elementor.
- Switch to a default theme like Twenty Twenty-Four.
- Contact Elementor Support if the issue persists.
Let me know if you need help!
Forum: Fixing WordPress
In reply to: shopping cart error- Enable Debugging:
- Add this to
wp-config.php:phpCopy codedefine('WP_DEBUG', true); define('WP_DEBUG_LOG', true); - Check the log in
/wp-content/debug.log.
- Add this to
- Disable All Plugins:
- Deactivate all plugins and see if the issue resolves.
- Reactivate plugins one by one to find the culprit.
- Switch Theme:
- Temporarily switch to a default theme like Twenty Twenty-Four to check for theme-related issues.
- Clear Cache:
- Clear browser and site cache. Deactivate caching plugins temporarily.
- WooCommerce Logs (if applicable):
- Check WooCommerce → Status → Logs for errors.
- Reinstall WooCommerce if necessary.
- Add Cart Link to Menu:
- Go to Appearance > Menus and add a custom link (
/cartor/basket) to the menu.
- Go to Appearance > Menus and add a custom link (
- Critical Error in Widgets:
- Repair the database using
/wp-admin/maint/repair.php. - Access widgets via Customizer if the admin area is broken.
- Repair the database using
- Restore Backup:
- If nothing works, restore from a backup before the plugins were installed.
Follow these steps and the issue should be resolved!
Forum: Plugins
In reply to: [WooCommerce] Remove in product titlesUse will go to Auto
Forum: Plugins
In reply to: [WooCommerce] Remove in product titles$(document).ready(function(){ $(".hideme").hide(); //or $(".hideme").remove(); });Using Javascript to remove/hide span tags that have a certain class
Forum: Developing with WordPress
In reply to: changing the layoutHello sacconi ,
Duplicate whole section , then search section in left and post section right.then whole section hide the responsive mood.
Forum: Fixing WordPress
In reply to: Background music pluginhello semitis,
I recommended wordpress free background music pluging ‘MP3 Audio Player – Music Player, Podcast Player & Radio by Sonaar’. It’s awesome. You can try it.
Thanks
- This reply was modified 1 year, 8 months ago by Md. Mashiur Rahman.
- Edit the Code: