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' );
WDES Responsive Tool 1 is a WordPress plug-in designed to provide mobile responsive solution for your websites. WDES Responsive Tool 1 helps your websites mobile friendly and much more reliable in mobile view.
🚀 Learn How to Create a Section Using Elementor | Web Development for Beginners Welcome to this step-by-step tutorial where you’ll learn how to create a beautiful, responsive section using Elementor – one of the most powerful page builders for WordPress! Whether you’re a beginner in web development or just starting to build your first…
The7 social network share button open new window instead of new tab. Copy the codes below to your JS file. $('.soc-ico a' ).click(function(e){ e.preventDefault(); window.open(this.href, "myWindowName", "width=800, height=600"); });
Remove subcategory count. add_filter( 'woocommerce_subcategory_count_html', function(){ return ''; }); Change the number of loop shop columns. add_filter( 'loop_shop_columns', function(){ $cat_obj = get_queried_object(); $cat_id = $cat_obj->term_id; if( get_woocommerce_term_meta( $cat_id, 'display_type', true )== 'subcategories' ){ return 3; }else{ return 4; } }); Change the number of loop shop columns css. Just add a class on the body…
On my current, I have this “martygeocoderaddress” custom fields and it contains a string with Queen Anne’s. On my JS code below Wrong html += ''; html += '<?php echo get_post_meta( $product->id , 'martygeocoderaddress' , true ); ?>'; // Output is 'Queen Anne's' which is wrong and this can't be read by your JS code….
How to add an `Add Friend` button in a custom templates? Copy the codes below. <?php if( $bp->displayed_user->id != bp_get_member_user_id() ) : ?> <div class="add-friend-btn"><?php bp_add_friend_button( bp_get_member_user_id() ); ?></div> <?php endif; ?> How to get the total friends count? Read more here https://buddypress.wp-a2z.org/oik_api/friends_get_total_friend_count/. <?php global $bp; echo bp_get_user_meta( $bp->loggedin_user->id, 'total_friend_count', true ); ?> How to…