V1.6 Prestashop Last Customers Block Module

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,684
Points
93
NullCash
14,034
This is a module I use on my website to display a column block with the last customers.

In the administration, you can set the block line format like:

$last_name $first_name, <strong>$city_name</strong>

Some other fields are available and HTML is supported.

Optionally, you can display the customer's country flag.

Exemple with the customer's first name, name initial, city and country flag:
rQLfeeT.jpg


Note: If the customer name appears above the flag, open the TPL with any text editor and add a "padding-left", like show below:

<style type="text/css">
{literal}
#pss_block_last_customers ul li{
white-space:nowrap;
overflow:hidden;
-o-text-overflow: ellipsis; /* for Opera browser */
text-overflow: ellipsis; /* for the rest of the world */
padding-left:26px; /* line to add */
}
#pss_block_last_customers ul{
padding-top:3px;

}

Download Module Prestashop 1.6:
 

amir_561

Well-known member
Diamond
Elite
XNullUser
Joined
Aug 20, 2019
Messages
1,986
Reaction score
149
Points
63
NullCash
5
thank you for share this module...
 
Top