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' );
How to increase PHP Max Input Vars? Most common errors I’ve encountered is when I’m adding an menu items in menu dashboard. Some hosting company is easy to fix, something like using php.ini, or .user.ini file. In my case I’m using WP Engine hosting company and I’ve tried this two and I guess its not…
<ul> <li>AAA</li> <li>AAA</li> <li>AAA</li> <li>AAA</li> </ul> var ul_width = 0; jQuery( ‘ul li’ ).each(function(index, element) { ul_width += jQuery( this ).innerWidth; }); jQuery( ‘ul’ ).css(‘width’, jQuery( this ).width(ul_width) });
This plugin hasn’t been tested with the latest major releases of WordPress is showed up to my WordPress plugin after I did not update my WordPress plugins for a year I think or months and many WordPress version is released after that. This is the exact notice message displayed: This plugin hasn’t been tested with…
[wdes-column-generator]
Paste the codes below into your function.php add_action(‘get_header’,’remove_title’); function remove_title(){ if( is_home() || is_front_page() ){ remove_action( ‘genesis_entry_header’, ‘genesis_entry_header_markup_open’, 5 ); remove_action( ‘genesis_entry_header’, ‘genesis_do_post_title’ ); remove_action( ‘genesis_entry_header’, ‘genesis_entry_header_markup_close’, 15 ); } }
How to fix ajax POST /wp-admin/admin-ajax.php 500 (Internal Server Error)? I’m receiving this error in console when I’m about to call my ajax code backend. It appears to me that I am missing global variable in enable the code to work. See the wrong and correct coding below. It might be not the same issue…