lussovita
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] "Additional Information" Tab un-hiddenNot sure if this will help your tab issue as well, but this solution helped me get rid of the weight/dimension fields:
Forum: Plugins
In reply to: [WooCommerce] Option to Hide Weight/Dimensions from Product Details MissingThank you!
Forum: Plugins
In reply to: [WooCommerce] Add to Cart Custom Text Reverts to DefaultOr rather:
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 + function woo_custom_cart_button_text() { return __( 'Buy', 'woocommerce' ); }Forum: Plugins
In reply to: [WooCommerce] Add to Cart Custom Text Reverts to DefaultAnd nevermind – I forgot to use the 2.1 compatible version of the product archive code in addition to the product code above:
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text_archive' ); // 2.1 + function woo_custom_cart_button_text_archive() { return __( 'Buy', 'woocommerce' ); }Forum: Plugins
In reply to: [WooCommerce] Add to Cart Custom Text Reverts to DefaultIgnore the duplicate code entries above, by the way. The first add_filter + function entry is the one I am using.
Forum: Plugins
In reply to: [WP Menu Cart] Warning: Invalid Argument on WP Menu Cart Settings PageFor me, probably about 6 months to a year off. Glad to hear it and I’ll keep an eye out for any updates. Thanks!
Forum: Plugins
In reply to: [WP Menu Cart] Warning: Invalid Argument on WP Menu Cart Settings PageAfter disabling multisite, it seems to be working now. Any plans to support multisite in the future by chance?
Forum: Plugins
In reply to: [WP Menu Cart] Warning: Invalid Argument on WP Menu Cart Settings PageWooCommerce is definitely installed. I believe it is multisite, but I only have a single site on it at present, so no trouble turning off multisite if necessary.
Forum: Plugins
In reply to: [WP Menu Cart] Menu Cart Setup Option Not AppearingExcuse me while I smack my forehead.
Thank you!
Forum: Themes and Templates
In reply to: [Customizr] Logo and Favicon Not WorkingI don’t know what changed, but I was able to get it to work. I suspect that part of the problem (at least with the favicon) was that I was using an image that was too large.
Forum: Themes and Templates
In reply to: [Customizr] Logo and Favicon Not WorkingForum: Themes and Templates
In reply to: [Customizr] Logo and Favicon Not Working