Jump to content

Ivan Leon

Members
  • Posts

    19
  • Joined

  • Last visited

About Ivan Leon

  • Birthday 03/27/1985

Contact Methods

Profile Information

  • Location
    Murcia, Spain
  • Activity
    Project Owner

Recent Profile Visitors

357,211 profile views

Ivan Leon's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Were you able to fix this?? I'm having the same issue and there is no response from envato market.
  2. Thank you!! was so easy that I feel stupid Do you know a way to remove the SORRY message that appears if there is no products on the category? PS: I am already displaying my subcategories there but that message below look really annoying.
  3. I'm having the same problem specially users on tablet can't use the menu properly. Could you solve this?
  4. is this been ignored at all? I just moved from 1.6 to 1.7 and I'm getting all 404 on my simple products.
  5. Hello Johann, Right now no module is used. By default product and category pages have the appropriate hreflang flags on its code. I have installed (deactivated) the module from Matteo Bononi but its effect on the code is create hreflang flags on the header adding more than the current ones and leaving the ones that comes by default blank.
  6. During a SEO audit over an 1.6.1.9 site, I received hreflang implementation issues since all the CMS pages do not have any hreflang flag. Checking on the source code of all the product and category pages I can find the hreflang for al the available languages in my store: link rel="alternate" hreflang="en" link rel="alternate" hreflang="es" link rel="alternate" hreflang="fr" But when I check all my CMS pages all I can see is: link rel="alternate" hreflang="" link rel="alternate" hreflang="" link rel="alternate" hreflang="" Leaving an empty flag for every language on the store just for CMS pages I created. Thanks for all the help you can give me.
  7. Having the same problem. Is this even considered as a future improvement???
  8. Hello Everyone, Which is the simplest way to set a nofollow tag to an external link for one of the images here in the theme configurator? Thanks.
  9. Hello, I was just doing some test and I added a <h2> tag on the index.tpl file: {if isset($HOOK_HOME_TAB_CONTENT) && $HOOK_HOME_TAB_CONTENT|trim} {if isset($HOOK_HOME_TAB) && $HOOK_HOME_TAB|trim} <h2><ul id="home-page-tabs" class="nav nav-tabs clearfix"> {$HOOK_HOME_TAB} </ul></h2> {/if} <div class="tab-content">{$HOOK_HOME_TAB_CONTENT}</div> {/if} {if isset($HOOK_HOME) && $HOOK_HOME|trim} <div class="clearfix">{$HOOK_HOME}</div> {/if} I can't get the tabs separated. It puts a single H2 tag with the tabs in secuence... any idea???
  10. The link is broken. Which Prestashop version are you using? Are you using the default theme?
  11. Hello wayann, I'm trying to set an override in order to limit the subcategory levels on the menu but is not working even when is a protected funtion according to the original blocktopmenu.php Is it somethig wrong? if (!defined('_CAN_LOAD_FILES_')) exit; class BlockTopMenuOverride extends BlockTopMenu { protected function generateCategoriesMenu($categories, $is_children = 0) { $html = ''; foreach ($categories as $key => $category) { if ($category['level_depth'] > 1) { $cat = new Category($category['id_category']); $link = Tools::HtmlEntitiesUTF8($cat->getLink()); } else $link = $this->context->link->getPageLink('index'); $html .= '<li'.(($this->page_name == 'category' && (int)Tools::getValue('id_category') == (int)$category['id_category']) ? ' class="sfHoverForce"' : '').'>'; $html .= '<a href="'.$link.'" title="'.$category['name'].'">'.$category['name'].'</a>'; if ($category['level depth'] < 4 && isset($category['children']) && !empty($category['children'])) { $html .= '<ul>'; $html .= $this->generateCategoriesMenu($category['children'], 1); if ((int)$category['level_depth'] > 1 && !$is_children) { $files = scandir(_PS_CAT_IMG_DIR_); if (count($files) > 0) { $html .= '<li class="category-thumbnail">'; foreach ($files as $file) if (preg_match('/^'.$category['id_category'].'-([0-9])?_thumb.jpg/i', $file) === 1) $html .= '<div><img src="'.$this->context->link->getMediaLink(_THEME_CAT_DIR_.$file) .'" alt="'.Tools::SafeOutput($category['name']).'" title="' .Tools::SafeOutput($category['name']).'" class="imgm" /></div>'; $html .= '</li>'; } } $html .= '</ul>'; } $html .= '</li>'; } return $html; } }
  12. Hi!!! Thanks for the help. It has been very useful. I'm not good at coding css so I just needed to know if there's any way to make the menu text color and the drop down list text color different from each other. I'm on line 92 on the last file Billy upload but I can not find where I can make the menu text black (no background) and the dropdown text white. Thanks in advance.
  13. I'm having the same issue not just with cms pages, also with the cms categories. Managing the cms pages is only one of each but from the modules (blocktopmenu, blockcms, etc.) it shows all of them twice. All of this happen since I update to 1.6.0.11 and now I'm on 1.6.0.14 having the same issue. I hope someone can help us.
  14. Hello Hirosaki, have you tried to update the language pack?? I had a similar issue with a module a form and the only way I could fix it was by importing again the language according to my location. Set a database backup and try it.
  15. Hello!!! I'm having the same issue here. Still no answer??? Anyone have found a solution for this??? It would be really appreciated.
×
×
  • Create New...