Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/02/2020 in all areas

  1. Hola gente!!! Mi tienda tiene todos los productos en la categoría principal (inicio) y luego subcategorias como Zapatillas/Zapatillas mujer... Ya tengo un apartado de Rebajas donde salen todos los productos rebajados pero necesitaría uno especial que fuera Outlet y solo saliesen los productos que voy mandando al Outlet con rebaja permanente ya que si los dejo como rebaja siguen estando en las categorías principales ya que solo los clasifica y lo que quiero es que un producto que ya tiene un cierto tiempo pase para Outlet y no salga en inicio/zapatillas/zapatillas mujer... pero que eso no me afecte mucho al SEO ya que pasaría de una categoría a otra. Espero haberme expresado bien... Muchas gracias de ante mano!!!
    1 point
  2. Hej znajomy sprawdził i był błąd w kodzie który naprawił i już jest ok niestety nie powiedział co to było i nie moge Ci odpowiedzieć co było przyczyną.
    1 point
  3. Check some other module e.g. ps_customtext how they do it: $fields_form = array( 'tinymce' => true, 'legend' => array( 'title' => $this->trans('CMS block', array(), 'Modules.Customtext.Admin'), ), 'input' => array( 'id_info' => array( 'type' => 'hidden', 'name' => 'id_info' ), 'content' => array( 'type' => 'textarea', 'label' => $this->trans('Text block', array(), 'Modules.Customtext.Admin'), 'lang' => true, 'name' => 'text', 'cols' => 40, 'rows' => 10, 'class' => 'rte', 'autoload_rte' => true, ), ), 'submit' => array( 'title' => $this->trans('Save', array(), 'Admin.Actions'), ), 'buttons' => array( array( 'href' => AdminController::$currentIndex.'&configure='.$this->name.'&token='.Tools::getAdminTokenLite('AdminModules'), 'title' => $this->trans('Back to list', array(), 'Admin.Actions'), 'icon' => 'process-icon-back' ) ) );
    1 point
  4. Ja, es gab Sicherheitslücken über die Kundendaten gestohlen werden können!
    1 point
  5. natürlich , Fehler wurden beseitigt und Bugs Behoben...WICHTIG: Vorher immer Dateien und Datenbank sichern.
    1 point
  6. By default, there is no "out of stock" button, but simply a text out of stock, see attachment for more info (taken from demo.prestashop.com), but you can modify the theme to convert it to a button with a little bit of smarty and css would do the trick. Honestly I think this should be introduced by default on product-flags variable and show it as a flag when you are navigating inside the category. I've been working both from the shop point of view and programmer side and this is something really hard to make, since everyone has it's own needs, so prestashop won't really change something unless it's really obvious and good for everyone. Instead, you can always purchase third party modules from addons.prestashop.com , i know it's not free but you can always try in the forums, but from my experience, it's best to let the work handled if it's paid (not always), where you can at least, have a guarantee for the money you paid.
    1 point
  7. Hola @MariaMM Efectivamente el en tema classic el menú de migas de pan se oculta en la versión móvil, esto se debe a la clase CSS hidden-sm-down. La única forma de hacerlo visible en la versión móvil es eliminando mediante código fuente esa clase. El archivo a modificar es breadcumb.tpl Saludos.
    1 point
  8. Hey guys @redrob, @chon59. I believe I figured out how to make the free orders work on new versions. I did this test on PS version 1.7.6.5 so if it is the same as your versions hopefully it will work. Prestashop changed the core.js file all around and made it much more difficult to read and adjust. I did this test with a new installation of Prestashop running in a virtual machine so no guarantees it will work with production environments. File to change: core.js File found in: /themes Roughly line 161 The code is all on one really long line. Easiest way to find the spot is to search for: var e=(0,r.default)("body") There will be 2 results, the one you want is the second one on line 161 which is a good ways in the line. In the same line right after, var e=(0,r.default)("body"); insert the following code if((0,r.default)('input[data-module-name="free_order"]').length){this.toggleOrderButton();} After making this change you may need to clear Prestashop's cache under the Performance settings. This should allow free orders to be processed now. Hopefully this works for everyone.
    1 point
  9. Hélas je pense que personne ne répondra et feront rien contre cela, il s'agit d'un "Best seller" et n'oublions pas que Prestashop prend une commission sur les ventes de modules si je me trompe pas, et ce serait donc se priver d'un beau gain car à chaque "vol" avec ce module, ils en profitent aussi... Mais le client final lui on s'en fou... J'espère que je me trompe et qu'un responsable nous le prouvera rapidement.
    1 point
  10. Hi all, I think the problem is solved for me. It worked after i removed the .htaccess from the root and then activate the "Friendry URL" (or let it activated if is already so) and Save. Tks,
    1 point
  11. Thanks for the collaboration with the Prestashop community I have done some tests with the "free version" of the module and it looks good. I have "made" a "little guide (review)" in Spanish for the Spanish Prestashop community -> https://victor-rodenas.com/migrar-datos-de-prestashop-1-4-1-5-1-6-a-la-version-1-7/ PS: if I have time, I will do a thorough test. Sorry for my English,
    1 point
  12. open file: controllers/admin/AdminProductsController.php you've got there $this->field_list definition: $this->fields_list = array(); $this->fields_list['id_product'] = array( 'title' => $this->l('ID'), 'align' => 'center', 'type' => 'int', 'width' => 40 ); $this->fields_list['image'] = array( 'title' => $this->l('Photo'), 'align' => 'center', 'image' => 'p', 'width' => 70, 'orderby' => false, 'filter' => false, 'search' => false ); $this->fields_list['name'] = array( 'title' => $this->l('Name'), 'filter_key' => 'b!name' ); $this->fields_list['reference'] = array( 'title' => $this->l('Reference'), 'align' => 'left', 'width' => 80 ); if (Shop::isFeatureActive() && Shop::getContext() != Shop::CONTEXT_SHOP) $this->fields_list['shopname'] = array( 'title' => $this->l('Default shop:'), 'width' => 230, 'filter_key' => 'shop!name', ); else $this->fields_list['name_category'] = array( 'title' => $this->l('Category'), 'width' => 'auto', 'filter_key' => 'cl!name', ); $this->fields_list['price'] = array( 'title' => $this->l('Base price'), 'width' => 90, 'type' => 'price', 'align' => 'right', 'filter_key' => 'a!price' ); $this->fields_list['price_final'] = array( 'title' => $this->l('Final price'), 'width' => 90, 'type' => 'price', 'align' => 'right', 'havingFilter' => true, 'orderby' => false ); if (Configuration::get('PS_STOCK_MANAGEMENT')) $this->fields_list['sav_quantity'] = array( 'title' => $this->l('Quantity'), 'width' => 90, 'type' => 'int', 'align' => 'right', 'filter_key' => 'sav!quantity', 'orderby' => true, 'hint' => $this->l('This is the quantity available in the current shop/group.'), ); $this->fields_list['active'] = array( 'title' => $this->l('Status'), 'width' => 70, 'active' => 'status', 'filter_key' => $alias.'!active', 'align' => 'center', 'type' => 'bool', 'orderby' => false ); if ($join_category && (int)$this->id_current_category) $this->fields_list['position'] = array( 'title' => $this->l('Position'), 'width' => 70, 'filter_key' => 'cp!position', 'align' => 'center', 'position' => 'position' ); you can edit it, just remove / add new fields. everything depends on you best regarads
    1 point
×
×
  • Create New...