 mytych
Contributor
|
I just updated WordPress to 3.3.1 and WP E-commerce to 3.8.7.6.2 …After doing so my checkout page is significantly slow to load. All of my other pages load under 10 seconds, and my checkout page (the only page linked via /products-page/checkout) is now loading 40-60 seconds every time.
It appears that the page is trying to pull my style.css, jquery.js both located in my wordpress theme folder, and Scripts/AC_RunActiveContent.js located in my public.html folder by going through /products-page/
My checkout page is also https – secure and I others having https issues so I wasn’t sure if this was an issue as well.
Is there a function I should delete so my checkout isn’t trying to acquire these files via /products-page/ ?
Thanks for the help!
|
 Ruben Sargsyan
Resident Expert Trusted
|
Hello,
Can you please write here the website url where I can look at the checkout page.
Thanks.
|
 Ruben Sargsyan
Resident Expert Trusted
|
I think you have to remove these codes from your theme files:
<style type=”text/css”>
<!–
@import url(“style.css”);
–>
</style>
and
<script src=”Scripts/AC_RunActiveContent.js” type=”text/javascript”></script>
<script type=”text/javascript” src=”js/jquery.js”></script>
but firstly backup the files.
|