VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: stslit on February 24, 2012, 19:57:25 PM

Title: Search result with out catalog
Post by: stslit on February 24, 2012, 19:57:25 PM
I write it in:
http://forum.virtuemart.net/index.php?topic=98112.msg324614#msg324614
http://forum.virtuemart.net/index.php?topic=98112.msg324867#msg324867
http://forum.virtuemart.net/index.php?topic=98112.msg325037#msg325037
http://forum.virtuemart.net/index.php?topic=98112.msg324983#msg324983

Someone can help me to fix it?

--
Joomla! 2.5.1 Stable
Virtuemart 2.0.2
Title: Re: Search result with out catalog
Post by: d0ublezer0 on February 25, 2012, 11:08:59 AM
Copy this file:
components\com_virtuemart\views\category\tmpl\default.php
to
templates\your_template_name\html\com_virtuemart\category\default.php

And change in that file next lines:
    /* Show child categories */
    if ( VmConfig::get('showCategory',1)) {

to:
    /* Show child categories */
    if ( VmConfig::get('showCategory',1)&& empty($this->keyword) ) {
Title: Re: Search result with out catalog
Post by: stslit on February 26, 2012, 20:29:17 PM
2d0ublezer0
Great! It's so simple and worked :)

I thinking, this feature should be usefull like chek switch in VM amin panel.

And I thinking, I can mark this post like [solved]

P.S.
May be you know, how to hide at top the page seach result: "Choose product type" with dropbox and button "search in shop" with editbox.

Thank you

P.P.S
One more solution fom SamF http://forum.virtuemart.net/index.php?topic=97300.0
Title: Re: Search result with out catalog
Post by: d0ublezer0 on February 27, 2012, 16:33:08 PM
Quote from: stslit on February 26, 2012, 20:29:17 PM
2d0ublezer0
P.S.
May be you know, how to hide at top the page seach result: "Choose product type" with dropbox and button "search in shop" with editbox.
in the same file just add a comment before lines:

      <?php //echo $this->searchcustom ?>
                <?php //echo $this->searchcustomvalues ?>
           

or simply delete this lines
Title: Re: Search result with out catalog
Post by: stslit on March 03, 2012, 16:38:53 PM
d0ublezer0 double thanks  ;D ;D ;D