Jump to content

BeamerInTilburg.nl

Members
  • Posts

    6
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Tilburg
  • Activity
    User/Merchant

Recent Profile Visitors

1,499,749 profile views

BeamerInTilburg.nl's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Second question: How to hide the tab when the products have no video's?
  2. Can anyone tell me if this module should work with PS 1.4.7.3? After I install I get php warnings everywhere. I get these at the module overview: Warning: include_once(../../classes/Product.php) [function.include-once]: failed to open stream: No such file or directory in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\prestashop2\modules\productvideos\productvideos.php on line 12 Warning: include_once() [function.include]: Failed opening '../../classes/Product.php' for inclusion (include_path='.;C:\php5\pear') in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\prestashop2\modules\productvideos\productvideos.php on line 12
  3. Does anyone have a working free module for 1.4? This should be included into the main release though...
  4. I have the same problem with a different module. How to override a module's css file?
  5. Anyone? Seems to me like an important feature, which should be as default in Prestashop? This is what you want for SEO, right?
  6. Hi, The title (alt) in my category tree links are now showing the category description (which is quite long). I want to show the meta description instead. I (guess I) know which files I have to edit: modules/blockcategories/blockcategories.php public function getTree($resultParents, $resultIds, $maxDepth, $id_category = 1, $currentDepth = 0) { global $link; $children = array(); if (isset($resultParents[$id_category]) AND sizeof($resultParents[$id_category]) AND ($maxDepth == 0 OR $currentDepth < $maxDepth)) foreach ($resultParents[$id_category] as $subcat) $children[] = $this->getTree($resultParents, $resultIds, $maxDepth, $subcat['id_category'], $currentDepth + 1); if (!isset($resultIds[$id_category])) return false; return array('id' => $id_category, 'link' => $link->getCategoryLink($id_category, $resultIds[$id_category]['link_rewrite']), 'name' => $resultIds[$id_category]['name'], 'desc'=> $resultIds[$id_category]['description'], 'children' => $children); } modules/blockcategories/category-tree-branch.tpl <a href="{$node.link}" {if isset($currentCategoryId) && ($node.id == $currentCategoryId)}class="selected"{/if} title="{$node.desc|escape:html:'UTF-8'}">{$node.name|escape:html:'UTF-8'}</a> I kinda understand the code, however I lack the skill of adding new features. Can someone help to let the function getTree also return the category's meta description? Thanks!
×
×
  • Create New...