Lemon Shop Theme

Contents

1. I can't install theme - Stylesheet is missing

2. Change Image title Bar

3. Error Paralax not working

4. Can't change color on theme option

5. Fatal Error: Allowed Memory Size Exhausted

1. I can't install theme - Stylesheet is missing

If you have download the full package you need to first extract the file  you've downloaded from ThemeForest, the theme is inside of it along  with documentation, license, and other files. You need to upload only  theme folder to your WordPress. This might be helpfull:

https://help.market.envato.com/hc/en-us/articles/202821510-Theme-is-missing-the-style-css-stylesheet-error

2. Change Image title Bar

We have 2 place setting for this.

One foreach page http://prntscr.com/cbq5k9

And one on theme options theme

http://prntscr.com/cbq6qa

Please check and try with this !!!

3. Error Paralax not working

This problem maybe confilg with some javascript. So just go to this file
wp-content\plugins\bears_shortcodes\assets\js\jquery.bears-shortcodes.js
remove line 231 like this http://prntscr.com/ctm815

4. Can't change color on theme option

When you try to change color on theme options but it not working on front-end. Don't worries about it.

Just you need enable LESS CSS on designer .

5. Fatal Error: Allowed Memory Size Exhausted

It’s very common to get fatal error messages about memory; ‘Fatal Error : Memory Size Exhausted’. This can happen when you install themes, plugins or upgrade to the latest WordPress version. Such types of problems arise because the PHP Memory Limit of your Host is pretty less than what the process requires for performing it’s functions. In such a case you would need to follow these 5 tips to Increase your host’s PHP Memory Limit, these were provided by Dailybloging.org

Tip 1: Increase the limit via PHP.ini file – You can directly increase the PHP Memory Limit if you’ve access to the PHP.ini file. Most small Shared hosting servers won’t give you access to the PHP.ini file. But some servers allow you to create a duplicate PHP.ini in your respective site Directories whose data/values will override the default PHP.ini values. To do that you just need to create a file with the name ‘php.ini’ in the directory where your WordPress site is installed. In that just add the command memory_limit = 360M in it to increase the Memory Limit to 360 MB.

Tip 2: Changing the Memory Limit via wp-config.php – If you don’t want to mess with the PHP.ini file, then you can go for this method. In this you won’t be needing to create any extra file in your Directory. Just Adding define(‘WP_MEMORY_LIMIT’, ’360M’); in your ‘wp-config.php’ file would increase your PHP Memory Limit to 360 MB.

Tip 3: Modifying the .htaccess file to Increase Memory Limit – A Default WordPress Installation won’t have a .htaccess file. But in case you already have it for some purposes like ‘301 Redirection’, just add the command php_value memory_limit 360M in your ‘.htaccess’ file and your memory limit will increase to 360 MB.

Tip 4: Changing the Memory Limit via wp-config.php – This method is just an Alternate to the php.ini method. Because the function of the code we use in this method is same as what we put in the php.ini file.You just need to place the code ini_set(‘memory_limit’,’360M’); in the ‘wp-config.php’ file which is placed in the root folder of your WordPress installation.

Tip 5: Have a talk with your Host – If you are a person who is new to all these techie sounding things then it’s better to have a Live Chat / a Call with your Host right away. It’s your right to talk to them & get the necessary changes you need as you’ve paid for it.