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:
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:
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:
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: