How to fix Avada themes WP Memory Limit using Godaddy cpanel.

If you encountered the same error just like the image above, just follow this instructions.
Open your wp-config.php in cpanel and add this code.
define( 'WP_MEMORY_LIMIT', '128M' );
After clicking add to cart button in product category, this will be redirecting to single product and the same time your current product is added to cart page. How to do that? Follow the steps bellow. Step 1: Make sure to change the product URL. Just add “?add_to_cart=true” after the product URL. Example. http://www.wptaskforce.com/product/baby-boy-bouquet/?add_to_cart=true Step…
Hi guys, this is the problem I got during this issue. Problem: I tried using 3 zone of UK country, but if do search a specific postcode, it only shows the Mainland UK shipping method. Example if I search a postcode near in Northern Ireland, I expected to see Standard Delivery shipping method only but…
jQuery( document ).ready(function($){ if ( document.cookie.indexOf( 'visited=true' ) == -1 ){ var number_of_days = 1; // 1 Day var total_of_days = 1000*60*60*24*number_of_days; var expiration = new Date( ( new Date() ).valueOf() + total_of_days ); document.cookie = "visited=true;expires=" + expiration.toUTCString(); } });
Step 1 Think about the name of your plugin. Step 2 Example is Shortcode URL plugin. Create a shortcode-url folder name inside of wp-content/plugins/. Step 3 Create shortcode-url.php file inside wp-content/plugins/ folder and put the codes below inside of your shortcode-url.php file. <?php /** * Plugin Name: Shortcode URL * Plugin URI: https://www.anthonypagaycarbon.com/ * Description: Shortcode URL is…
Gravity form user registration update confirmation redirect URL. How to set up your Gravity form user registration or user update profile to redirect to the Buddypress profile page? Using {user:user_nicename} will solve your problem. See image below on how to set up. Problem 1: I want my update profile form to redirect in my Buddypress…