Module Category 3.0.1 Subcategories show

15.07.2011 03:25
#1
hostactiva
Joomshopping forum user no avatar
Name: leonardo
15.07.2011
Posts: 10
Quote
Module Category 3.0.1 Subcategories show

Hi,

I am pretty new to this component, so far so good.
i just want to know if there is a workaround to make the Module Category 3.0.1 to show ALL subcategories open without having to click its parent category. Something like this:

-Parent 1
--Child 1.1
--Child 1.2
--Child 1.3
-Parent 2
--Child 2.1
--Child 2.2
--Child 2.3

Instead of just
-Parent 1
-Parent 2

I tried to fool around with file default.php under modules/mod_jshopping_categories/tmpl
But i am not much of a php expert myself.

If anyone can have a solution for this I would greatly appreciate it.

Thanks
Leo.

-------

Hat jemand weiß, wie man dieses Modul zu machen, um alle Unterkategorien zu zeigen? Wie folgt:

-Kategorie 1
- Sub-Kategorie 1.1
- Sub-Kategorie 1.2
- Sub-Kategorie 1,3
-Kategorie 2
- Sub-Kategorie 2.1
- Sub-Kategorie 2.2
- Sub-Kategorie 2,3


Das Modul-Code ist:

<?php
foreach($categories_arr as $curr){
$class = "jshop_menu_level_".$curr->level;
if ($categories_id[$curr->level]==$curr->category_id) $class = $class."_a";
?>
<div class = "<?php print $class?>">
<a href = "<?php print $curr->category_link?>"><?php print $curr->name?>
<?php if ($show_image && $curr->category_image){?>
<img align = "absmiddle" src = "<?php print $jshopConfig->image_category_live_path."/".$curr->category_image?>" alt = "<?php print $curr->name?>" />
<?php } ?>
</a>
</div>
<?php
}
?>


Joomla: 1.7
JoomShopping: 3.2.1
PHP: 5.2.17
MySQL: 5.0.92-community
Website Url: http://joomlactiva.com/coauto

Letzte Änderung: 11.08.2011 20:36
 
11.08.2011 20:24
#2
hostactiva
Joomshopping forum user no avatar
Name: leonardo
15.07.2011
Posts: 10
Quote
Aw: Module Category 3.0.1 Subcategories show

Someone can help here?

 
11.08.2011 21:04
#3
Dr.Rivera
Joomshopping forum user no avatar
Name: Jürgen
13.09.2010
Posts: 2276
Quote
Aw: Module Category 3.0.1 Subcategories show

Hello,

I can not help you, maybe "ghawk " has a solution? (Ask in the following post/thread):

http://www.webdesigner-profi.de/joomla-webdesign/joomla-shop/forum/posts/21/602.html


Greetings


Nicht ganz aktuell, aber vielleicht doch noch für einige hilfreich, das E-Book Joomshopping.
Bei Amazon (kindl) und xinxii (ePub):

http://www.amazon.de/JoomShopping-Joomla-Shop-Online-Shop-ebook/dp/B005L9D8MC

http://www.xinxii.com/joomshopping-der-joomla-shop-p-339561.html
 
02.09.2011 02:16
#4
hostactiva
Joomshopping forum user no avatar
Name: leonardo
15.07.2011
Posts: 10
Quote
Aw: Module Category 3.0.1 Subcategories show

I have got any luck!
Anybody???

I had to create a navigation system using standard Joomla External Link type. Which was not fun at all. I think this component is too good to not having a simple Module like the one I am requesting. i dont mind if it cost some money, but it should be available anyhow.

 
07.09.2011 12:58
#5
vj
Joomshopping forum user no avatar
Name: Victor Jonsson
30.08.2011
Posts: 1
Quote
Aw: Module Category 3.0.1 Subcategories show

I'm trying to get this functionality too.

Although I would like to have the products as well.

I want to be able to show categories and the products under the active category. In a tree like fashion.

Will post again if I come up with something or find a solution.


Joomla: 1.7
JoomShopping: 3.2.6
PHP: 5.3.5
MySQL: Ver 14.14 Distrib 5.1.54
 
17.09.2011 12:19
#6
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25853
Quote
Aw: Module Category 3.0.1 Subcategories show

Hi,

I am pretty new to this component, so far so good.
i just want to know if there is a workaround to make the Module Category 3.0.1 to show ALL subcategories open without having to click its parent category


http://www.webdesigner-profi.de/joomla-webdesign/shop/modules/category-tree.html

 
17.09.2011 12:44
#7
Dr.Rivera
Joomshopping forum user no avatar
Name: Jürgen
13.09.2010
Posts: 2276
Quote
Aw: Module Category 3.0.1 Subcategories show

Hello,

is this the right way?

To sell special things like more templates or special pay modules : OK.

To sell things for the basis of joomshopping: Not OK.

That is my meaning.

Greetings


Nicht ganz aktuell, aber vielleicht doch noch für einige hilfreich, das E-Book Joomshopping.
Bei Amazon (kindl) und xinxii (ePub):

http://www.amazon.de/JoomShopping-Joomla-Shop-Online-Shop-ebook/dp/B005L9D8MC

http://www.xinxii.com/joomshopping-der-joomla-shop-p-339561.html
 
06.10.2011 05:15
#8
hostactiva
Joomshopping forum user no avatar
Name: leonardo
15.07.2011
Posts: 10
Quote
Aw: Module Category 3.0.1 Subcategories show

I agree to Dr.Rivera's comment. At least this module functionality SHOULD BE part of the component basis. SHOULD NOT BE a commercial module.

I agree to be charged for an Import/Export or template add on, but for a basic module like the category tree, no way!

I think the Developer should think about his profit strategies before more people will think about moving away from his software.

Thank you.

 
08.06.2014 18:39
#9
marchenkoay
Joomshopping forum user no avatar
Name: marchenkoay
02.04.2012
Posts: 1
Quote
Aw: Module Category 3.0.1 Subcategories show

foreach($this->categories as $k=>$category)
$thecategory = JTable::getInstance('category', 'jshop');
$subcategories = $thecategory->getSubCategories( $category->category_id, 'name', 'asc', 1 );

foreach( $subcategories as $subcategory) ....


Joomla: 3.2
JoomShopping: 4.3.3
 


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.