newshop
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] [gzd_complaints] in AGB entfernenWow, das nenn ich mal ne schnelle Antwort 🙂
Ja im Impressum liefert er auch keinen Output. Kann es vielleicht daran liegen dass ich den Visual Composer nutze? Der Shortcode ist dort aber ganz normal als Textfeld angelegt und sollte daher aber eigentlich ganz normal einen Output liefern…verstehe ich leider auch nicht..
Viele Grüße!Forum: Plugins
In reply to: [Germanized for WooCommerce] [gzd_complaints] in AGB entfernenAh ok, sehe gerade dass ich den Shortcode einfach im Seite-Bearbeiten-Modus entfernen kann 🙂
Danke auch noch für die Option den Mwst-Satz zu entfernen, funktioniert super 🙂Forum: Plugins
In reply to: [WooCommerce] Exclude specific shipping options for specific Zip codes@tintin102: I know how to setup shipping zones, I did it excately the way you describe. But the problem is that in checkout, woocommerce only checks the country and not the postcode to update the shipping options.
@indell: Thats weird and must be a bug. Did you report this?
@woocommerce: Will there be the possibility to check the available shipping options per postcode in the checkout (NOT in cart) in a future (near) update? Otherweise, I will have to purchase a plugin, I found a few on codecanyon that do the trick but this would be my last choice…
Thank you.
- This reply was modified 9 years, 4 months ago by newshop.
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Add Variation SKUHmm ok..I dont know how to do that.
Thats why I searched for another solution and have a new goal: I would like to include the stock status of each product variation into the contact form. The following code creates an shortcode and this shortcode outputs the stock status for each variation:function availability_info() { global $product; if( $product->is_type( 'variable' ) ){ $variations = $product->get_available_variations(); if( ! empty( $variations ) ){ foreach ( $variations as $variation ){ $variation = $product->get_child( $variation['variation_id'] ); echo $variation->get_formatted_variation_attributes(); echo $variation->is_in_stock() ? __( 'In Stock', 'yith-woocommerce-wishlist' ) : __( 'Out of Stock', 'yith-woocommerce-wishlist' ); } } } elseif( $stock_status == 'out-of-stock' ) { $stock_status = "Out"; echo __( 'Out of Stock', 'yith-woocommerce-wishlist' ); } else { $stock_status = "In"; echo __( 'In Stock', 'yith-woocommerce-wishlist' ); } return $output; } add_shortcode( 'instock', 'availability_info' );So this works.
Now I added the shortcode as dynamic field into a contact form and then the contact form showed the right output, but the admin-email doesnt contain it.
I added [dynamictext stock “instock”] to the form and [stock] to the email.- This reply was modified 9 years, 4 months ago by newshop.
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Add Variation SKUThanks for your answer.
The $product comes from woocommerce. The code I posted is a snippet that I found in this support forum for your plugin. I am just searching for a possibility to add the SKU of a variable product (woocommerce) to the contact 7 form. Do you think this is possible? The SKUs are saved in the database, so I think there must be a way to call them in the form, right?!Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Add Variation SKUHello? No support anymore? 🙁
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for each variationAwesome, thank you so much for the great support, 5star rating will follow!
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for each variationOk, I just switched the two spans and now its correct. Do you agree with my changes?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for each variationThank you very much! First I thought everything works like a charm but then I noticed that the products in stock are marked as “not in stock” and vice versa. I think I have to switch a part of the code but I dont know how. Could you please help me with that?
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] how to add product skuReally no idea?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Stock availability for each variationThere is this plugin WooCommerce Availability Chart that shows the available stock amount. Maybe this could help to create a code..
Hello,
thank you very much for your detailed answer. I have now found a solution by using the Contact Form 7 Dynamic Text Extension. 🙂Forum: Plugins
In reply to: [Germanized for WooCommerce] “inkl. 19% MwSt.” ändern in “inkl. MwSt.”Hi,
vielen Dank, probiere ich heute abend direkt aus. Falls es in der nächsten Version eine Lösung dafür gibt, kann ich auch warten. Wie wahrscheinlich ist das denn und könnt ihr schon einschätzen wann die nächste Version rauskommen soll?Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] how to add product skuI am trying to achieve the same, but I want to output the variation sku. With your codes, it grabs always the parent product sku, not the variation sku. Any idea how to fix that? Many thanks in advance!
Forum: Plugins
In reply to: [Plugin Organizer] Give us back those buttonYes I understood the system, but the reason why I want to drag the plugins I want to activate is that I have many plugins (around 30) but most of them are only needed on specific pages. Every page needs different plugins, p.e. Page 1 needs 3 plugins, Page 2 needs 5 other plugins and so on.
This means that on every page, its important for me to easily see which plugins are active and not which are disabled.
In the current system, I would always have to go through the hole list of available plugins and then disable all plugins I dont need which doesnt give me an clear overview over the few plugins that need to be enabled because I always have to compare the list of available plugins with the list of disabled plugins to see which plugins are eventually active. That makes sense for those who need more plugins enabled than disabled and just want to disable a few plugins on a few pages but in my case, its the opposite: I want most of them to be disabled and selectively enable a few plugins. Do you understand my problem?
- This reply was modified 9 years, 7 months ago by newshop.