Redirection of an article that is no longer sold

16.12.2018 04:39
#1
emmamillathompson
Joomshopping forum user no avatar
Name: thompson
16.12.2018
Posts: 1
Quote
Redirection of an article that is no longer sold

Could one not write an addon where one has the possibility of removing links from deactivated articles to e.g. Out of stock can redirect page?

 
16.12.2018 20:38
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25941
Quote
Aw: Redirection of an article that is no longer sold

Default;
1.hide product
2. hide button Buy

 
17.12.2018 12:40
#3
FrankG.
User FrankG.
Name: Frank
30.11.2011
Posts: 1600
Quote
Aw: Redirection of an article that is no longer sold

admin - 16.12.2018 20:38
Default;
1.hide product
2. hide button Buy


I had the requirement years ago also already times...
It should be possible that articles which were deactivated or deleted are forwarded to a certain page.

e.g. "Article no longer available"

 
28.12.2018 10:15
#4
FrankG.
User FrankG.
Name: Frank
30.11.2011
Posts: 1600
Quote
Aw: Redirection of an article that is no longer sold

no idea?

 
28.12.2018 20:53
#5
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25941
Quote
Aw: Redirection of an article that is no longer sold

change product template
components\com_jshopping\templates\default\product\product_default.php

add code:

if ($this->product->getQty() <= 0) {
?> Your HTML code<?php
return '';
}


or redirect

if ($this->product->getQty() <= 0) {
JFactory::getApplication()->redirect('index.php........');
return '';
}


 


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.