-
Posts
545 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Ress
-
Try deleting cookies one by one, to see if it is from someone.
-
Schimba url-ul in tabela ps_shop_url. Poti activa si debug-ul, sa vezi ce e cu eroarea 500.
-
To use multiple emails: $emails_not = array( 'here_email_address@to_block.com', 'here_email_address@to_block.com2', 'here_email_address@to_block.com3' ); if (in_array(Tools::getValue('from'), $emails_not)) return;
-
Codurile le poti pune in: prestashop_root/themes/your_theme/templates/_partials/head.tpl De preferat ar fi sa folosesti tag-ul {literal}{/literal}, uneori poti primi eroare 500. Dar pentru o integrare completa, este mai indicat sa folosesti un modul dedicat pentru acest lucru, pentru a trimite si evenimente, precum add to cart, initiate checkout, etc.
-
Ce versiune de PrestaShop ai? In pagina de categorie, butonul cu textul Personalizeaza ce vrei sa faca, sa te duca pe pagina de produs?
-
But how exactly did you put that html? Did you add it to the product description? Through a content module? Directly in the template?
-
From what I saw in the html code, the "href" attribute is missing. You put it on, and when you save it, does it disappear? Or exactly what happens?
-
Get current page name or current urls in my module
Ress replied to sphway's topic in Core developers
What hook are you using? -
Can you post the link to the site where it doesn't work?
-
Mutare tab Personalizare produs in prestashop 1.6.1.24
Ress replied to DanAndrei's topic in Discuţii generale
Ai putea ca partea de customizare sa nu o mai pui intr-un formular, iar la apasarea butonului, sa faci un ajax cu functionalitatea care era in form. -
Mutare tab Personalizare produs in prestashop 1.6.1.24
Ress replied to DanAndrei's topic in Discuţii generale
Toata zona de adaugare in cos este intr-un formular, la fel ca si partea de customizare. Cred ca tu ai pus formularul de customizare in cel de adaugare in cos, nu poti avea formular in formular, de aici cred ca este problema. -
Disappeared altogether, or only on mobile? What version of prestashop is this? Can you also post the site link?
-
Non ho capito bene, succede in qualche pagina? O solo pagine CMS? Hai provato una rigenerazione htaccess (puoi farlo salvando nella pagina Traffico e SEO)?
-
But what exactly is going on? Are you getting a specific error, or is it just refreshing the page? If you do not receive any errors, have you tried to delete cookies, or have you tried to log in to another browser?
-
Custom prices on the cart and order
Ress replied to Stepel's topic in Addons, modules and themes developers
Yes, sending the confirmation email cannot be stopped from settings or something. I think it's okay to do something like that, like you said, by changing your email address. -
Custom prices on the cart and order
Ress replied to Stepel's topic in Addons, modules and themes developers
Yes, it will work as a discount, you set the price directly, just like that. $specific_price = new SpecificPrice(); $specific_price->id_cart = $cart_id; $specific_price->id_shop = 0; $specific_price->id_group_shop = 0; $specific_price->id_currency = 0; $specific_price->id_country = 0; $specific_price->id_group = 0; $specific_price->id_customer = $customer_id; $specific_price->id_product = $product_id; $specific_price->price = $product_sale_price; // custom price $specific_price->from_quantity = 1; $specific_price->reduction = 0; $specific_price->reduction_type = 'amount'; $specific_price->add() -
Os dados são fáceis de migrar, não se perde nada, existem inúmeros módulos através dos quais se pode transferir, incluindo senhas de clientes. Portanto, é melhor instalar uma nova pré-loja, para utilizar um tema compatível, porque aqui está uma das maiores mudanças. Se alguns módulos podem funcionar sem problemas em 1.7, tudo é diferente com temas, e não se pode utilizar um tema de 1.6 em 1.7.
-
Custom prices on the cart and order
Ress replied to Stepel's topic in Addons, modules and themes developers
Well, you should do this after you add the product to the cart, because in the specific price, you set the product id and the cart id, and if the product is not added to the cart, I don't think it's okay. -
Fui ao site, e olhei um pouco para a página, pensei que estava escondida, mas não está. Deve provavelmente verificar através do modelo da página do produto. prestashop_root/themes/theme/product.tpl {if isset($product) && $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if}
-
Uploading HTML in the Mail Template Editor, ERROR?
Ress replied to FHSK8DLX's topic in General topics
Images clearly need to be uploaded to the server. You can upload them for example in prestashop_root/img/cms, so that later you can find them in the html editor in your Presta (tinyMCE). -
More than "ONE" Tracking number in user order
Ress replied to c64girl's topic in Addons, modules and themes developers
You will have to make the changes here. /themes/classic/templates/customer/order-detail.tpl You could use the displayOrderDetail hook, submit your tracking numbers, and display them as you wish, and delete the default display. Or you can make changes directly in the OrderDetail controller, and send what you need directly from there. -
The slider is initialized before his library is loaded. You should check this.
-
Check in the console for any javascript errors.