Jump to content

simchgab

Members
  • Posts

    76
  • Joined

  • Last visited

About simchgab

  • Birthday 06/16/1986

Profile Information

  • Location
    La Plata
  • First Name
    Gabriel
  • Activity
    Other

Recent Profile Visitors

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

simchgab's Achievements

Rookie

Rookie (2/14)

  • Reacting Well Rare
  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done Rare

Recent Badges

6

Reputation

  1. A mi se me reventó una instalación de prueba que tenía de presta en local y al reinstalar y colocar los datos de la BD me aparece el error Module version expected : 5.0 [PrestaShop\PsAccountsInstaller\Installer\Exception\ModuleVersionException 0] Imposibilitando ingresar al BO, anulo prestashop metrics y funciona todo sin problemas, intenté reinstalar el modulo y vuelve a fallar. Alguien sabe como solucionarlo? Gracias
  2. this changes in the tpl of prestashop theme and ps_shoppingcart solve the problem 👍 cart-detailed-totals.tpl (add && $subtotal.type !== ' shipping') this remove from cart * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <[email protected]> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) *} {block name='cart_detailed_totals'} <div class="cart-detailed-totals js-cart-detailed-totals"> <div class="card-block cart-detailed-subtotals js-cart-detailed-subtotals"> {foreach from=$cart.subtotals item="subtotal"} {if $subtotal && $subtotal.value|count_characters > 0 && $subtotal.type !== 'tax' && $subtotal.type !== 'shipping'} <div class="cart-summary-line" id="cart-subtotal-{$subtotal.type}"> <span class="label{if 'products' === $subtotal.type} js-subtotal{/if}"> {if 'products' == $subtotal.type} {$cart.summary_string} {else} {$subtotal.label} {/if} </span> <span class="value"> {if 'discount' == $subtotal.type}-&nbsp;{/if}{$subtotal.value} </span> {if $subtotal.type === 'shipping'} <div><small class="value">{hook h='displayCheckoutSubtotalDetails' subtotal=$subtotal}</small></div> {/if} </div> {/if} {/foreach} </div> {block name='cart_summary_totals'} {include file='checkout/_partials/cart-summary-totals.tpl' cart=$cart} {/block} {block name='cart_voucher'} {include file='checkout/_partials/cart-voucher.tpl'} {/block} </div> {/block} cart-summary-subtotals.tpl -> Same change {** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <[email protected]> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) *} <div class="card-block cart-summary-subtotals-container js-cart-summary-subtotals-container"> {foreach from=$cart.subtotals item="subtotal"} {if $subtotal && $subtotal.value|count_characters > 0 && $subtotal.type !== 'tax' && $subtotal.type !== 'shipping'} <div class="cart-summary-line cart-summary-subtotals" id="cart-subtotal-{$subtotal.type}"> <span class="label"> {$subtotal.label} </span> <span class="value"> {if 'discount' == $subtotal.type}-&nbsp;{/if}{$subtotal.value} </span> </div> {/if} {/foreach} </div> Module -> ps_shoppingcart -> modal.tpl Comment: {**if $cart.subtotals.shipping.value} <p><span>{l s='Shipping:' d='Shop.Theme.Checkout'}</span>&nbsp;<span class="shipping value">{$cart.subtotals.shipping.value} {hook h='displayCheckoutSubtotalDetails' subtotal=$cart.subtotals.shipping}</span></p> {/if**} {** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <[email protected]> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) *} <div id="blockcart-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="{l s='Close' d='Shop.Theme.Global'}"> <span aria-hidden="true"><i class="material-icons">close</i></span> </button> <h4 class="modal-title h6 text-sm-center" id="myModalLabel"><i class="material-icons rtl-no-flip">&#xE876;</i>{l s='Product successfully added to your shopping cart' d='Shop.Theme.Checkout'}</h4> </div> <div class="modal-body"> <div class="row"> <div class="col-md-5 divide-right"> <div class="row"> <div class="col-md-6"> {if $product.default_image} <img src="{$product.default_image.medium.url}" data-full-size-image-url="{$product.default_image.large.url}" title="{$product.default_image.legend}" alt="{$product.default_image.legend}" loading="lazy" class="product-image" > {else} <img src="{$urls.no_picture_image.bySize.medium_default.url}" loading="lazy" class="product-image" /> {/if} </div> <div class="col-md-6"> <h6 class="h6 product-name">{$product.name}</h6> <p class="product-price">{$product.price}</p> {hook h='displayProductPriceBlock' product=$product type="unit_price"} {foreach from=$product.attributes item="property_value" key="property"} <span class="{$property|lower}">{l s='%label%:' sprintf=['%label%' => $property] d='Shop.Theme.Global'}<strong> {$property_value}</strong></span><br> {/foreach} <span class="product-quantity">{l s='Quantity:' d='Shop.Theme.Checkout'}&nbsp;<strong>{$product.cart_quantity}</strong></span> </div> </div> </div> <div class="col-md-7"> <div class="cart-content"> {if $cart.products_count > 1} <p class="cart-products-count">{l s='There are %products_count% items in your cart.' sprintf=['%products_count%' => $cart.products_count] d='Shop.Theme.Checkout'}</p> {else} <p class="cart-products-count">{l s='There is %products_count% item in your cart.' sprintf=['%products_count%' =>$cart.products_count] d='Shop.Theme.Checkout'}</p> {/if} <p><span class="label">{l s='Subtotal:' d='Shop.Theme.Checkout'}</span>&nbsp;<span class="subtotal value">{$cart.subtotals.products.value}</span></p> {**if $cart.subtotals.shipping.value} <p><span>{l s='Shipping:' d='Shop.Theme.Checkout'}</span>&nbsp;<span class="shipping value">{$cart.subtotals.shipping.value} {hook h='displayCheckoutSubtotalDetails' subtotal=$cart.subtotals.shipping}</span></p> {/if**} {if !$configuration.display_prices_tax_incl && $configuration.taxes_enabled} <p><span>{$cart.totals.total.label}&nbsp;{$cart.labels.tax_short}</span>&nbsp;<span>{$cart.totals.total.value}</span></p> <p class="product-total"><span class="label">{$cart.totals.total_including_tax.label}</span>&nbsp;<span class="value">{$cart.totals.total_including_tax.value}</span></p> {else} <p class="product-total"><span class="label">{$cart.totals.total.label}&nbsp;{if $configuration.taxes_enabled}{$cart.labels.tax_short}{/if}</span>&nbsp;<span class="value">{$cart.totals.total.value}</span></p> {/if} {if $cart.subtotals.tax} <p class="product-tax">{l s='%label%:' sprintf=['%label%' => $cart.subtotals.tax.label] d='Shop.Theme.Global'}&nbsp;<span class="value">{$cart.subtotals.tax.value}</span></p> {/if} {hook h='displayCartModalContent' product=$product} <div class="cart-content-btn"> <button type="button" class="btn btn-secondary" data-dismiss="modal">{l s='Continue shopping' d='Shop.Theme.Actions'}</button> <a href="{$cart_url}" class="btn btn-primary"><i class="material-icons rtl-no-flip">&#xE876;</i>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</a> </div> </div> </div> </div> </div> {hook h='displayCartModalFooter' product=$product} </div> </div> </div>
  3. Buenas, yo venía con una consulta presuponiendo que pueda llegar a haber algun problema de incompatibilidad cuando se habilita la cache litespeed con el modulo para ello y se tengan habilitadas las cache de memcached etc por ejemplo. Mi suposición es que esí pero todavía no realice ninguna prueba al estar armando la tienda.
  4. Si no me equivoco tenes que modificar el archivo tpl del theme. En algún momento modifique e incluso agregué placeholders pero creo que la única forma era hacer un childtheme (idealmente) y ahí colocar los archivos tpl modificados
  5. Prestashop 1.7.8.6 problema de envío de mails entre correos internos y externos https://github.com/PrestaShop/PrestaShop/pull/11995/files Realice esa modificación y salió andando
  6. Y en teoría consume menos recursos que las estadísticas antiguas? porque recuerdo que recomendaban desactivar las estadisticas nativas por el alto consumo y sobrecargas que hacían en la DB. Mil gracias por responder
  7. Excelente consejo, y aproximadamente cuantas versiones o como te das cuenta cuando hacer el update? esperas a que salgan por ejemplo 2 release o un par de meses después como lo manejas. Pregunto desde la ignorancia porque muchas veces me paso de agarrarme tremenda calentura por problemas que surgen luego de un update haha.
  8. Buenos días una consulta. Este modulo no lo conozco me podrías decir para que es el modulo prestashop eventbus y si es gratuito? porque veo que aparece para instalar en la sección de estadísticas. Muchísimas gracias
  9. Buenos días, me estoy disponiendo a darle una chance más a prestashop después de 3 años a ver si ha mejorado y esta un poco menos verde que en aquel entonces con tantos bug. Veo que aparecen más estados y uno de ellos aparece como "Autorizado. El vendedor lo capturará" alguien tiene idea para que es utilizado este estado en la versión 1.7.8.6? Mi sentido común e ignorancia me estarían indicando que puede ser utilizado para aceptar las devoluciones puede ser? Muchísimas gracias!
  10. Hi guys, I had this error from versions before to the release 1.7.7.2 anyone know how activate the debug_zval in php.ini? I don't find this info anywhere. Thanks
  11. Buenas noches, alguien tiene este erorr?. No logro encontrar en ningún lado como habilitarlo en php.ini Gracias
  12. Buenas tardes, veo que al instalar prestashop 1.7.7.1 me crea el usuario [email protected] que se puede hacer con dicho usuario? es necesario? se puede eliminar? supone algún riesgo de seguridad, spam, o algo?. Hay info al respecto? Con respecto a cumplir las reglamentaciones actuales europeas este tutorial sigue siendo válido para todos los puntos? Muchas gracias.
  13. Lo que se busca con las url limpias no es solamente un buen posicionamiento SEO por parte del buscador, si no que el usuario pueda acordarse de una URL, ya cuando le metes números y muchos "-" la cagas. De todas formas me parece un error por parte de los que llevan el proyecto que hace 2 años ya que los usuarios piden poder quitar los ID's si no más, existen muchos módulos creando overrides... Tan difícil que los desarrolladores del proyecto hagan dichas modificaciones en el core no debe ser... Y por el contrario no habría tiendas rompiéndose al quedar obsoletos los módulos y sus overrides ante las modificaciones core. Prestashop mismo te vende módulos con overrides para eliminar los ID's. Ahí esta la respuesta a porque no modifican el core, incluso te los cobran más caros que otras soluciones y con updates por determinado tiempo de lo contrario tenes que pagar cerca de 100 euros por un modulo que en pruebas anteriores que hice hace unos años con el modulo específicamente "URL Cleaner- SEO Performance" y de todas formas cada dos por tres me reventaba las url.
  14. A día de hoy prestashop 1.7.7 sigue sin tener dicha opción por nativa, mientras tanto la siguen currando vendiéndote módulos para eliminar los ID en el marketplace que caducan cada x años y Tenes que volver a pagar si quieres que sean compatibles con nuevas versiones prestashop. Negocio? donde?
  15. Buenas tardes, quería consultar si alguien ha podido configurar esta parte de las estadísticas (Backoffice -> estadísticas -> páginas no encontradas) El texto de ayuda dice: He colocado la línea ErrorDocument 404 /404.php dentro de mi archivo .htaccess pero en la página de estadísticas no me aparece ningún error como si no tomara los errores 404, he incluso colocado malas url llevándome a la página de "página no encontrada" pero no figura en las estadísticas. Alguien le ha dado a la tecla en esta configuración, dado que no logro encontrar más info en otro lado. Actualmente estoy en la versión 1.7.7
×
×
  • Create New...