jwbdv
Forum Replies Created
-
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] error: The value in the Weight …got it:
had to edit the weight of the product.
solvedForum: Plugins
In reply to: [WooCommerce] if free_shipping show local_pickup_plushx lovingbro,
Hello lovingbro,
I have solved the problem.
I had to check three points:
WooCommerce has a function that deactivates the hiding of other shipping options for free shipping via a checkbox.
I used German Market, which also has this feature.I ultimately used a script:
function my_hide_shipping_when_free_is_available( $rates ) {
$free = [];
$pickup = [];
foreach ( $rates as $rate_id => $rate ) {
$method_id = $rate->method_id; // bewusst ohne Getter, wie in deinem Code
if ( $method_id === 'free_shipping' ) {
$free[ $rate_id ] = $rate;
}
if ( $method_id === 'local_pickup_plus' ) {
$pickup[ $rate_id ] = $rate;
}
}
// Wenn Free Shipping vorhanden โ Free + Pickup anzeigen
if ( ! empty( $free ) ) {
return $free + $pickup;
}
return $rates;
}
add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );Thanks for your help.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] adress 2 not in labelok,
thx so far.
iยดve check on other Adresses, both fields are in the label.
But this donst work:
Post-Nr. 857XXXX566
Packstation XX9
It looks like it depends on the length of the Strings.Is there a restriction?
Can i change the size of the font?
thxForum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] adress 2 not in labelsee here:
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] adress 2 not in labelhi
did you get my email ?Forum: Plugins
In reply to: [WooCommerce PayPal Payments] deactivate pay laterok thx.
i opened a ticket
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] deactivate pay laterForum: Plugins
In reply to: [WooCommerce PayPal Payments] deactivate pay laterhi
i ve added the code, but still i see the ppcp-messages message and in the backend nothing has change.:-/
i just want to DISABEL all pay later features.ok thx a lot (y) ๐
no, the local font ‘jost’ is not displayed in frontend. loggin oder loggout, doenst matter.
thx so far.
it has nothing todo with caching.
not WP Super Cache or Autoptimize.It has something todo with yoast and wpml.
please helpthe cpt is “presse”
the slug is transalted into “press”
the domain is www. lindt-home-of-chocolate .comhm, i dont thing it is a cache issus.
there are urls generated that dont exists, see:/de/presse/gebaeudeuebergabe/
/de/press/gebaeudeuebergabe/
the second one donst exsists as page, it should be inside the sitemaphi ๐
see here: https://pasteboard.co/YN33Az7FeDlE.jpg
thxfound the issus:
it is not working save with generateblocks plugin, if it is insert in an container-blockiยดve to add it outside the container, and then drag it to the position.
thx