- Posts: 28
- Thank you received: 7
Help with product categories/ shipping customizati
- Dimi Ingle
-
Topic Author
- Offline
- Junior Boarder
-
Less
More
13 years 2 days ago #1170
by Dimi Ingle
Replied by Dimi Ingle on topic Re: Help with product categories/ shipping customizati
Hello
Thanks for the reply
Point 1 worked well, point 2 didnt. It just links the category page image to the file (not in a pop up anmore). I just tried again and its still not working.
Can I PM the link to you? Id prefer not to list the site publically
Thank you
Thanks for the reply
Point 1 worked well, point 2 didnt. It just links the category page image to the file (not in a pop up anmore). I just tried again and its still not working.
Can I PM the link to you? Id prefer not to list the site publically
Thank you
Please Log in or Create an account to join the conversation.
- Linh Robert
-
- Offline
- Banned
-
Less
More
- Posts: 908
- Thank you received: 568
13 years 2 days ago - 13 years 2 days ago #1173
by Linh Robert
If you need to send us FTP access / host access, administrator access or any private information:
services(at)omegatheme(dot)com or drop a ticket www.omegatheme.com/member/
Replied by Linh Robert on topic Re: Help with product categories/ shipping customizati
Hi,
As your request about thumbnail link in:
www.omegatheme.com/ot-boutique-box/updat...tch-issues.html#1169
So if you just want show thumbnail and not link or popup when click to thumbnail, edit templates/ot_boutiquebox/html/com_virtuemart/category/default.php and modify as this:
If want have link from thumbnail to detail page:
If you don't want display short description, in above file, find and remove this code:
To remove add to cart, yellow box, price, remove this code:
That's all in category page you need?
Thanks
As your request about thumbnail link in:
www.omegatheme.com/ot-boutique-box/updat...tch-issues.html#1169
So if you just want show thumbnail and not link or popup when click to thumbnail, edit templates/ot_boutiquebox/html/com_virtuemart/category/default.php and modify as this:
Code:
<div class="product-image">
<?php
$image = $product->images[0]->displayMediaThumb('class="browseProductImage" border="0" title="'.$product->product_name.'" ',true,'');
echo $image;
?>
</div>
Code:
<div class="product-image">
<?php
$image = $product->images[0]->displayMediaThumb('class="browseProductImage" border="0" title="'.$product->product_name.'" ',true,'');
echo '<a href="'.$product->link.'" title="'.$product->product_name.'" >'.$image.'</a>';
?>
</div>
If you don't want display short description, in above file, find and remove this code:
Code:
<?php // Product Short Description
if(!empty($product->product_s_desc)) { ?>
<div class="product-s-desc">
<p class="product_s_desc">
<?php echo shopFunctionsF::limitStringByWord($product->product_s_desc, 50, '...') ?>
</p>
</div>
<?php } ?>
To remove add to cart, yellow box, price, remove this code:
Code:
<div class="product-price-addtocart">
....
</div>
That's all in category page you need?
Thanks
If you need to send us FTP access / host access, administrator access or any private information:
services(at)omegatheme(dot)com or drop a ticket www.omegatheme.com/member/
Last edit: 13 years 2 days ago by Linh Robert.
Please Log in or Create an account to join the conversation.
Time to create page: 0.185 seconds