Need shipping free

01.11.2025 19:14
#1
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Need shipping free

shows message when I set value in shop/settings/checkout

but as I have different terms for different counties, I use free shipping value in Addon delivery price for categories.
and for each country depending shipping types.
but I have to have 0 or (-1 default) setting in shop/settings/checkout.
and in this case the message never shows up.

So it would be cool if the free shipping value could also be checked in the shipping details.
or as alternative to be able to put a country dependend value for free shipping somewher.

Thanks for taking into consideration.

PS: if it should work already, I might have a bug somwhere

 
01.11.2025 20:27
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 28100
Quote
Aw: Need shipping free

Free shipping text product
https://www.webdesigner-profi.de/joomla-webdesign/shop/plugins/free-shipping-text-product.html

works with
Calculate for weight/postal code/count/price
https://www.webdesigner-profi.de/joomla-webdesign/shop/shippings/calculate-for-weightpostal-codecountprice.html

 
02.11.2025 08:15
#3
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

that's not what I would need.
I need the message in cart, like need free shipping,
but for settings in shipping price - see screenshot from one of our shipping method costs.

e.g. beginning from 65,00 shipping price = 0
so its like 'free shipping' from 65,00 on but there will be no message since in joomshopping settings menu there is 0 instead of 65,00
and the reason is that for other method costs there are different settings with no price 0
Aw: Need shipping free


Letzte Änderung: 02.11.2025 08:17
 
02.11.2025 08:54
#4
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 28100
Quote
Aw: Need shipping free

I don't understand what message you are talking about?

 
02.11.2025 12:10
#5
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

the blue one above the cart

shows up only if I use field in settings - checkout
but not if I use settings from shipping type
Aw: Need shipping free

 
04.11.2025 14:38
#6
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

could you understand the issue now?

 
04.11.2025 15:52
#7
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 28100
Quote
Aw: Need shipping free

At this step, we don't know the country.
It will be selected later.
checkout/step address

each delivery may have its own price

There are a lot of conditions here.
we can't show ... Price is free...


Letzte Änderung: 04.11.2025 15:54
 
04.11.2025 18:36
#8
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

Oh, I see and understand the problem.

What about shipping costs from shipping price settings in options would overrule the settings in checkout-settings?

In this case one could change the info text to something like
"If you're from *maincountry* you're just EURO 4,- away from free shipping!"

while *maincountry* would be the variable to choose for shopowner matching to the corresponding shipping price entry.
(which could probably be done with a simple language override)


Letzte Änderung: 04.11.2025 18:37
 
04.11.2025 18:51
#9
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 28100
Quote
Aw: Need shipping free

I didn't get the idea.
You can change the text yourself.

 
04.11.2025 19:25
#10
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

Of course I could change a text but that's just the half work because

my settings in OPTIONS > SHIPPINGCOSTS

do not overrule

my settings in SETTINGS > CHECKOUT

-------------------------
example how it could work:
I have a shipping cost entry DPD enabled just for Austria with shipping € 6,- for all categories and free shipping from €65,- for all categories enabled
I have a shipping cost entry HERMES enabled just for GERMANY with shipping € 12,- for all categories and no free shipping value.
then I would set free shipping in SETTINGS > CHECKOUT to € 65,- (corresponding to 'DPD Austria' shipping settings)
My message would then be "If you are a customer from Austria, you're just € xx,- away from free shipping.

When checkout happens you're registered or logged in already.
So if you're from Austria the message was true and if your order was above 65,- it's free shipping.
If you're from Germany it was also true because the it costs €12,- as you're not from Austria.
-------------------------

So one could bypass the missing variables at this early stage of ordering and provide a kind of diplomatic and sales increasing message.

In my layman's view, it should only be a query during the ordering process, which, if a shipping price add-on is present, prioritizes the value entered there. I suspect that both variables/values coexist in checkout phase. However, the entry in the shop settings currently takes precedence.

 
06.11.2025 13:34
#11
auctionbroker
Joomshopping forum user no avatar
Name: Franz
05.06.2012
Posts: 85
Quote
Aw: Need shipping free

my preliminary solution was to change the code in need_shipping_free.php

changed
if ($jshopConfig->summ_null_shipping > 0){
to
if ($jshopConfig->summ_null_shipping >= 0){

added variable
$freeshipping_austria = '65';

changed
$diff = $jshopConfig->summ_null_shipping * $jshopConfig->currency_value - $total;
to
$diff = $freeshipping_austria * $jshopConfig->currency_value - $total;


It works but the downside is of course the predictable loss of the changes in case of updates.

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.