Loading loop, and version update issues..
-
My company acquired a website utilizing your WPeCommerce and Gold Cart plugins. I am being instructed by the owner to add some products to the system, but I am having issues using the plugins.
======================
Store URL: https://visilert.com/?page_id=60
WordPress version: 3.9.2
WP eCommerce version: 3.8.8.5
Gold Cart version: 2.9.7
Theme: Custom ThemeI did this:
1) Within WP-Admin I clicked Products on the left sidebar.
2) I then clicked edit on an existing product (but this also happens when creating new products as well)I expected WPeCommerce to do this:
Have the page to edit a product, or create a new product, and allow user interaction.Instead it did this:
Any left click on the page (even the admin sidebar) grays out the screen and shows a loading bar.
The graying and loading box stay until another left click is performed (I left a tab running for over an hour without it going away)
Any extra clicking just toggles the loading on and off, but does not allow any interaction within the admin dashboard.
I am stuck in this loop of the loading box until closing the tab.======================
I cloned the site into our test site, and the plugin behaves the same as the live site. I thought it could be a version issue, so I updated to the most current version of the WPeCommerce plugin. This indeed did address the gray and loading issues, but now the products page will not display.
======================
Store URL: https://www.wcittest.com/visilert/?page_id=60
WordPress version: 3.9.2
WP eCommerce version: 3.8.14.3
Gold Cart version: 2.9.7
Theme: Custom ThemeI did this:
1) Deleted old WPeCommerce plugin
2) Uploaded new version of WPeCommerce plugin
3) Navigated to products pageI expected WPeCommerce to do this:
Show the products page the same way as the old version of the pluginInstead it did this:
The products page is completely blank.======================
I then followed instructions of disabling all plugins, and re-enabling them one by one. None of these affected behaviour.
I also disabled the theme, cleared cache, and loaded a default theme. I can now see the products page – but it is not the same as the old version.When inspecting the source on the two pages, I can tell the container structure has changed.
These are both using the same shortcode of: [productspage]
But the new version is missing the table class, it only contains the divsThe old version had the content like so:
<div id="default_products_page_container" class="wrap wpsc_container"> <div class="wpsc_default_product_list purchase_table fltright "> <div class="default_product_display product_view_65 all-categories group">...</div> <div class="default_product_display product_view_116 all-categories group">...</div> <div class="default_product_display product_view_118 all-categories group">...</div> <div class="default_product_display product_view_196 all-categories group">...</div> <div class="default_product_display product_view_202 all-categories group">...</div> <table class="purchase product_list">...</table> </div> </div>
The new version has a different format:
<div id="default_products_page_container" class="wrap wpsc_container"> <div class="wpsc_default_product_list"> <div class="default_product_display product_view_65 all-categories group">...</div> <div class="default_product_display product_view_116 all-categories group">...</div> <div class="default_product_display product_view_118 all-categories group">...</div> <div class="default_product_display product_view_196 all-categories group">...</div> <div class="default_product_display product_view_202 all-categories group">...</div> <div class="default_product_display product_view_345 all-categories group">...</div> </div> </div>
In the style sheet it is set so that the divs do not display, so this explains why the page is blank on the new version.
.wpsc_default_product_list .all-categories { display: none; }
However, this doesn’t explain why the structure has changed.
Why am I getting such different behaviour with the new version of the plugin? Or how do I fix the old version gray loading issue?
I need to be able to update the products page for my client, but I am unable to continue with the current state I am in.
- The topic ‘Loading loop, and version update issues..’ is closed to new replies.