anikoni
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change order of address fields on my account pageGot it with the above filter. Thanks for the hint!
Forum: Plugins
In reply to: [WooCommerce] Change order of address fields on my account pageI mean there is this woocommerce_default_address_fields filter but they say:
In specific cases you need to use the woocommerce_default_address_fields filter. This filter is applied to all billing and shipping default fields:
country
first_name
last_name
company
address_1
address_2
city
state
postcodeSo I can not change the position of e.g. the email with it. Very confusing…
Forum: Plugins
In reply to: [WooCommerce] Change order of address fields on my account pagethanks but this only works for checkout fields. But I need it for the address fields in my account…
Forum: Plugins
In reply to: [Contact Form 7] This field has syntax errors.Same problems here. Hoping for a soon fix or explanation how to get rid of these errors. Thanks.
Forum: Plugins
In reply to: [woocommerce] ordering fields on my-account/edit-address/billing/Did you find a solution? I am searching for the same…Would be great if you would let me know what worked for you. Many thanks in advance!
Forum: Plugins
In reply to: [WooCommerce] Add a short description on the checkout pageOne more question: How can I add the excerpt to order-details-item.php. Somehow
echo $_product->post-> post_excerpt;
doesnt work here..Forum: Plugins
In reply to: [WooCommerce] Add a short description on the checkout pageOk, thank you again and have a great day!
Forum: Plugins
In reply to: [WooCommerce] Add a short description on the checkout pageGeat, that works! Thank you so much!
Would it be possible to implement this into functions.php too? I always prefer this instead of editing templates. Thank you!Forum: Plugins
In reply to: [WooCommerce] Add a short description on the checkout pageThanks but this is not what I am searching for. I know how to edit templates and for this I need to edit review-order.php. But I dont want to add any short description manually – I want wordpress to grab automatically the short description that is set for the respective product. Any idea?
Forum: Plugins
In reply to: [WooCommerce] Add a short description on the checkout pageDid you find a solution for this and would you share it with me? That would be soooo great ?? Many thanks in advance and have a nice sunday!
Forum: Plugins
In reply to: [Loco Translate] Will the nexr update provide custom locations?Wow, this is great and will loco make an absolutely must-have plugin ?? Cant wait until its out!
Forum: Plugins
In reply to: [Germanized for WooCommerce] Hooks aushakenAls php-version nutze ich 5.6.16 falls das eine rolle spielt…
Forum: Plugins
In reply to: [Germanized for WooCommerce] Hooks aushakenOk, super, vielen Dank!
Jetzt hab ich noch eine Frage dazu: Ich würde die Lieferzeit gerne an einer anderen Stelle in der Warenkorb-Tabelle ausgeben. Das Problem ist nur dass es an dieser Stelle keinen Hook gibt wo ich sie einhaken kann da es sich um eine selbst erstellte, zus?tzliche Spalte handelt. Habe versucht eine eigene Funktion zu erstellen:function my_delivery_time() { global $post, $product; ?> <span class="custom-delivery-time-info"><?php echo wc_gzd_get_gzd_product( $product )->get_delivery_time_html();?></span> <?php } add_action( 'custom_delivery_time', 'my_delivery_time' );
und diese dann per
<?php do_action( 'custom_delivery_time' ); ?>
an die gewünschte Stelle in der cart.php meines Childthemes zu integrieren. Die Lieferzeit wird dann auch wie gewünscht angegeben, allerdings erscheint darüber die Fehlermeldung:
Warning: Creating default object from empty value in /kunden/…/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-product-functions.php on line 24Was mache ich falsch?
Vielen Dank und liebe Grü?e!Forum: Plugins
In reply to: [Germanized for WooCommerce] Hooks aushakenKann ich auch mehrere Hooks/Filter über den gleichen init-Hook entfernen? Also so:
add_action( 'init', 'my_function_init' ); function my_function_init() { remove_filter( 'woocommerce_cart_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'cart_product_delivery_time' ) ); remove_action( 'woocommerce_after_cart_totals', 'woocommerce_gzd_template_small_business_info', wc_gzd_get_hook_priority( 'cart_small_business_info' ) ); }
Funktionieren tuts nur ich wei? nicht ob das zu irgendwelchen Problemen führen kann?
Forum: Plugins
In reply to: [Germanized for WooCommerce] Hooks aushakenHab den Fehler gefunden, ganz doof meinerseits: hab das Plugin “Plugin Organizer” installiert und Plugins seitenweise zu aktivieren oder deaktivieren. Und auf der Seite wo die Fehlermeldung kam war Germanized deaktiviert, daher konnte der Hook nicht zugeordnet werden. Das w?re also gekl?rt. ??