diff --git a/templates/default/account.html b/templates/default/account.html
index 6a666ed60..0174f1a3a 100644
--- a/templates/default/account.html
+++ b/templates/default/account.html
@@ -33,7 +33,7 @@
{loop type="customer" name="customer.info"}
-
{loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$FIRSTNAME} {$LASTNAME}
+
{loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$FIRSTNAME|ucwords} {$LASTNAME|upper}
{loop type="address" name="address.default" default="true"}
-
@@ -87,7 +87,7 @@
-
- {loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$FIRSTNAME} {$LASTNAME}
+ {loop type="title" name="customer.title.info" id=$TITLE}{$SHORT}{/loop} {$FIRSTNAME|ucwords} {$LASTNAME|upper}
{if $COMPANY}
{$COMPANY}
{/if}
@@ -119,7 +119,7 @@
|
diff --git a/templates/default/assets/js/script.js b/templates/default/assets/js/script.js
index ad7daead7..041379a67 100644
--- a/templates/default/assets/js/script.js
+++ b/templates/default/assets/js/script.js
@@ -48,10 +48,10 @@
});
// Confirm Dialog
- $(document).on('click.confirm', '[data-toggle="confirm"]', function (e) {
+ $(document).on('click.confirm', '[data-confirm]', function (e) {
var $this = $(this),
href = $this.attr('href'),
- title = $this.attr('data-confirm-title') ? $this.attr('data-confirm-title') : 'Are you sure?';
+ title = $this.attr('data-confirm') != '' ? $this.attr('data-confirm') : 'Are you sure?';
bootbox.confirm(title, function(confirm) {
if(confirm){
diff --git a/templates/default/order-delivery.html b/templates/default/order-delivery.html
index b23be64f7..2cbea4ff2 100644
--- a/templates/default/order-delivery.html
+++ b/templates/default/order-delivery.html
@@ -48,18 +48,19 @@
@@ -123,14 +122,15 @@
{loop type="delivery" name="deliveries" force_return="true"}
+ {assign var="isDeliveryMethodChecked" value="0"}
{form_field form=$form field='delivery-module'}
{if $isPost}
{if $value == $ID}
- {assign var="isDeliveryMethodChecked" value="true"}
+ {assign var="isDeliveryMethodChecked" value="1"}
{/if}
{elseif $LOOP_COUNT == 1}
- {assign var="isDeliveryMethodChecked" value="true"}
+ {assign var="isDeliveryMethodChecked" value="1"}
{/if}
-
-
-
-
-
-
-
- {intl l="Do you really want to delete this address ?"}
-
-
-
-
-
-
{/block}
-
-{block name="javascript-initialization"}
-
-{/block}
\ No newline at end of file