最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

White screen only on some woocommerce products

matteradmin9PV0评论

It was all working normally, suddenly some products are with the whole screen white, simply nothing appears on the page.

I've already disabled most plugins, rename images, change url and nothing, continue the same problem.

It was all working normally, suddenly some products are with the whole screen white, simply nothing appears on the page.

I've already disabled most plugins, rename images, change url and nothing, continue the same problem.

Share Improve this question asked Oct 25, 2018 at 15:44 sNniffersNniffer 1011 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

Note

  • You should perform the following steps on the staging site. You can create a staging site by cloning the current site to another domain or a sub-domain.

  • Implement the working solution to the live site.

Try the following points one by one and check if it fixed the issue. If one step didn't work, then move to the next step.

  1. Increase Memory Limits
    • Add define('WP_MEMORY_LIMIT', '256M'); in wp-config.php
    • Add php_value memory_limit 256M in .htaccess
    • Add memory_limit = 256M in php.ini
    • Try to increase the value to higher value if 256M is not working
  2. Disable Plugins
    • Disable all plugins one by one
  3. Disable Active Theme
    • Switch back to default theme
  4. Switch on Debugging
    • Add define( 'WP_DEBUG', true ); in wp-config.php
    • It may show the error messages instead of the white screen. You may get hint to fix the issue after seeing the error

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far