VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product creation => Topic started by: Whitebrain on January 22, 2012, 10:06:30 AM

Title: No information about the products is shown
Post by: Whitebrain on January 22, 2012, 10:06:30 AM
When i`m trying to open product info, of categories with products ,no info/products are shown,only Joomla template.
The only things are shown:
1)The list of recommended products
2)Product in mini cart (after openning shopping cart,the same prob)
:-\
Title: Re: No information about the products is shown
Post by: PRO on January 22, 2012, 19:43:06 PM
what do you have for

"show out of stock products"   etc?
Title: Re: No information about the products is shown
Post by: Whitebrain on January 23, 2012, 06:28:30 AM
i opened stats and it is written that there are 16 active prod and 0 inactive
p.s Check stock is enabled
finally,i changed lag and found this option "Products Out of Stock are orderable, no special action"
->no changes
I changed the template to standart and it works
I suppose ,I need a component.php(to show print and pop-up pages) file to call my  template and to show,or am i wrong?
got stuck with it ...
Title: Re: No information about the products is shown
Post by: PRO on January 23, 2012, 20:36:37 PM
they show with standard joomla template?

Title: Re: No information about the products is shown
Post by: Whitebrain on January 23, 2012, 21:03:19 PM
yes,u are totaly right ,with standart template they are shown.....
Title: Re: No information about the products is shown
Post by: PRO on January 23, 2012, 21:06:20 PM
so with your other template, when you cannot see them, and you "view page source" do they show up?
Title: Re: No information about the products is shown
Post by: Whitebrain on January 23, 2012, 22:00:46 PM
there is no presence of vm code ...... blanc pages with parts of joomla template(((((
btw how these type of pages is called ,auto generated pages (i mean product info)?
Title: Re: No information about the products is shown
Post by: Whitebrain on January 24, 2012, 10:01:57 AM
partly i solved this problem by adding this code in index.php
<?php if ($_GET['option'] == 'com_virtuemart') : ?>

<div class="Post">

    <div class="Post-tl"></div>

    <div class="Post-tr"><div></div></div>

    <div class="Post-bl"><div></div></div>

    <div class="Post-br"><div></div></div>

    <div class="Post-tc"><div></div></div>

    <div class="Post-bc"><div></div></div>

    <div class="Post-cl"><div></div></div>

    <div class="Post-cr"><div></div></div>

    <div class="Post-cc"></div>

    <div class="Post-body">

<div class="Post-inner">

<div class="PostContent">

<jdoc:include type="component" />

</div>

<div class="cleared"></div>



</div>



    </div>

</div>

<?php else: ?>

<jdoc:include type="component" />

<?php endif; ?>