htb
Forum Replies Created
-
Forum: Plugins
In reply to: [Australia Post WooCommerce Extension] no shipping optionsThanks I got it working!
- This reply was modified 2 weeks ago by htb.
Forum: Plugins
In reply to: [Australia Post WooCommerce Extension] no shipping optionsI found the variation and changed it. thank you. but it is still giving me the same error when I switch off flat rate shipping. any other suggestions?
Forum: Plugins
In reply to: [Australia Post WooCommerce Extension] no shipping optionsthe weight is now set to 0.138kg and still the same error message. any other tips. thanks for your quick response
I had to reset under settings to get it going again.
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Pinterest couldn’t download your feed.by the way I host with wordpress.com
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Pinterest couldn’t download your feed.Still the same problem – which log file do I look at for errors ?
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedi read the code and figured it out…. this works to remove all variations !
function remove_variable_products_from_pinterest_feed( $excluded_products ) {
$excluded_products[] = ‘variation’;
return $excluded_products;
}add_filter( ‘pinterest_for_woocommerce_excluded_product_types’, ‘remove_variable_products_from_pinterest_feed’ );
Forum: Plugins
In reply to: [Etsy Integration For WooCommerce] use short description vs descriptionI don’t see the mappings as your diagram explains – is this the advanced version or where can i find these mappings exactly?
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feed“then configure your catalog or feed rules to *exclude that category*”
how do I do that?
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedI can exclude by category, can you help suggest an approach?
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedit didn’t work, any other ideas to limit variable products?
Forum: Plugins
In reply to: [Pinterest for WooCommerce] condition fieldit did-thanks
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedok thanks…. what about excluding all variable products for now. I found this snippet of code. will it work?
function remove_variable_products_from_pinterest_feed( $excluded_products ) {
array_push( $excluded_products, ‘variable’ );
return $excluded_products;
}
add_filter( ‘pinterest_for_woocommerce_excluded_product_types’, ‘remove_variable_products_from_pinterest_feed’ );Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedI want to control it at product level – would love for you to share how this can be done. thank you
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Select only certain product for feedok – on the product level I found the pinterest section but it only has information about the google category – will leaving this field blank cause it not to be included in the feed?
I also read the documentation and couldn’t find anything to help me switch it off at product level apart from your instructions just now. thank you.