Optimize JS and CSS
-
Hello,
1-I’ve worked on my website optimization. Thus, I challenged it with multiple tools and speed assessment sites. I found that way that your wsm_new.js could be minified. It would be half its actual size.
2-In
<head>
section of admin page you load some CSS code using custom_admin.php . This has side effects with other plugin (I can name you which one so you could see by yourself) and not usingwp_enqueue_style
forbid external optimizations. Moreover, custom admin css doesn’t seem effective…3-Minor fix: in css\custom_admin.php, you could change 4 instances of:
<?php echo WSM_URL;?>/images
to
<?php echo WSM_URL;?>images
4-Maybe could you split you CSS into a static part (without any “contextual” computed values) and a dynamic one to complete the set?
Thanks
- The topic ‘Optimize JS and CSS’ is closed to new replies.