amch
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] API Anbindung anpassenWir haben Teilnahmenummern für 4 Produkte hinterlegt. (Paket, Kleinpaket, Paket International und Warenpost International). Bei Labels sind die Standard Services angelegt, also DHl Paket für National und DHL Paket International für Ausland. “Automatisch Labels zu Sendungen erstellen” ist ausgeschaltet. Wir erstellen die Label manuell und wählen dabei zwischen Paket und Kleinpaket (Warenpost steht noch zur Auswahl aber buchen wir nicht mehr).
Mir scheint, ich kann die Warnung von DHL einfach ignorieren und Germanized hat alles im Griff. (?)
Forum: Plugins
In reply to: [Germanized for WooCommerce] API Anbindung anpassenHallo Dennis,
alle Plugins sind auf dem aktuellen Stand. Laut dhl wird das alte Warenpost Produktkürzel derzeit noch automatisch von ihrem System umgewandelt. Da dieser Workaround bald endet, wurden wir aufgefordert, das Kürzel in der API-Anbindung zu ersetzen. Deshalb nochmal meine Frage:
WO kann ich das Produktkürzel V62WP durch V62KP ersetzen ?
Forum: Plugins
In reply to: [Germanized for WooCommerce] API Anbindung anpassenJa, Shiptastic und dhl für Shiptastic sind installiert. Produkte und Teilnahmenummern sind hinterlegt und wir versenden bereits Kleinpakete.
Aber wo kann ich das Produktkürzel V62WP durch V62KP ersetzen?
Forum: Plugins
In reply to: [Germanized for WooCommerce] dhl Versandbedingungen/ZollabgabeHi,
der Service PDDP ist mir bekannt. Meine Frage bezieht sich auf die vier Versandbedingungen. (Delivery duty paid, Delivery at place, Delivery duty paid excl. Mwst und Delivery duty paid exd. Zölle, Steuern u.Mwst) Diese Begriffe sind meinem DHL Ansprechpartner nicht bekannt und kommen im dhl Versandportal nicht vor. Sie müssen also von Germanized kommen.
SOLVED IT!
Thanks ijas, for the quick fix. Works well now!
But now that I can see the badges on the single product, how can I make them responsive? The settings (font, position) which work well on the archive page don’t look good on the larger image on the single page. CSS?
Hi akgt
did you manage to solve the problem? I am dealing with the same issue.
Forum: Plugins
In reply to: [WooCommerce] Please help me customize wc widget ‘Recently viewed products’I worked around most of my issues, so I am closing this thread
Forum: Plugins
In reply to: [PW WooCommerce Gift Cards] Apply gift card to subtotalI have again tested gift card redemption with the snippet. It has no effect. The outcome is the same as the standard function: the gift card is applied to the total and tax is calculated on the total amount.
This was tested on a staging site, with no other plugins in place.We really need the gift card to be applied to the subtotal so that tax is only calculated on the remaining amount.
Can you please look into this again.
Thank you!Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Can’t set filter on custom fieldWorks really well. Thanks for the great service!
Forum: Plugins
In reply to: [PW WooCommerce Gift Cards] Apply gift card to subtotalI followed your advice, deactivated all snippets one by one,
and ultimately tested a setup with only standard woocommerce and pw gift cards.It made no difference: tax is still calculated on the total, not the subtotal.
How did You get the snippet to work?
This is the snippet I am using:
function custom_pwgc_eligible_cart_amount( $eligible_amount, $cart ) {
$eligible_amount = $cart->subtotal;return $eligible_amount;
}
add_filter( ‘pwgc_eligible_cart_amount’, ‘custom_pwgc_eligible_cart_amount’, 10, 2 );Thanks for the support and explanation.
I found a work-around.HI Yordan,
thanks for coming back to me and providing the snippet. For some reason your snippet does not display anything, but I found another snippet that does print my code.
Is it possible to change my snippet (see below) so that the field is printed next to the article number, both in the same line? What do I have to change?
(I would like to show you a screenshot of an invoice but don’t know how to enter it here)Thanks, Anja
add_action( ‘wpo_wcpdf_after_item_meta’, ‘wpo_wcpdf_product_custom_field’, 10, 3 );
function wpo_wcpdf_product_custom_field ( $template_type, $item, $order ) {
if (empty($item[‘product’])) return;$field_name = ‘_dhl_hs_code’;
$_dhl_hs_code = $item[‘product’]->get_meta($field_name,true,’edit’);
if (!empty($_dhl_hs_code)) {
echo ‘<div class=”_dhl_hs_code”>ZTN: ‘.$_dhl_hs_code.'</div>’;
}Excellent, this worked. The weight is finally off the invoice.
Could you also provide the solution to display other attributes instead?
(_dhl_hs_code, _dhl_manufacture_country)I used the snippets I found in your documentation, but they
a) had no effect
(https://wordpress.org/support/topic/displaying-additional-information-custom-product-attribute-to-invoice/) or
b) produced an error message.
(https://docs.wpovernight.com/woocommerce-pdf-invoices-packing-slips/displaying-product-attributes)Thank you! Appreciate the help.
Anja MCForum: Plugins
In reply to: [Germanized for WooCommerce] ZolltarifnummerHi,
ja, genau genommen brauch ich die ZTN auch nur für die Zollrechnung beim Versand in die Schweiz.
Plugin für Rechnungen: WooCommerce PDF Invoices & Packing Slips
Dann muss ich wohl dort mal nachfragen.Grüße, a.mch