Jump to content

d4rkbl4de

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Location
    Canada
  • Activity
    Web development agency

d4rkbl4de's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hello all, The way Prestashop filters doesn't give a solid link to which i can link my slideshow. My client wants his slideshow to link to all products from a certain Manufacturer, in this case to ProDerm. How do I do this? https://boutique.figurra.ca/en/
  2. Hi there! My client recently came to me and asked if he could link a page that would show the products of a specific manufacturer. I noticed that you can't link such a thing with the filters. For example, this https://boutique.figurra.ca/en/12-skin-care#/manufacturer-pro_derm brings me right back to Skin Care at the root with no filters. Is it possible to link such a page? Thank you!
  3. Hi! I've done research for hours and nothing seems to work. Is there anything I need to do other than add the tracking URL to the carrier with the @ where the tracking number is supposed to go + add tracking number to order? When the in transit email is sent, no tracking URL appears.
  4. Hi, I just noticed that when I resize my window to mobile size on my desktop, the categories in the menu are clickable (brings you to the category page) but, when I try on mobile and tablet, it doesn't click. I've tried it on demo too, didn't change anything. Is this normal behaviour? Seems like a bug to me. In any case, I'd like to have clickable everywhere. Tried to mess with the CSS but to no avail. Anybody have fixed this? http://boutique.figurra.ca/en/ Thanks!
  5. Hi all! I've been trying to make my shipping work. It's custom for Canada Post. The condition are free under 150$ and ship only to Canada for 14.95$. I've been trying for North American in it's entity to make things simple but, to no avail. When I set my free shipping and I go over 150$, it works but, else, it doesn't show. It says "There is 1 error There are no carriers that deliver to the address you selected." I've set the warehouses, connected them to the carriers, set up every product for it. Nothing works. Anybody has anymore ideas? Thanks PS : If you guys want access of my backend, I'll give it gladly. Been working for hours on this.
  6. Hi, My Prestashop has a rather large menu so I'm trying to figer out how to make the menu switch to mobile layout for tablets too because it doesn't fit. There's no option in the backend, or I didn't find it. My theme is based off the default bootstrap theme. How would I do that? Thanks!
  7. Hello! Pretty straightforward, i'm trying to add the manufacturer name on the product pages but in a link to the manufacturer page. I managed to make the name appear but it isn't linked. <span>{$product->manufacturer_name|escape:'htmlall':'UTF-8'}</span> Any help appreciated! Thanks! Nevermind! Found it! For those who are searching for it, it's <a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product->id_manufacturer}" title="{$product->manufacturer_name|escape:'htmlall':'UTF-8'}">{$product->manufacturer_name|escape:'htmlall':'UTF-8'}</a>
  8. HI all, I'm a newbie at Prestashop. I've been trying to move the Top Menu to a new div I wanted to create because of design purposes. For that, I understand I need a new hook. I've been looking online and all the tutorials seem to be missing a piece or it's for 1.5. It's confusing as hell and in the 4 hours of struggle, I could not make my custom hook work. 1. so I added a new hook in the database ps_hook name: displayMainMenu 2. I overwrite my blocktopmenu php in override/classes/module <?php class BlocktopmenuMainMenu extends Blocktopmenu { public function install() { if ( !parent::install() || !$this->registerHook('displayMainMenu') ) return false; return true; } public function hookDisplayMainMenu($params) { return $this->hookMainMenu($params); } } ?> 3. I overwrite my Front Controller php in override/controllers/front <?php class FrontController extends FrontControllerCore { public function initContent() { parent::initContent(); $this->context->smarty->assign( 'HOOK_MAIN_MENU', Hook::exec('displayMainMenu') ); } } ?> 4. I add the hook to my header.tpl {if $HOOK_MAIN_MENU} <div id="main-menu"> {$HOOK_MAIN_MENU} </div> {/if} The back office shows my new hook but it won't transplant the menu to it. So I tested the code in core file and it transplants it successfully but the menu doesn't show up in the front office. I want to do it properly so overwriting, so if I do that, it won't transplant AND it won't show up. What am I doing wrong or can somebody point me to a good tutorial that isn't chaotic and confusing? Thanks in advance.
×
×
  • Create New...