stylebutton
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Etsy Integration] sync orders from etsy to WooIs it planned to change this behaviour?
I imagine the following procedure:
1. I have a dummy product in WooCommerce
2. If a SKU does not match, your plugin uses the dummy product and fills this with the title and price from etsy.
3. The etsy order will be synced to WooCommerce order page.And second question.
We have a lot of products with many variations. Every variation has an own SKU.
Is it possible to sync such an order to WooCommerce order page? (we don’t sync products from WooCommerce to etsy, we manage every channel separate)
Thanks and regards
HolgerLegacy price option was the problem. It seams, that legacy mode was automatic enabled after update (i mean last time this was also the problem).
Forum: Plugins
In reply to: [WooCommerce Expand Tabs] anchor links to tabsThanks a lot for this solution!
Best regards
HolgerForum: Plugins
In reply to: [WooCommerce Expand Tabs] anchor links to tabsHi Diana,
i have a link href=”#tab-ux_custom_tab” and a <div id=”tab-ux_custom_tab”>…
But the anchor link is not working correct.
Following example.
Below product picture and shortdescription is an accordion “Wie kommt das Bild auf den Button?” with the link under “Dateiupload” > druckfertige DatenThanks and regards
HolgerI counldn’t figure out the js-file. So i disabled js-combination. Now it seems to work.
ThanksHi Tatvic,
thanks for answer.
I enabled the Plugin, additional on mobile i have empty banners (no images).
Sorry, i don’t know how to make a screenshot at mobile phone. But the site looks normal, except the missing Images. And it is not possible to open the burger menu.
Error log and WP Debug log have no entries for your Plugin.Also with WC 3.8.1 it is not working and also checked with standard theme.
We need a solution urgent…Hi,
after updating to PPOM Version 19.0 and PRO 18.9 the problem with wrong prices at cart occures again.
WP 5.3.2
WooCommerce 3.7.1thanks, works ??
- This reply was modified 5 years, 1 month ago by stylebutton.
- This reply was modified 5 years, 1 month ago by stylebutton.
Thanks for snippet, works perfect ??
new link for product: https://buttons-pins-badges.de/jga-t-shirt-braut-gold-27/
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Help with few issuesFor padding, insert
.form-check-label {margin-left:0!important}
to meta group custom css.
Forum: Plugins
In reply to: [WooCommerce] hide products at specific adult category pageThe solution was to include a condition. First is for hiding the sub categories. Second to remove products only at specific category page.
/** removes Sub categories **/ add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 ); function get_subcategory_terms( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on the shop page if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_product_category( 'buttons' ) ) { foreach ( $terms as $key => $term ) { if ( ! in_array( $term->slug, array( 'slug' ) ) ) { // slug -> Sub categories to hide $new_terms[] = $term; } } $terms = $new_terms; } return $terms; } /** * Exclude products from a particular category on the shop page, but not from sub categories */ add_action( 'woocommerce_product_query', 'hideproduct_pre_get_posts_query' ); function hideproduct_pre_get_posts_query( $q ) { if (!is_admin() && is_product_category( 'slug' ) && is_main_query()) { // hide only at category slug $tax_query = (array) $q->get( 'tax_query' ); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array( 'slug' ), // Don't display products from this category 'operator' => 'NOT IN' ); } $q->set( 'tax_query', $tax_query ); }
Forum: Plugins
In reply to: [WooCommerce] hide products at specific adult category pageThanks for this hint. But unfortunately, this also hide the products at the subcategories pages.