If bikestore didn't have product navigation in VM?

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Jan 24, 2013 7:45 am
Reply with quote
Report this post
If bikestore didn't have product navigation in VM? Who can help for turn it out for conivent browse. Thank!
User avatar
Fresh Boarder

Konrad M
Thu Jan 24, 2013 8:27 am
Reply with quote
Report this post
HI,
Where exactly you want to remove it ?
User avatar

GK User
Sat Jan 26, 2013 9:57 am
Reply with quote
Report this post
Hi, Konard, I check these site I under test and also the demo of Gavick, I didn't see the products navigation in vm product page. If you can help for it?
User avatar
Fresh Boarder

Konrad M
Sat Jan 26, 2013 7:55 pm
Reply with quote
Report this post
Please switch to default template and check if problem still exist.
User avatar

GK User
Sun Jan 27, 2013 5:39 am
Reply with quote
Report this post
Hello Konrad

I'm working with the template bikestore v.3.7.1 and I need display the navigation link from one details product to another. (neighbor product)

Please could you explain how to do that show?

Thank you.
User avatar
Junior Boarder

GK User
Mon Jan 28, 2013 4:40 am
Reply with quote
Report this post
Hi, I do it. Only show back to category, also didn't show next product. How to solve? But while I check with demo of Gavick, also didn't found the navigation too.
User avatar
Fresh Boarder

Konrad M
Mon Jan 28, 2013 9:45 am
Reply with quote
Report this post
Same thing is with virtuemart default so it is VM issue. Please ask on their support forum community.
User avatar

GK User
Tue Jan 29, 2013 4:51 am
Reply with quote
Report this post
Hi,

Do you think is VM issue?
I ask because I have installed the templates eSport, YourShop and links to products neighbors is working.


Thank You
User avatar
Junior Boarder

GK User
Tue Jan 29, 2013 9:35 am
Reply with quote
Report this post
Hi,Konrad, I do check that Gavick default didn't come with Product Navigation code. I use quickstart package.
While I copy the code form default.php of vm productdetail, then Back To Category work in bikestore. Still can't found the reason for Navigation. :?
Code: Select all
// Product Navigation
    if (VmConfig::get('product_navigation', 1)) {
   ?>
        <div class="product-neighbours">
       <?php
       if (!empty($this->product->neighbours ['previous'][0])) {
      $prev_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours ['previous'][0] ['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id);
      echo JHTML::_('link', $prev_link, $this->product->neighbours ['previous'][0]
         ['product_name'], array('class' => 'previous-page'));
       }
       if (!empty($this->product->neighbours ['next'][0])) {
      $next_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours ['next'][0] ['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id);
      echo JHTML::_('link', $next_link, $this->product->neighbours ['next'][0] ['product_name'], array('class' => 'next-page'));
       }
       ?>
               </div>
    <?php } // Product Navigation END
    ?>
      <?php // Back To Category Button
   if ($this->product->virtuemart_category_id) {
      $catURL =  JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$this->product->virtuemart_category_id);
      $categoryName = $this->product->category_name ;
   } else {
      $catURL =  JRoute::_('index.php?option=com_virtuemart');
      $categoryName = jText::_('COM_VIRTUEMART_SHOP_HOME') ;
   }
   ?>
   <div class="back-to-category">
       <a href="<?php echo $catURL ?>" class="product-details" title="<?php echo $categoryName ?>"><?php echo JText::sprintf('COM_VIRTUEMART_CATEGORY_BACK_TO',$categoryName) ?></a>
   </div>
User avatar
Fresh Boarder

GK User
Tue Jan 29, 2013 9:39 am
Reply with quote
Report this post
Use revised default.php in productdetail, I get this html in firebug. If disable product navigation in vm config. <div class="product-neighbours"/> will dispear. any one can give a idea to make the page convient for visit? Or if I can open a ticket to Gavick?

<section id="gkMainbody" style="font-size: 100%;">
<div class="productdetails-view">
<div class="product-neighbours"/>
<div class="back-to-category">
<a href="/en/carril-trifasico.html" class="product-details" title="3 Circuit 4 Wire Lighting Track">Back to: 3 Circuit 4 Wire Lighting Track</a>
User avatar
Fresh Boarder

Konrad M
Tue Jan 29, 2013 11:56 am
Reply with quote
Report this post
Ok, let's try again. What exactly you want to achieve ?
User avatar


cron