|
17.06.2025 16:04
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Rabattcode nach oben schieben
Hallo,
ich bräuchte Hilfe. Und zwar ist der Rabattcode nicht mehr unter dem Warenkorb zu sehen sodern rutscht jetzt unter den Empfehlten Produkten.
Wo kann ich das umstellen das der Rabattcode wieder gleich unter dem Warenkorb zu sehen ist?
Die Kunden finden es so nicht immer.
Danke
|
| |
|
17.06.2025 16:12
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
works for default template

-------------
See original JoomShoping template.
Letzte Änderung: 17.06.2025 16:12
|
| |
|
17.06.2025 16:35
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
Aj es funktioniert aber die Empfehlten Produkte (cross selling) schieben sich dazwischen. Kann man da nichts tun?
Letzte Änderung: 17.06.2025 16:38
|
| |
|
17.06.2025 17:47
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
url?
|
| |
|
17.06.2025 21:09
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
https://www.smartbikestuff.com/
|
| |
|
18.06.2025 08:19
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
1. Install
Cross-selling/Up-selling 2.5.0
2. configuration / Shop functions
Shop mode: developer
3. Options / Addons
Cross-selling/Up-selling / Maintenance
block_cart: _tmp_ext_html_after_discount
-------------------------------------------------------------
Works for JoomShopping 5.8.0
or edit
components\com_jshopping\templates\default\cart\cart.php
(components\com_jshopping\templates\YOUR_TEMPLATE\cart\cart.php)
after block cart_block_discount
<?php if ($this->use_rabatt && $countprod>0) : ?>
<div class="cart_block_discount">
<form name="rabatt" method="post" action="<?php print Helper::SEFLink('index.php?option=com_jshopping&controller=cart&task=discountsave'); ?>">
<div class="jshop">
<div class="span12">
<div class="name"><?php print Text::_('JSHOP_RABATT')?></div>
<input type="text" class="inputbox" name="rabatt" value="" />
<input type="submit" class="button btn btn-primary" value="<?php print Text::_('JSHOP_RABATT_ACTIVE')?>" />
</div>
</div>
</form>
</div>
<?php endif; ?>
ADD:
<?php print $this->_tmp_ext_html_after_discount?>
Letzte Änderung: 18.06.2025 08:21
|
| |
|
18.06.2025 11:45
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
Thanks but not working. No results
<?php if ($this->use_rabatt && $countprod>0) : ?>
<div class="cart_block_discount">
<?php print $this->_tmp_ext_html_after_discount?>
<form name="rabatt" method="post" action="<?php print Helper::SEFLink('index.php?option=com_jshopping&controller=cart&task=discountsave'); ?>">
<div class="jshop">
<div class="span12">
<div class="name"><?php print Text::_('JSHOP_RABATT')?></div>
<input type="text" class="inputbox" name="rabatt" value="" />
<input type="submit" class="button btn btn-primary" value="<?php print Text::_('JSHOP_RABATT_ACTIVE')?>" />
</div>
</div>
</form>
</div>
<?php endif; ?>
</div>
|
| |
|
18.06.2025 11:55
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
after code ... need add
<?php print $this->_tmp_ext_html_after_discount?>
|
| |
|
18.06.2025 12:03
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
ok is thi sright?
<?php if ($this->use_rabatt && $countprod>0) : ?>
<div class="cart_block_discount">
<form name="rabatt" method="post" action="<?php print Helper::SEFLink('index.php?option=com_jshopping&controller=cart&task=discountsave'); ?>">
<div class="jshop">
<div class="span12">
<div class="name"><?php print Text::_('JSHOP_RABATT')?></div>
<input type="text" class="inputbox" name="rabatt" value="" />
<input type="submit" class="button btn btn-primary" value="<?php print Text::_('JSHOP_RABATT_ACTIVE')?>" />
</div>
</div>
</form>
</div>
<?php endif; ?>
</div>
<?php print $this->_tmp_ext_html_after_discount?>
|
| |
|
18.06.2025 13:02
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
Yes.
|
| |
|
18.06.2025 15:22
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
No results. The Code is still at the bottom!
|
| |
|
18.06.2025 15:36
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
Edit your template.
|
| |
|
18.06.2025 17:20
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
what do you mean?
|
| |
|
18.06.2025 17:32
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
https://www.joomshopping.com/forum/posts/32/17085.html?lang=en#6
Did you do everything as I described?
1. Install
Cross-selling/Up-selling 2.5.0
2. configuration / Shop functions
Shop mode: developer
3. Options / Addons
Cross-selling/Up-selling / Maintenance
block_cart: _tmp_ext_html_after_discount
4. added code (in template cart)
<?php print $this->_tmp_ext_html_after_discount?>
Letzte Änderung: 18.06.2025 17:34
|
| |
|
18.06.2025 17:40
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
Yes, i do all the steps.
My maintenance looks like this. No additional fields
Letzte Änderung: 18.06.2025 17:41
|
| |
|
18.06.2025 21:02
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 28102
|
Aw: Rabattcode nach oben schieben
JoomShopping version?
update to latest.
after
install
Cross-selling/Up-selling 2.5.0
Letzte Änderung: 18.06.2025 21:02
|
| |
|
19.06.2025 17:45
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
Joomshopping Version 5.7.0
|
| |
|
19.06.2025 17:48
|
|
Maiolo
Name: Stefano
28.03.2017
Posts: 55
|
Aw: Rabattcode nach oben schieben
Ok now it works thank you!
|
| |