bug open products

25.04.2012 14:35
#1
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
bug open products

Hi, i am using joomshopping in two different templates, at the beginning after the installation all is ok. After a few hours I have this problem: when i click on a product or on the cart it opens the product or the cart in the homepage under the homepage modules. I tried to deactivate or clean cache, i tried to unistall and reinstall joomshopping but the problem remains. It isn't a problem of caompatibility with other modules (in the two templates there aren't similar modules). I am using the last version of joomshopping, the categories module and the cart module, the site is in multilingual (english and italian) and the theme is the default joomshopping theme. I don't understand why at the beginning is all ok and then appears this problem.


Joomla: 2.5.4
JoomShopping: 3.6.1
 
25.04.2012 18:36
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

http://www.webdesigner-profi.de/joomla-webdesign/joomla-shop/forum/posts/7/955.html

 
25.04.2012 19:21
#3
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

I have this menu item in the main menu, it doesn't solve my problem, i think it isn't a SEO problem. The problem happens when I open the cart too.

 
25.04.2012 19:25
#4
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

Maybe it is a cache related problem, but I disabled the cache so i don't understand, I hope you can help me

 
25.04.2012 19:51
#5
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

url?

 
25.04.2012 20:40
#6
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

now the site is down for maintenance, i can't give you the url. A few hours ago the problem ended, but now it's returned, are there other threads int he forum with similar problems?

 
25.04.2012 21:49
#7
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

90% probem in

http://www.webdesigner-profi.de/joomla-webdesign/joomla-shop/forum/posts/7/955.html

 
26.04.2012 13:09
#8
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

it doesn't solve the bug :(

 
30.04.2012 19:45
#9
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

There isn't anyone how can solve this problem?

 
30.04.2012 19:54
#10
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

if it can help when there is this bug and I open a product the url is ex. index.php/en/component/jshopping/product/view/19/35?Itemid=395, I tried to change the url on the browser and if i remove "Itemid=395" the product open in another page normally. It is possible that the problem is that Itemid=395?

 
30.04.2012 20:12
#11
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

Also i can't create a menu item with empty attributes because the default of "Show" is "All", maybe is it not possibile in Joomshopping 3.6

 
30.04.2012 21:02
#12
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

Yes.

Show: All

 
30.04.2012 21:33
#13
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

The problem remains, the problem is that itemid=395, it is equal for all the products and the categories that I try to show, how can I remove this itemid=395? i tried also to give an alias to the products and the categories but the problem remains, please help me

 
30.04.2012 21:39
#14
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

Yes. Shop open for the 1st menu item.

 
30.04.2012 21:42
#15
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

So what I have to do? i am trying with two different templates, how can I remove this itemid=395?

 
30.04.2012 21:46
#16
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25934
Quote
Aw: bug open products

Chnage

components\com_jshopping\lib\functions.php

change function

function SEFLink($link, $useDefaultItemId = 0, $redirect = 0, $ssl=null) {
$defaultItemid = getDefaultItemid();
if ($useDefaultItemId==2){
$Itemid = getShopManufacturerPageItemid();
if (!$Itemid) $Itemid = $defaultItemid;
if (!$Itemid) $Itemid = JRequest::getInt('Itemid');
}elseif ($useDefaultItemId==1){
$Itemid = $defaultItemid;
if (!$Itemid) $Itemid = JRequest::getInt('Itemid');
}else{
$Itemid = JRequest::getInt('Itemid');
if (!$Itemid) $Itemid = $defaultItemid;
}
if ($link == "index.php") $link .= '?Itemid=' . $Itemid; else $link .= '&Itemid=' . $Itemid;
$link = JRoute::_($link, (($redirect) ? (false) : (true)), $ssl);
return $link;
}


to

function SEFLink($link, $useDefaultItemId = 0, $redirect = 0, $ssl=null) {
$Itemid = JRequest::getInt('Itemid');
if ($link == "index.php") $link .= '?Itemid=' . $Itemid; else $link .= '&Itemid=' . $Itemid;
$link = JRoute::_($link, (($redirect) ? (false) : (true)), $ssl);
return $link;
}


 
30.04.2012 21:51
#17
originalmi
Joomshopping forum user no avatar
Name: andrea
11.04.2012
Posts: 36
Quote
Aw: bug open products

Ok, now the problem is solved but only for the list of products page, it remains for a search products module that I have in the homepage, how can I solve that?

 


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.