Tagged: LayerSlider
Just bought the theme and it was working fine. I built two sliders with lots of slides and layers and it looked GREAT! Now, all of a sudden I went to make a small change to one slide and when I clicked on “Enter Preview” I had nothing. Then when I exited and tried to enter again all I got was the ever spinning wheel and had to exit. The slider that I added to show first on my home page showed a grey box for a second than no slider. I tried the other one and all I got was a background with the ever spinning wheel again. I insert the demo slider and it worked fine. It looks like I’ve lost hours of work here and that’s very frustrating! I’m now at a dead stop in designing my site. What do I do?
Hi Gary!
You might want to increase the wordpress php memory limit to at least 128M. Depending on your hosting environment you might experience an issue when trying to access the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to avoid this is to enter the following lines in your wp-config.php file at the root of your installation:
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Cheers!
Ismael
Adding the code you showed below crashed my site. I followed the link you suggested and added this code –
define(‘WP_MEMORY_LIMIT’, ’64M’);
and it seemed to work.
Thanks!