Jump to content


akroma's Content

There have been 17 items by akroma (Search limited from 04-May 23)


By content type

See this member's

Sort by                Order  

#17494 modal popup on product page - how to add it to all pages?

Posted by akroma on 17 February 2018 - 02:23 AM in PrestaShop features modification & development

Hello, I'm interested to buy the product page popup module, but I want know if i could to insert the button on all products in massive way or I'll must insert the button one by one? And then I should insert into popup a picture is it possible? Thanks a lot




#17491 customer account activate with email ?

Posted by akroma on 15 February 2018 - 09:46 PM in PrestaShop theme development & modifications

Hello, thank you for your answer. 

 

i have one more question: how does it work with your Facebook login connect and Google login connect modules ?

I guess customers who use FB or Google to create an account don't have to confirm by e-mail link, is it correct ?

And what about the buttons "Login with FB (or Google)", can we place them anywhere we want in the shop ? (for example in the checkout process, when customer is asked to create an account)




#17489 customer account activate with email ?

Posted by akroma on 15 February 2018 - 09:45 PM in PrestaShop theme development & modifications

Hello, i havequestion.

I would like to buy your "account activation by email link module", but it seems to have no available translations. I want it in french so i juste want to know if i can simply translate it with the translation tool in Prestashop BO.




#17487 Add maximum 4 quantity of product to cart

Posted by akroma on 15 February 2018 - 09:28 PM in PrestaShop addons, modules, plugins

Hello, I am looking for a module to allow to add as maximum quantity 2 of a product and maximum quantity 3 of another product. They are in two different categories. The two products have attributes. What module do you recommend? Thanks




#17469 javascript and canvas on cms page

Posted by akroma on 07 February 2018 - 07:50 AM in PrestaShop features modification & development

Hi! I am having a problem on my 1.6 Presta, which is the following: I have create a new HTML page, utilizing a JS Library on CMS Block. The problem is that the CMS Block is not accepting my canvas tags, , and neither javascript files is displaying as well. I would like to know if I buy your module if I am going to be able to show this static page on CMS Block with my javascript loading and all html tags there. On another page, the same issue occurs. Block editor is not allowing the download argument on html tag... I need something that gives me full html to create static pages on CMS Block. Your website also miss a Refund Policy in case the module is not what I expected, so please update me. Thank you, B




#17418 quantity discouts do not appear

Posted by akroma on 01 February 2018 - 07:36 AM in PrestaShop theme development & modifications

Hi,
 
I just bought the module to show quantity discounts a few hours ago. My Prestashop version is 1.6.1.17 with Modez themes installed on top. (Modez theme Link : https://themeforest....e-blog/8318914)
 
However I noticed that my website is not showing the module even though the module has been installed and enabled.
I think the one it is showing is the default Prestashop Volume discount table. With price not correctly displayed. (see below)
Weirdly enough, once you go to Checkout / Shopping cart, all the calculations are correct as what I intended.  zzzzzzz



#17403 combinations pro on list of products

Posted by akroma on 30 January 2018 - 06:14 AM in PrestaShop settings & configuration

Thank you very much, it works perfectly, I did add some code to hide it for non-registered customers, it’s amazing.

 

1-     I have a question, what is the possibility to implement the same exact table in product.tpl, is there a hook code that we can use to implement this table in the product page as well as the product-list page, it is very interesting to add it as it’s a full module and much better than the varietion standard system for Prestashop with radio buttons.

2-     Your “Plus” and “Minus” buttons code is very complicated, I do not wish to mess up the code, would you please tell me what code should I add after on-click to do something like: onclick="noattr_ct_matrix_ ('up','_{$pla_upc}') (probably wrong code), I wish to make the plus/minus buttons to multiple the UPC field, for example if UPC is 40, one + click will make 40, the second click will make 80, third click 120 etc, we added the “full carton quantity” into UPC field to let customer buy full cartons only, we can’t sell 30 PCS while the box full quantity is 40, if a customer wants 6 cartons then they click + 6 times.




#17401 combinations pro on list of products

Posted by akroma on 30 January 2018 - 06:13 AM in PrestaShop settings & configuration

We have tried installing the module combinations pro for list of products but the quantity field is not appearing even when in your module the quantity field is enabled, please tell us how to fix it.




#17380 What is product identification in pixel module?

Posted by akroma on 24 January 2018 - 06:16 AM in PrestaShop settings & configuration

I don't know which value to be added on following fields. So can you please add that for me?
  1. Product identification
  2. Separate sign
  3. Product identification sufix
  4. Product identification prefix



#17374 language redirection issue

Posted by akroma on 23 January 2018 - 05:53 AM in PrestaShop theme development & modifications

Hi Vekia, 
I actually have a problem with a client website. 
Search console doesn't crawl all of the pages and says there a redirect problem.
If I try shop domain address at https://monitorbackl...er-status-check I get a 302 moved to http://domain/fr/ 

Language redirect seems to be the problem.

Do you have any solutions?
I see you have too modules for 1.7 one for language and the other one for redirection.
I already bought clean url one but i don't think it can do anything. Thanks. Regards



#17279 out of stock product notification to admin

Posted by akroma on 11 January 2018 - 10:41 AM in PrestaShop theme development & modifications

Hello good afternoon. 
I have this code to send a notice to the administrator

//nuevo envio correo 

public function sendEmailProductOutOfStock($id_customer, $id_product, $id_product_attribute, $id_shop=null, $id_lang=null, $guest_email=null) 
{


$context = Context::getContext();
if (is_null($id_shop)) 
$id_shop = (int)$context->shop->id; 
if (is_null($id_lang)) 
$id_lang = (int)$context->language->id;
$customer = new Customer($id_customer); 
$customer_email = $customer->email; 
$customer_firstname = $customer->firstname; 
$customer_lastname = $customer->lastname; 
$guest_email = pSQL($guest_email);
$id_customer = (int)$id_customer; 
$customer_email = pSQL($customer_email);
if ($id_customer==0) 
$customer_email = $guest_email;
$product_name = Product::getProductName($id_product, $id_product_attribute, $id_lang);
if (empty($this->_merchant_mails))/* Algunas veces no guarda en $this->_merchant_mails los correos, si es así, los recuperamos de la configuración del módulo*/ 
$mails = str_replace(',', self::__MA_MAIL_DELIMITOR__, strval(Configuration::get('MA_MERCHANT_MAILS'))); 
else 
$mails = $this->_merchant_mails;
$template_vars = array( 
'{id_customer}' => $id_customer, 
'{customer_firstname}' => $customer_firstname, 
'{customer_lastname}' => $customer_lastname, 
'{customer_email}' => $customer_email, 
'{product}' => $product_name,



); 
$from = $customer_email; 
$fromName = ($customer_firstname.' '.$customer_lastname); 
if (!empty($mails)){ 
$merchant_mails = explode(self::__MA_MAIL_DELIMITOR__, $mails); 
foreach ($merchant_mails as $merchant_mail) 
{ 
Mail::Send( 
$id_lang, 
'new_request_availability', 
sprintf(Mail::l('Solicitud de disponibilidad del producto: %s', $id_lang), $product_name), 
$template_vars, 
$merchant_mail, 
null, 
//strval(Configuration::get('PS_SHOP_EMAIL')), 
//strval(Configuration::get('PS_SHOP_NAME')), 
$from, 
$fromName, 
null, 
null, 
dirname(__FILE__).'/mails/', 
null, 
$id_shop 
); 
} 
} 
else{ 
Mail::Send( 
$id_lang, 
'new_request_availability', 
sprintf(Mail::l('Solicitud de disponibilidad del producto: %s', $id_lang), $product_name), 
$template_vars, 
strval(Configuration::get('PS_SHOP_EMAIL')), 
null, 
// strval(Configuration::get('PS_SHOP_EMAIL')), 
// strval(Configuration::get('PS_SHOP_NAME')), 
$from, 
$fromName, 
null, 
null, 
dirname(__FILE__).'/mails/', 
null, 
$id_shop 
); 
} 
}//nuevo

But I would like to know how I can put in this same mail a list with the attributes type like this

8 Baby Benito Pérez Galdós - Talla - Talla 2 
16 Baby Benito Pérez Galdós - Talla - Talla 3 
32 Baby Benito Pérez Galdós - Talla - Talla 4 
0 Baby Benito Pérez Galdós - Talla - Talla 5 
0 Baby Benito Pérez Galdós - Talla - Talla 6 
1 Baby Benito Pérez Galdós - Talla - Talla 7 
0 Baby Benito Pérez Galdós - Talla - Talla 8 
1 Baby Benito Pérez Galdós - Talla - Talla 9
 
 



#17245 age verification popup in prestashop

Posted by akroma on 27 December 2017 - 10:18 AM in PrestaShop theme development & modifications

Dear MyPresta, I would like to purchase the module " Prestashop Prestashop Popup Pro" for rel. 1.4.9 and I need the following info: 1. Can I use the module AS AGE VERIFICATION 18+ 2. I'm buyinf from Italy and I need the invoice it is possibile? (we have EU VAT) 




#17231 send voucher code after 3 days? (module to generate voucher for next purchase)

Posted by akroma on 19 December 2017 - 08:55 AM in PrestaShop addons, modules, plugins

Hi, I'm interested in "Prestashop Rewards - Voucher codes after orders" modul. I'm just wondering if there is a options to postpone of sending the voucher email? I mean a customer makes the order, but email with voucher will receive after 3 days. Thank you Regards Jan 




#17214 disable navigation arrows in homepage slider in prestashop 1.7

Posted by akroma on 11 December 2017 - 04:18 PM in PrestaShop theme development & modifications

Hello again,

I cant't find on all web where to disable arrows previous, next in home slider (prestashop1.7.2.2)

Do you know location where to disable this. Looked all files in webftp

Please help me, thanks




#17193 customization of icons module

Posted by akroma on 04 December 2017 - 11:59 AM in PrestaShop theme development & modifications

Hello, regarding Product Tags Icon Pro, I want to have icons only in product page and not in product list. Is that possible? 
And in product page I want icons to be under product image. Also this possible?




#17183 facebook pixel issue in prestashop

Posted by akroma on 01 December 2017 - 12:08 AM in PrestaShop issues & problems

hi, using this fbpixel module I'm getting an errors on facebook: 1)Missing content_type parameter from "Purchase" in Facebook Pixel Required parameter undefined is missing from Purchase events To fix this: Make sure that the pixel code is installed correctly on your website Make sure the event is sending all the required params: content_ids, content_type. Learn more. For the Facebook pixel, you can download the Facebook Pixel Helper for Google Chrome to debug your pixel fires 2)Missing content_ids or contents parameter from "Purchase" in Facebook Pixel To fix this: Make sure that the pixel code is installed correctly on your website Make sure the event is sending all the required params: content_ids, content_type. Learn more. For the Facebook pixel, you can download the Facebook Pixel Helper for Google Chrome to debug your pixel fires Any ideas how to fix it?

paul,




#17181 coupons for orders - problem with voucher generation process

Posted by akroma on 30 November 2017 - 12:36 AM in PrestaShop issues & problems

I am having some issues setting up ordercoupon. I can get an accurate test email sent, however when I try to use the status update to autosend it does not send the correct email, nor does it create a voucher in the backoffice. I cannot find the oc_voucher in the prestashop status template dropdown.