solarbotics
Forum Replies Created
-
Solved.
Oxygen Builder 6 Beta4 has a snippet in their code (trying to get them to tell me where it live on the UI) that disables the attribute listing in their plugin subdirectory:
mods/cart.php at lines
61 // Remove variations from product title
62 add_filter(‘woocommerce_product_variation_title_include_attributes’, ‘__return_false’);
Manually adding this php snippet to override this corrects this.
//Enable the attributes for display in BEAR
add_action(‘init’, function () {
if (is_admin()) {
remove_filter(‘woocommerce_product_variation_title_include_attributes’, ‘__return_false’, 10);
}
}, 999);ISSUE IDENTIFIED (but not SOLVED). I searched the plugin for
woocommerce_product_variation_title_include_attributesAnd I found this comment:
// Do not include attributes if an attribute name has 2+ words and the
// product has multiple attributes.I did add another product functionality attribute named “Availability” with the value “Available Online”, so that explains why it didn’t show ANY.
Is there any possibility of a work-around other than converting my attribute value containing a space (one of a fair number) to “Available_Online”?- This reply was modified 5 months ago by solarbotics. Reason: clarification of "solved"
REALLY?!?! Ohboy Ohboy Ohboy! I can’t wait to try this! (But other work has to come first)
Thanks for the super-fast reply.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce dropping Moneris payment gateway?Already done. I was polling the forums to see if anybody else has heard similar.
Ach. Wouldn’t ya know it, it’s already on the known list of incompatible Pantheon Plugins:
https://pantheon.io/docs/plugins-known-issuesDarn. Oh well…
Darn. So the search continues.
We’re using WPAI for the account import (no problem; what a great tool!), but I don’t want to trigger the renewal notices until we’re ready. Ok, looks like we might need to do something custom…
OR, can I write a “reset your password” post, add in a link to the account reset page, and flag that as a notice I want to post to ALL customers?
Thanks,
Dave- This reply was modified 6 years, 8 months ago by solarbotics.