Search the Community
Showing results for tags 'rightcolumn'.
-
- 1 reply
-
- blog page
- rightcolumn in blog
-
(and 2 more)
Tagged with:
-
I believe prestashop 1.6.0.11 has a bug or problem in the theme advanced settings or maybe its just my theme causing this problem. 1). In the advanced settings i clicked on display right column and clicked on save button, it went to a blank page. It still does. Does anyone know how to solve that. 2). I am trying to have the right column displayed in the Categories (meta) page, but there is no such option. I used to have it in the old prestashop versions of my other sites as shown in images. I noticed someone asked a similar question somewhere but probably did not get any answer. I cannot seem to find that post any more.
- 3 replies
-
- rightcolumn
- default theme
-
(and 2 more)
Tagged with:
-
Bonjour, Je viens poster une demande d'aide, car j'ai beau chercher, je ne comprends pas mon problème. Je travaille sur un site Prestashop (en développement), et en passant de la 1.6.0.9 à la 1.6.0.11 (je pense que le soucis est apparu à ce moment là), ma colonne de droite à disparu en Front, pourtant, elle est bien présente en BDD, ainsi que dans le BO où il y a des modules de greffer (panier, block catégorie entre autres), mais malheureusement, rien ne s'affiche. Quelqu'un aurait-il une idée d'où peux venir le problème et comment le résoudre ? Il me semblait avoir déjà lu quelque chose du genre sur le forum, mais impossible de remettre la main dessus Merci beaucoup d'avance, Thymotep
-
Hola, Concretamente, despues de actualizar PS a 1.6 (1.6.0.5) los módulos que tenía colgados en la columna de la derecha solamente son visibles en la página de inicio, mi cuenta, contacto y alguno más. Ahora en las páginas del CMS, categorías, producto han desaparecido. Y no tengo ninguna excepción colocada para esas páginas. Por si guarda alguna relación, aquellas páginas a cuyo enlace se llega desde: /index.php?id_category=2&controller=category ó /index.php?id_product=1&controller=product ó /index.php?id_cms=3&controller=cms NO muestran los módulos, en cambio las que llegan con: /index.php?controller=authentication ó /index.php?controller=order SI se muestran perfectamente. ¿Alguna idea?. Gracias Saludos, Juan Carlos
-
As i've just spent half a lifetime on getting this to work, a quick runthrough on how to (re)move your header blockcart, and add it to left or rightColumn (menu). Open global.css Add the lines: #shopping_cart { visibility: hidden; } to the bottom of your file****. This removes the visibility of the Blockcart at the top of the page, but keeps the margins so that you don't have to fix your layout. Open /modules/blockcart/blockcart.php Edit line 164 from: || $this->registerHook('top') == false to: || $this->registerHook('right') == false PERHAPS you might need to change 'right' to 'left' for leftcolumns. I'm not 100% sure this step is even required. Have I said i'm a beginner yet? Now the image still flies to the top right corner, we fix this in (open file:) /modules/blockcart/ajax-cart.js Change line 219 to: if ($('#right_column #cart_block').offset().top && $('#right_column #cart_block').offset().left) var cartBlockOffset = $('#right_column #cart_block').offset(); Change "right_column" to "left_column" if desired. To fix a bug where the cart disappears entirely when you remove an item from the cart, change (in ajax-cart.js) line 311, from: $("#cart_block").stop(true, true).slideUp(200); to: $("#header #cart_block").stop(true, true).slideUp(200); Make sure you enable ALL of the following hooks of "blockcart" in your BO: TopOfPages Header of Pages RightColumn or LeftColumn Save/upload files n shit, refresh browser and all that * I'm a beginner, so I probably won't be able to answer any support questions ** Some of this code comes from other parts of this forum, credits to them (can't find your names anymore) *** Worked for version 1.5.3, not tested on any other code **** Blockcart is 'hardcoded' into the theme, so you can't unhook it like other modules.. hence this work-around. Goodluck!
-
I am a newbie to the prestashop modules development. Currently I have developed a module. It is working fine in backend (like update and delete inserted values). But when I tried to check the function of the module from frontend it is not showing. My code for install the module is look like this public function install() { if(!parent::install()) return false; if (!$this->registerHook('leftColumn')) return false; if (!$this->registerHook('header')) return false; if (!$this->registerHook('rightColumn')) return false; return true; } The code for the hook is like this public function hookHome($params) { global $cookie, $smarty; $value=array(); ..................... ............ return $this->display(__FILE__, 'filename.tpl'); } I have tried many methods to show the module in left column and the right column of the page but its not showing there. But when I tried to transplant the module from admin->modules->positions->transplant a module->hook into->displayHome (Homepage content) . it worked in homepage content. But I want to show them in left and right column also. I have tried to use live edit but the module is not showing in left and right column at all. So can someone tell me what is the wrong here? Any help and suggestions will be really appreciable. Thanks.
- 1 reply
-
- module
- leftcolumn
-
(and 2 more)
Tagged with: