PDA

View Full Version : Remove Parts of Virtuemart


bloggs_x
05-19-2007, 05:28 PM
Hi,
I would like to remove the virtuemart pathway, the picture in the product description, the manufacturer, the vendor information, and the last updated

I have tried editing the flypage to no avail! Please help me!

MiCCAS
05-20-2007, 09:25 AM
Moved to Share J! - Public Chat (http://www.joomlart.com/forums/forumdisplay.php?f=23)

bloggs_x
05-20-2007, 12:29 PM
Anyone? :(

instantinlaw
05-24-2007, 08:01 AM
Hi I may not be of much help here but if you replace the "no product image" with a clear gif, and don't publish an image with your product, you will have what you are looking for on that point.

I also tried to remove the manufacturer info link and had no luck, but I didn't try too hard. Instead I added other information to the page that comes up when you click the link.

As far as the vendor info goes, I was able to get rid of that, but it was so long ago I forget how I did it. I am sure that the settings are in the configuration screen though. I will take a look and post my findings. I have made a tutorial on adding products to VM, so if I can figure out what I did I will make another one for you.

I believe there is another thread on the pathway question. Try doing a search.

I'll be in touch

instantinlaw
05-24-2007, 08:12 AM
This just in....
Two of the settings can be found here Admin>Configuration>Site>Display
One is for the default product image, the other is for the pathway settings.
See attached image for the places you are looking to change.
Still looking for the vendor stuff.

instantinlaw
05-24-2007, 08:23 AM
After looking around the VM admin area I seem to remember that all I did was to delete all the vendors that were loaded by default. Go to Vendor>list vendor and delete all the vendors in the list. I probably deleted all the vendor category listings too.
You can delete any manufacturers too, but I don't think you can delete the default one.
I hope this helps.

instantinlaw
06-14-2007, 09:02 PM
found this over at VM
http://virtuemart.net/index.php?option=com_smf&Itemid=71&topic=19514.0

whouse
08-20-2007, 08:03 PM
To remove the pathway, the checkbox in the admin config didn't work for me. There was a post on the VM forum that did the trick for me. Edit the flypage.php file you are using and remove the {navigation_pathway} from the code (you only have to remove the first line that contains the {navigation_pathway})
Original file looks like this:{navigation_pathway}
<br/>
<table border="0" style="width: 100%;">
<tbody>
<tr>
<td rowspan="4" valign="top" style="text-align:center;"><br/>{product_image}<br/><br/>{more_images}</td>
<td rowspan="1" colspan="2">
<h1>{product_name} {edit_link}</h1>
</td>
</tr>
<tr>
<td rowspan="1" colspan="2">{manufacturer_link}<br /></td>
</tr>
<tr>
<td width="33%" valign="top" align="left">{product_price}<br /></td>
<td valign="top">{product_packaging}<br /></td>
</tr>
<tr style="font-style: italic;">
<td rowspan="1" colspan="2"><hr />{product_description}<br/><span style="font-style: italic;">{file_list}</span></td>
</tr>
<tr>
<td>{product_availability}<br /></td>
<td colspan="2"><br />{addtocart}</td>
</tr>
<tr>
<td colspan="3">{product_type}</td>
</tr>
<tr>
<td colspan="3"><hr />{product_reviews}</td>
</tr>
<tr>
<td colspan="3">{product_reviewform}<br /></td>
</tr>
<tr>
<td colspan="3">{related_products}<br /></td>
</tr>
<tr>
<td colspan="3"><div style="text-align: center;">{vendor_link}<br /></div><br /></td>
</tr>
</tbody>
</table>
{navigation_childlist}<br style="clear:both"/>

After removing the line this is what it looks like:
<br/>
<table border="0" style="width: 100%;">
<tbody>
<tr>
<td rowspan="4" valign="top" style="text-align:center;"><br/>{product_image}<br/><br/>{more_images}</td>
<td rowspan="1" colspan="2">
<h1>{product_name} {edit_link}</h1>
</td>
</tr>
<tr>
<td rowspan="1" colspan="2">{manufacturer_link}<br /></td>
</tr>
<tr>
<td width="33%" valign="top" align="left">{product_price}<br /></td>
<td valign="top">{product_packaging}<br /></td>
</tr>
<tr style="font-style: italic;">
<td rowspan="1" colspan="2"><hr />{product_description}<br/><span style="font-style: italic;">{file_list}</span></td>
</tr>
<tr>
<td>{product_availability}<br /></td>
<td colspan="2"><br />{addtocart}</td>
</tr>
<tr>
<td colspan="3">{product_type}</td>
</tr>
<tr>
<td colspan="3"><hr />{product_reviews}</td>
</tr>
<tr>
<td colspan="3">{product_reviewform}<br /></td>
</tr>
<tr>
<td colspan="3">{related_products}<br /></td>
</tr>
<tr>
<td colspan="3"><div style="text-align: center;">{vendor_link}<br /></div><br /></td>
</tr>
</tbody>
</table>
{navigation_childlist}<br style="clear:both"/>

tcraw1010
08-20-2007, 08:13 PM
found this over at VM
http://virtuemart.net/index.php?option=com_smf&Itemid=71&topic=19514.0

I'm surprised you didn't find this thread over at VM . . . http://virtuemart.net/index.php?option=com_smf&Itemid=71&topic=30834.0


:cool:


TOM