Community Forums › Forums › Archived Forums › General Discussion › Woocommerce issues
Tagged: daily dish pro, lifestyle Pro, WooCommerce
- This topic has 5 replies, 4 voices, and was last updated 7 years, 6 months ago by artdeal.
-
AuthorPosts
-
April 6, 2017 at 12:34 pm #204401artdealMember
Before yesterday my site with the lifestyle theme and woocommerce was working fine. I did the upgrade to 3.0 and its been issue and issues every since. My first issue was the image size of the products started to show up smaller. I use the Regenerate Thumbnails plug-in as a fix but that didn't work. So I decided to delete WC 3.0 and re-upload the last version and now the images are back to normal. Now there's more issues.
1) all of my custom php codes no longer work. For example, removing the sale tag when you have a sale price on a product, removing the related products on the product page, removing the sku code from the product page
2) the primary sidebar is showing up on the shop and product pages even though there is nothing in that widget
3) breadcrumbs show up on the shop and product pages even though I do not have them checked off.
I have made sure that I have the latest version of the lifestyle theme. I even tried switching to the Daily Dish Pro and the issues are still there. Please let me know if I need to share a link. I have put up a maintenance mode sign because everything looks a mess.
April 7, 2017 at 12:48 am #204418babreesParticipantI had the issues with the sidebar, but on a new site so I didn't connect it immediately to woocommerce upgrade.
Instead I deactivated all my plugins and then reactivated them. That seemed to do the trick as it all appears to be working ok
April 8, 2017 at 6:58 am #204488SusanModeratorI'm moving this to "General Discussion" as it is NOT a forum bug or suggestion.
April 8, 2017 at 10:43 am #204506artdealMemberSorry about that Susan. Thanks for the correction.
Babrees, thanks for the suggestion. I have uploaded a fresh install of the Lifestyle Pro theme, upgraded to Woocommerce 3.0.1, and turn off the plugins before slowly adding them back one by one.
Issues fixed: sidebar is no longer showing on full width layout (yes!); breadcrumbs which wasn't enabled has disappeared (yes!); WC system status now says theme is supported - need to add a piece of PHP code because it wasn't working with just the Genesis Connect for WC plugin activated (yes!); remove the sale sign on products with sale price by using a piece of CSS code (yes!)
Issues that I still need assistance with:
(1) Related products still show up the custom PHP code is breaking my site. This is what I had which worked previously.
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
(2) product images are showing up smaller then what they were previously
April 10, 2017 at 6:00 am #204547Victor FontModeratorIt looks like that product function may have changed. You can only remove an action that is called with add_action. The woocommerce_output_related_products() function is called directly in code, not with add_action. It does have a filter however. Try this:
add_filter('woocommerce_output_related_products_args', '__return_false');
Regards,
Victor
https://victorfont.com/
Call us toll free: 844-VIC-FONT (842-3668)
Have you requested your free website audit yet?April 10, 2017 at 11:28 am #204575artdealMemberThanks for your suggest Victor, however, that didn't work.
-
AuthorPosts
- The forum ‘General Discussion’ is closed to new topics and replies.