Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/12/2022 in all areas

  1. Der Link erscheint nur wenn keine Telefonnummer gepflegt ist, ansonsten wird diese angezeigt. Die Logik kann man in der Datei themes\*dein_theme*\modules\ps_contactinfo\nav.tpl ausskommentieren
    1 point
  2. Ja, das hat mit dem Status (das ist die Spalte rechts daneben) nun überhaupt nichts zu tun! Für die Zahlungsarten gibt es einzelne Module, da mußt du entweder in die Modul-Übersetzungen oder auch in den Quellcode der Moduldateien schauen.
    1 point
  3. OK, I've never edited JS files. Perhaps it would be better to buy the pro version of the template and get the developer to do it. EDIT: I just looked at the developer's demo for the template and the menu and template work perfectly together. So, maybe Advanced Menu stuffed up stuff and left it there after uninstall... 🙄
    1 point
  4. Now that the new menu is in place, your module is working well, thanks. 👍🏻 I have also discovered that the problems you mentioned above appear to be with the template. At least, Advanced Menu has now been completely uninstalled. I really do hate that the only remaining thing in the template mobile menu is the language selector. I would much prefer to get rid of that mobile menu altogether and move the language selector out to a permanent visible position (same as search, cart, login). There is a very strong arguement that the language selector is visually more important than both search and login. Is it possible to achieve this?
    1 point
  5. hello share the version of php you use and also if possible screenshots and the url, some way we can see the problem
    1 point
  6. https://payzen.io/de-DE/faq/how-to-manage-the-prestashop-order-id.html @Yulia Vitun check this link. if you donot get what you want. let me know. for filter, you have to update 2 more lines. visit link and change accordingly.
    1 point
  7. I think i found the solution There was no hook in the database wity actionValidateCustomerAddressForm INSERT INTO `ps_hook` (`id_hook`, `name`, `title`, `description`, `active`, `position`) VALUES (NULL, 'actionValidateCustomerAddressForm', 'Customer address form validation', 'This hook is called when a customer submit its address form', '1', '1');
    1 point
  8. Thanks, this thread helped me with PS 1.7.8.2 as all of a sudden, I can't see products under categories while logged in. Everything is fine when viewing as a guest. Not sure why this happened out of the blue. Another solution is to sort products by anything other than "product price" (via Shop Parameters > Product Settings > Pagination). This issue seems to occur only when a customer is logged in. You can also try to sort products by price on the front end to see the bug (products will disappear).
    1 point
  9. Hi, There are 2 points need to be updated for your requirement to fulfilled, you may try the below points => First you need to create that custom item as product because while adding in cart you need product id $context = Context::getContext(); $cart = $context->cart; $cart->updateQty((int)($qty), (int)($id_product),0);custom product id you want to add $cart->update(); => For price of that item you can set Specific price for current cart and product you added $sp = new SpecificPrice(); $sp->id_product = (int)$id_product; // custom product id you want to add $sp->id_product_attribute = 0 $sp->id_cart = (int)$current_id_cart; $sp->from_quantity = 1; $sp->price = $new_price_without_tax; $sp->reduction_type = 'amount'; $sp->reduction_tax = 1; $sp->reduction = 0; $sp->from = "0000-00-00 00:00:00"; $sp->to = "0000-00-00 00:00:00"; $sp->add(); let us know if still any query
    1 point
  10. see classes/FileUploader.php the __contsruct sets the sizeLimit (default value if not set) hope that helps the allowed extensions and size is set by youradminfolder/AdminProductsController public function ajaxProcessAddImage() { self::$currentIndex = 'index.php?tab=AdminProducts'; $allowedExtensions = array('jpeg', 'gif', 'png', 'jpg'); // max file size in bytes $uploader = new FileUploader($allowedExtensions, $this->max_image_size); ////size $this->max_file_size = (int)(Configuration::get('PS_LIMIT_UPLOAD_FILE_VALUE') * 1000000); $this->max_image_size = (int)Configuration::get('PS_PRODUCT_PICTURE_MAX_SIZE'); I don't know there is anywhere to change the file/image values other than using phpmyadmin on your mysql table (yourprefix)_configuration
    1 point
×
×
  • Create New...