• Resolved ausar920

    (@ausar920)


    Hi,

    The templates library is only loading PRO templates. I created and linked an account and synchronized the library in the settings but it does not change anything.

    According to the Element help center, it could be a memory problem because on my website the allocated memory for WP is only 40 mb out of the 512 memory limit.

    I read it could be changed by adding a few lines in the wp-config.php. I already changed some lines in this kind of WP files but I do not to mess it up. How can I do it and where in this file should I add them?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Support Milos

    (@miloss84)

    Hi there,

    Increasing the memory limit in WordPress can be done by editing the wp-config.php file. Here’s a step-by-step guide on how to do it:

    1. Access Your wp-config.php File:
      • Use FTP or a file manager provided by your hosting provider to access your WordPress installation files.
      • Look for the wp-config.php file in the root directory of your WordPress installation.
    2. Backup Your wp-config.php File:
      • Before making any changes, it’s a good practice to create a backup of your wp-config.php file. This ensures that you can revert to the original state if something goes wrong.
    3. Edit wp-config.php:
      • Open the wp-config.php file using a text editor (like Notepad, Sublime Text, or any code editor you prefer).
    4. Add Memory Limit Lines:
      • Add the following lines near the top of the file, just after the opening <?php tagdefine('WP_MEMORY_LIMIT', '256M');
      • If there is already a line with define('WP_MEMORY_LIMIT', ...);, update the value to your desired memory limit. For example:('WP_MEMORY_LIMIT', '512M');
      • Save the changes to the wp-config.php file.
    5. Verify the Changes:
      • To ensure that the changes have taken effect, you can check the Site Health tool in WordPress.
        • Go to your WordPress admin dashboard.
        • Navigate to Tools > Site Health.
        • Click on the “Info” tab and look for the “Server” section. Check the “WP_MEMORY_LIMIT” value.

    Remember to replace the memory limit values with what is appropriate for your website’s needs. Increasing the memory limit can help resolve certain issues related to performance and resource usage.

    If you encounter any issues or are unsure about making these changes, it’s recommended to consult with your hosting provider or a developer who can assist you.

Viewing 1 replies (of 1 total)
  • The topic ‘Librairy not loading’ is closed to new replies.