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' );
Theme my login (TML) or WordPress login form does not show the login error. This error display after you have login the wrong username or password. The reason why it is not showing is the current login form action URL and your current page has different URL. Theme my login (TML) is using /login/ page…
How to get the parent product category ID, Name, etc in specific product? Just copy and paste the codes below. $object = get_queried_object(); $product_cat = get_the_terms( $object->ID, 'product_cat' ); echo $product_cat[0]->name; echo wpautop( $product_cat[0]->description );
How to fix this kind of error? This is showing on your console of a browser. adsbygoogle.js:35 Uncaught TagError: adsbygoogle.push() error: All ins elements in the DOM with class=adsbygoogle already have ads in them. With this codes below, your problem is solve. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> jQuery(document).ready(function($){ $('ins').each(function(){ (adsbygoogle = window.adsbygoogle || []).push({}); }); });…
Having trouble on the auto filling the color of telephone number? Most common color is blue for the links. Here’s the solution below. Just copy and paste this inside to to your . <meta name="format-detection" content="telephone=no">
Copy the codes below to your functions.php add_filter('rtmedia_plupload_files_filter', 'rt_custom_allowed_types', 10, 1); function rt_custom_allowed_types( $types ){ global $bp; if ( $bp->current_component == 'activity' && isset( $types[0] ) && isset( $types[0]['extensions'] ) ) { $types[0]['extensions'] = 'jpg,jpeg,png,gif'; } return $types; } For more information please read this article https://rtmedia.io/docs/developers/allow-custom-media-types/
Here’s how The7 WordPress themes page layout change via filter functions. How to manage your page/post layout? Remove sidebar or sidebar in left or right? We can use filter function to do the task. This is mostly used in custom post type pages. Original code snippets of The7 WordPress themes inc/helpers/html-helpers.php function presscore_main_container_classes( $custom_class =…