prstshp_joe
Members-
Posts
45 -
Joined
-
Last visited
Profile Information
-
Location
Spain
-
Activity
Other
Recent Profile Visitors
582 profile views
prstshp_joe's Achievements
-
1.6.1.4 Cannot Display Over X Amount Of Multistore Dropdowns
prstshp_joe replied to Ascalion's topic in Bug reports
Sorry for the bump, have you found a solution? Thanks! -
Have you found a solution? I tried to edit the header.tpl but was not very successful.... Line 129: <ul id="header_shop" style="height: 500px; overflow: auto;"> If I don't specify height, the scrollbox is only one line high. If I do specify height, all elements on the left side down to the selected size are not clickable. Any clues? Thanks
-
Hola AMA1MD, No encuentro el módulo en tú página web. Podrías mencionar más detalles y sobretodo el precio? Por parte de nuestra gestora también nos han dicho que en cuanto exista un solo producto con un IVA superior al resto del pedido se puede aplicar ese IVA a los gastos de transporte sin calcular el IVA proporcional correspondiente a todos los productos de la cesta. Gracias
-
El transporte de la mercancía se considera una operación accesoria a la venta de la mercancía y por tanto siempre llevará el mismo tipo de IVA de la operación principal. Por ejemplo, si vendemos alimentos que van al 10%, el transporte también tributará al 10%.Si vendemos varios productos cada uno con un tipo de IVA diferente, el transporte tendremos que repartirlo en proporción al precio de cada producto, de forma que el transporte llevará diferentes tipos de IVA.Lo mismo ocurrirá con el seguro del transporte. Lo que cobre el transportista es irrelevante, ya que como empresa ese iva te lo desgrabas. La agencia de transporte tampoco tiene porqué cobrar lo mismo que le cobras al cliente ni tiene que saber qué va dentro de las cajas para cobrar un iva u otro.
-
Hasta ahora solo ofrecíamos productos con un IVA del 4%, pero ahora me encuentro en la tesitura de vender productos con un IVA del 21%. Desde la gestora nos han explicado que el IVA que se le aplica al coste de transporte debe ser el mismo que los bienes transportados. Podría crear un transportista asociado a cada tipo de producto, pero cuando el carrito combine ambos tipos de producto cobraría dos veces el transporte. ¿Alguien ha podido solucionar esto? Gracias
-
This is what I did so far: In controllers\front\OrderController.php I changed just line 67 adding a "0": if (!$this->context->customer->isLogged(true) && in_array($this->step, array(0, 1, 2, 3))) This alone would be enough to force to log in any user before showing the summary screen. In themes\<my-theme>\order-steps.tpl I changed lines 38 - 55: <li class="{if $current_step=='login'}step_current {elseif $current_step=='summary'}step_done_last step_done{else}{if $current_step=='payment' || $current_step=='shipping' || $current_step=='address' || $current_step=='summary'}step_done{else}step_todo{/if}{/if} first"> {if $current_step=='payment' || $current_step=='shipping' || $current_step=='address' || $current_step=='summary'} <a href="{$link->getPageLink('order', true)}"> <em>01.</em> {l s='Sign in'} </a> {else} <span><em>01.</em> {l s='Sign in'}</span> {/if} </li> <li class="{if $current_step=='summary'}step_current{elseif $current_step=='address'}step_done step_done_last{else}{if $current_step=='payment' || $current_step=='shipping' || $current_step=='address'}step_done{else}step_todo{/if}{/if} second"> {if $current_step=='payment' || $current_step=='shipping' || $current_step=='address'} <a href="{$link->getPageLink('order', true, NULL, "{$smarty.capture.url_back}&step=1&multi-shipping={$multi_shipping}")|escape:'html':'UTF-8'}"> <em>02.</em> {l s='Summary'} </a> {else} <span><em>02.</em> {l s='Summary'}</span> {/if} </li> So far it works as expected. A minor flow is that on empty cart the "current step" defaults to "Summary" instead of "Log in" - any ideas? Thanks!
-
Hi, There's already a topic with the same title that dates back to 2014, so I decided to open up my own thread. So far this is what I did (and works), but I wonder if this is the right way (version 1.6.0.11). In "\themes\My-Theme\shopping-cart.tpl" I changed all 3 lines with "{if $voucherAllowed}" to "{if $voucherAllowed && !in_array($defaultGroupId,array(5,6,7))}" I added in "classes\controller\FrontController.php" in line 372: "'defaultGroupId' => Customer::getDefaultGroupId(Context::getContext()->customer->id)," So I would know what the GroupID of the currently logged user is. Fiddling with FrontController.php is not something I feel comfortable with, is there a better way? Now I'm stuck on changing the checkout process so the first step out of five is to log in. Any ideas? Thank you!
-
Category Sort Order in 1.6.0.9
prstshp_joe replied to kakey25's topic in Configuring and using PrestaShop
The order is set in two different tables. category and category_shop For some reason drag and drop only alters the first. You have to manually modify the latter. Regards -
blocktopmenu not loading any CSS
prstshp_joe replied to chriswcoil's topic in Addons, modules and themes developers
I think it's "displayHeader" not just "Header". However, thank you so much!