Jump to content

vkmaxx

Members
  • Posts

    22
  • Joined

  • Last visited

  • Days Won

    1

vkmaxx last won the day on November 8 2020

vkmaxx had the most liked content!

Contact Methods

Profile Information

  • Location
    Lodz/POLAND
  • Activity
    Agency

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

vkmaxx's Achievements

Newbie

Newbie (1/14)

  • Reacting Well Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

6

Reputation

  1. Before installing the module my SEO tags are ok ("alt" and "title"). After enabling the module module instead of 'alt="(some text)"' I get 'alt', the same with 'title'.
  2. Can someone confirm my problem - the module strips "title" and "alt" SEO attributes from pictures on product page.
  3. In PrestaShop 1.7 you can use: {$urls.pages.register} For registration form
  4. OK, in blockcategories.php you need to change: if (isset($resultIds[$id_category])) { $link = $this->context->link->getCategoryLink($id_category, $resultIds[$id_category]['link_rewrite']); $name = $resultIds[$id_category]['name']; $desc = $resultIds[$id_category]['description']; } else $link = $name = $desc = ''; $return = array( 'id' => $id_category, 'link' => $link, 'name' => $name, 'desc'=> $desc, 'children' => $children ); return $return; to if (isset($resultIds[$id_category])) { $link = $this->context->link->getCategoryLink($id_category, $resultIds[$id_category]['link_rewrite']); $name = $resultIds[$id_category]['name']; $desc = $resultIds[$id_category]['description']; $meta = ("" == $resultIds[$id_category]['meta_title']) ? $resultIds[$id_category]['name'] : $resultIds[$id_category]['meta_title']; } else $link = $name = $desc = $meta = ''; $return = array( 'id' => $id_category, 'link' => $link, 'name' => $name, 'desc'=> $desc, 'children' => $children, 'meta' => $meta ); return $return; then SELECT c.id_parent, c.id_category, cl.name, cl.description, cl.link_rewrite to SELECT c.id_parent, c.id_category, cl.name, cl.description, cl.link_rewrite, cl.meta_title and finaly in category-tree-branch.tpl from <a href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|truncate:255:'...'|escape:'html':'UTF-8'}"> {$node.name|escape:'html':'UTF-8'} </a> to <a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.meta|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a> More details in Polish are available here on my blog. Best Regards!
  5. I'm testing a solution for this meta title -> category link problem on this gift shop. If it will be OK I will post solution (just give me 2 days).
  6. Wtedy powyższa linijka ma mieć postać: title="{$node.name|strip_tags:'UTF-8'|escape:'htmlall':'UTF-8'}"
  7. Gdzieś czytałem żeby używać tego podstawowego modułu zamiast tego z obsługą API.
  8. Zobacz czy jak wyświetlisz zmienną: {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} To pokaże Ci się cena bez podatku.
  9. Same problem in 1.6.1.17 - adres format is not applyed.
  10. OK, I solved it. The problems was that entering web page without www was not lunching multistore script, the solution was to add: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] just after <IfModule mod_rewrite.c> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on More information about this problem
  11. Hello, I have problem with configuring multistore in prestashop. My main store is www.prezentyhurt.pl, my second store is www.zakazaneprezenty.pl. If I try to open 2nd store directly it redirects me to first store: www.zakazaneprezenty.pl opens www.prezentyhurt.pl/pl/ But if I open it by adding something to url it open correctly: www.zakazaneprezenty.pl/pl/ opens correct page and I can browse website.
  12. I think you need to configure gmail to use it to send mails, something like "allow external connections" or something like that.
  13. Confirmed working on 1.6.1.17, all problems were solved by deleting cache_index.php Best formating of images + descrpition for me is: return "<img src=\"" + baseDir + "img/p/" + data.image.split('').join('/')+"/" + data.image+ "-cart_default.jpg\" alt=\"" + value + "\" />" + " <div style=\"display: inline-block;width: 65%; padding-top: 20px\">"+ value + "</div>";
  14. Module works in 1.6.1, just make sure that there is folder with emails in your defalult language in: /modules/registeremailonly/mails
×
×
  • Create New...