Fix – this website is using an illegal copy of JNews theme

Posted on

This website is using an illegal copy of the JNews theme – Do you want to fix this JNews Theme error? Well, we have a paid solution for you. This problem generally occurs when you are using Nulled, Cracked, or GPL JNews Theme. JNews developers have modified their code recently and from then when are we updating the JNews theme suddenly […]

How to Fix this Website is Using Illegal Copy of Jannah Theme Error

Posted on

If you’re using a copy or gpl version of Jannah Theme this error ” This website is using an illegal copy of Jannah theme” will already affect your site. If not, it will come soon. Don’t need to worry at all. I’ll help your fix this issue. just follow these easy steps. There are two ways […]

How to Increase the All-in-One WP Migration Plugin Upload Limit

Posted on

The instructions outlined in How to Increase the All-in-One WP Migration Plugin Upload Limit tutorial to work, you can use version 7.27 [Latest] or earlier of the All-in-one WP Migration Plugin. Step 1. First, make sure the plugin is installed and it is inactive. Then we need to edit it. Go to Plugins / Editor. Step 2. Select the All-in-One WP Migration from […]

Query whether WooCommerce is activated

Posted on

If you’re building a theme which supports but doesn’t require WooCommerce, you may want to wrap WooCommerce functionality (think cart links etc) inside a conditional query. That way, if WooCommerce isn’t activated, the functionality is simply ignored instead of producing fatal errors. /** * Check if WooCommerce is activated */ if ( ! function_exists( ‘is_woocommerce_activated’ […]

Add checkout validation styles to a third party or custom theme

Posted on

You need to add this CSS to your child theme’s style.css file or to your customizers’ “Additional CSS” section. Please don’t add custom code directly to your parent theme’s style.css file as this will be wiped entirely when you update the theme. .form-row.woocommerce-invalid .chzn-single, .form-row.woocommerce-invalid .chzn-drop, .form-row.woocommerce-invalid input.input-text, .form-row.woocommerce-invalid select { border:1px solid red; } .form-row.woocommerce-validated .chzn-single, .form-row.woocommerce-validated […]

Show product categories in WooFramework breadcrumbs

Posted on

Add this code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Avoid adding custom code directly to your parent theme’s functions.php file, as this will be wiped entirely when you update the theme. /** * Show product categories in Woorramework breadcrumbs */ // Get breadcrumbs […]