johnlanglois
Forum Replies Created
-
Forum: Plugins
In reply to: [Wishlist for WooCommerce] Delete Icon only FlashesYou can add the WishList folder to the WpRocket ignore section and avoid the caching issue that impacts the icon.
/wt-webtoffee-wishlist/Bad move Woo. You now owe me for 30 minutes of wasted time.
Forum: Plugins
In reply to: [WooCommerce] Error After Lost PW Reset – headers already sent by…I am seeing this error, too.
woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php on line 338Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] OAuth 2.0 in Office365 finally workable?When we use this POSTMAN SMTP with Office365 the HTML emails show up as raw code.
How can we fix this?Thank you.
I am seeing this on multiple sites that I have in a VPS server at Bluehost on 12/02/16 at 11:22 CST
Forum: Localhost Installs
In reply to: Update errors since WP 3.7.1Given that it’s a testing server, we are the server administrators.
Could you be more specific as to what kind of error?
Thanks.Forum: Plugins
In reply to: [WP CleanFix] Deleted Most of My CategoriesWell, “deletes unassigned” is probably where it got us.
The client has a website with over 11,000 pages of recipes in over 350 categories. We had imported those 11,000 pages and assigned them a category of “all imported categories.” At the same time, the client created 350 other categories that we were in the process of assigning the recipes to.
I ran cleanfix as a general cleaning event when we discovered that it removed over 300 of the categories.I would encourage you to incorporate an “are you sure” list of categories about to be deleted with a confirmation button.
Forum: Plugins
In reply to: [WooCommerce] woocommerce email notifications not workingThank you, jimlongo.
I would have missed that. It also seems odd that you can only add email recipients in one place. Has anyone seen a plug-in that adds more versatility to the email moment?Forum: Hacks
In reply to: How to Check cart for Simple ProductFor the benefit of the next pilgrim to come this way, this seems to work.
$add_to_cart_handler = apply_filters( 'woocommerce_add_to_cart_handler', $adding_to_cart->product_type, $adding_to_cart );A simple product returns ” and a variable product returns ‘variable’.
Forum: Plugins
In reply to: Woo-Commerce Variable Products Additional InformationHere’s the opposite direction, which might give you a clue.
I was looking to remove the additional information because it was showing the select list from my custom attributes.//To turn it off you add this to your functions.php remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);Knowing that, look at the WooCommerce API or open the woocommerce-functions.php file and you may be able to trace how that piece gets built.
My instincts are that you could add a filter to tailor this to what you want.
Forum: Plugins
In reply to: Add an empty cart button to cart pageShnize,
The cart.php file is under the cart folder, under templates.
I put it in about line 135.
Just keep it out of the php stream.<input type="submit" class="button" name="clear-cart" value="<?php _e('Empty Cart', 'woocommerce'); ?>" /> <?php do_action('woocommerce_proceed_to_checkout'); ?>This does beg the question why isn’t there a do_action woocommerce_empty_cart?
Forum: Plugins
In reply to: [WooCommerce] add-to-cart form validation, variable products, and add onsNot sure that it impacts your add to cart issue, but your theme is throwing off errors in console. Timestamp: 5/17/2013 8:28:22 AM
Error: downloadable font: download failed (font-family: “SourceSansProRegular” style:normal weight:normal stretch:normal src index:1): status=2147746065
source: http://wordypress.info/font/SourceSansPro-Regular-webfont.woff
Source File: http://wordypress.info/wp-content/themes/rustik/custom.css
Line: 0
Source Code:
@font-face { font-family: “SourceSansProRegular”; font-style: normal; font-weight: normal; src: url(“http://wordypress.info/font/SourceSansPro-Regular-webfont.eot?#iefix”) format(“embedded-opentype”), url(“http://wordypress.info/font/SourceSansPro-Regular-webfont.woff”) format(“woff”), url(“http://wordypress.info/font/SourceSansPro-Regular-webfont.ttf”) format(“truetype”), url(“http://wordypress.info/font/SourceSansPro-Regular-webfont.svg#SourceSansProRegular”) format(“svg”); }Lucas Stark has a plug-in coming on May 2nd that will permit you to order varying quantities and attributes of products. See http://lucasstark.com/woocommerce-bulk-variation-forms/cart/
I am still not sure how to put that into a bundle, but it seems to be on the right path.Did you look at the product bundles plug-in at http://www.woothemes.com/products/product-bundles/
Forum: Plugins
In reply to: [User Photo] update_usermeta & delete_usermetaThank you for the update.
Unfortunately, under WP 3.5 I am getting a “Undefined variable: error in E:\xampp\htdocs\XXXXXXXXXXXXXX\wp-content\plugins\user-photo\user-photo.php on line 499 “
It doesn’t manifest until you try to update the profile.Any ideas?