Announcement

Collapse
No announcement yet.

how i can add left position in product details?

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • how i can add left position in product details?

    This is a question on Themeforest
    how i can add left position in product details. I assigned the module to this position but don’t appear.

    Show sidebar in product detail

    I. Virtuemart

    1.1 : Edit code php : templates\jv-flatize\layouts\index.php

    Update :

    Line 51 :

    PHP Code:
    if (!in_array($view,array('category','virtuemart','ma nufacturer')))

    -> 
    Change

    if (!in_array($view,array('category','virtuemart','ma nufacturer','productdetails')))

    Line 69 :

    if ((
    $view == 'virtuemart' ) || ($view == 'category' ) || ($view == 'manufacturer' ) )

    -> 
    Change

    if (($view == 'virtuemart' ) || ($view == 'category' ) || ($view == 'manufacturer' ) || ($view == 'productdetails' ) ) 
    1.2: Done http://awesomescreenshot.com/02c47nvvef


    II. Hikashop

    2.1 : Config admin

    All module hikashop or menu Shop :

    Select option : http://awesomescreenshot.com/01b47nvi35

    2.2 : Edit css

    templates\jv-flatize\css\hikashop.css

    Remove or Comment css line 851 - 854
    PHP Code:
    body.com_hikashop.layout-show #block-main .row > .sidebar,
    body.com_hikashop.view-checkout #block-main .row > .sidebar { display:none !important}
    body.com_hikashop.layout-show #main-content,
    body.com_hikashop.view-checkout #main-content { width:auto !important; float:none !important; } 
    2.3 : Done http://awesomescreenshot.com/02347nvr9e
Working...
X