Plugin gesucht

StartZurück 1 2 WeiterEnde
29.03.2017 01:41
#1
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Plugin gesucht

Hallo,
Ich möchte Rahmen verkaufen.
Der Kunde muss höhe und breite angeben und im Anschluss soll der richtige preis erscheinen. Es gibt aber Staffelungen:
Z. B. :
Preis für 0 - 19 Quadratzentimeter = 50€
Preis für 20- 29 Quadratzentimeter = 60€
Usw........

Habe bereits das Plugin "Free attributes calcule price" gekauft. Mit dem kann ich zwar die Quadratzentimeter berechnen lassen jedoch bekomme ich das mit der Staffelung nicht hin.

Ich bitte um Hilfe, mfg Jürgen Unterweger


Website Url: www.Insektenschutz.co.at
 
29.03.2017 07:44
#2
FrankG.
User FrankG.
Name: Frank
30.11.2011
Posts: 1600
Quote
Aw: Plugin gesucht

Hallo Jürgen,

stelle doch mal ein paar Bilder der Konfiguration ein...

Staffelung der Preise und Einstellungen der Größenberrechnung.

Gruß Frank

 
29.03.2017 07:48
#3
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

Set Price per consignment
Aw: Plugin gesucht

 
29.03.2017 14:07
#4
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

FrankG. - 29.03.2017 07:44
Hallo Jürgen,

stelle doch mal ein paar Bilder der Konfiguration ein...

Staffelung der Preise und Einstellungen der Größenberrechnung.

Gruß Frank


Ich hätte einen Testzugang eingerichtet, darf ich dir die Zugangsdaten schicken?
Aw: Plugin gesucht
bildschirmfoto_2017_03_29_um_14.06.49.png

 
29.03.2017 15:41
#5
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

Send me privat msg.

 
30.03.2017 08:35
#6
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

Example for product 1

Price = 50

$width*$height < 20 ? 1 : ($width*$height < 30 ? 1.2 : 1.5)

< 20 - price 50 * 1
< 30 - price 50 * 1.2
> 30 - price 50 * 1.5

 
30.03.2017 16:25
#7
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

webdesigner - 30.03.2017 08:35
Example for product 1

Price = 50

$width*$height < 20 ? 1 : ($width*$height < 30 ? 1.2 : 1.5)

< 20 - price 50 * 1
< 30 - price 50 * 1.2
> 30 - price 50 * 1.5


sorry, but i dont understand that.

Product 1:

6000 cm2 - 7999 cm2 = 108€
8000 cm2 - 9999 cm2 = 137€
10000 cm2 - 11999 cm2 = 248€

can you send me the correct code please?

 
30.03.2017 20:19
#8
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

<6000?
>11999?


Letzte Änderung: 30.03.2017 20:19
 
30.03.2017 20:45
#9
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

6000 cm2 - 7999 cm2 = 108€
8000 cm2 - 9999 cm2 = 137€
10000 cm2 - 11999 cm2 = 248€
12000 cm2 - 14999 cm2 = 329€
15000 cm2 - 17999 cm2= 445€
..........

please, tell me the complete code

 
30.03.2017 21:24
#10
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

Not easy.

product price = 1

$width*$height < 8000 ? 108 : ($width*$height < 10000 ? 137 : ($width*$height<12000?248: ($width*$height<15000?329:445)) )


Letzte Änderung: 30.03.2017 21:25
 
30.03.2017 21:35
#11
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

look, your code does not working
http://www.insektenschutz.co.at/insektenschutzrollo

 
31.03.2017 07:42
#12
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

works.
Aw: Plugin gesucht


Letzte Änderung: 31.03.2017 07:44
 
31.03.2017 18:25
#13
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

Great!
Thank you very much


Letzte Änderung: 31.03.2017 21:14
 
02.04.2017 15:48
#14
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

Hello,

Thank you for your help. I am sorry, but i have another
problem. Here are the exemple:


width: 60 to 69 and hight: 100 to 109 = 108€

width: 70 to 79 and hight: 110 to 119 = 142€

width: 80 to 89 and hight: 120 to 129 = 152€


Is it possible to change it like this?

thank you!

 
02.04.2017 22:08
#15
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

($width >= 60 && $width <= 69 && $height>=100 && && $height<=109) ? 108 : (($width >= 70 && $width <= 79 && $height>=110 && && $height<=119) ? 142: (.....) )

 
02.04.2017 22:33
#16
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

sorry the code not working.
I set the Product price: 1€
then the Code:

($width >= 60 && $width <= 69 && $height>=100 && && $height<=109) ? 108 : (($width >= 70 && $width <= 79 && $height>=110 && && $height<=119) ? 142: ($width >= 80 && $width <= 89 && $height>=120 && && $height<=129) ? 152)

look: http://www.insektenschutz.co.at/insektenschutzrollo


Letzte Änderung: 02.04.2017 22:33
 
03.04.2017 08:02
#17
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

Sorry.

($width >= 60 && $width <= 69 && $height>=100 && $height<=109) ? 108 : (($width >= 70 && $width <= 79 && $height>=110 && $height<=119) ? 142: ($width >= 80 && $width <= 89 && $height>=120 && $height<=129) ? 152)

 
03.04.2017 08:31
#18
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

sorry, but the code dose not work

 
03.04.2017 08:48
#19
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25938
Quote
Aw: Plugin gesucht

fixed
($width >= 60 && $width <= 69 && $height>=100 && $height<=109) ? 108 : (($width >= 70 && $width <= 79 && $height>=110 && $height<=119) ? 142: ($width >= 80 && $width <= 89 && $height>=120 && $height<=129) ? 152 : 200)

else price 200

 
03.04.2017 09:47
#20
vierkant
Joomshopping forum user no avatar
Name: Jürgen
29.11.2016
Posts: 35
Quote
Aw: Plugin gesucht

I can not do this.
I Have you a document attached. what would it cost If you write me for
"Fixrahmen"
"Drehrahmen"
"Insektenschutzrollo"
a code?
preisliste.pdf

 
StartZurück 1 2 WeiterEnde


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.