PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.6
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.6
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
← All changes | app/Views/emails/subscription/renewal/admin.php +2 -2 1.3.21 → 1.6.6 View file →
@@ -23,9 +23,9 @@
23 23 printf(
24 24 /* translators: %1$s is the customer name, %2$s is the subscription item name */
25 25 esc_html__('%1$s just renewed their subscription: %2$s.', 'fluent-cart'),
26 26 esc_html($subscription->customer->full_name),
27 - '<b>' . esc_html($subscription->item_name) . '</b>'
27 + '<b>' . esc_html($subscription->display_item_name) . '</b>'
28 28 );
29 29 ?></p>
30 30 </div>
31 31
@@ -30,9 +30,9 @@
30 30 </div>
31 31
32 32 <div class="space_bottom_30">
33 33 <p><b><?php esc_html_e('Subscription Renewal Summary:', 'fluent-cart'); ?></b></p>
34 - <p><?php esc_html_e('Renewal Date:', 'fluent-cart'); ?> <b><?php echo esc_html($transaction->created_at->format('d M Y, H:i')); ?></b></p>
34 + <p><?php esc_html_e('Renewal Date:', 'fluent-cart'); ?> <b><?php echo esc_html(\FluentCart\App\Services\DateTime\DateFormatter::format($transaction->created_at, true, $order)); ?></b></p>
35 35 <p><?php esc_html_e('Renewal Amount 💰:', 'fluent-cart'); ?> <b><?php echo esc_html(\FluentCart\App\Helpers\Helper::toDecimal($transaction->total)); ?></b></p>
36 36 <p><?php esc_html_e('Payment Method:', 'fluent-cart'); ?> <b><?php echo esc_html($transaction->getPaymentMethodText()); ?></b></p>
37 37 <p><?php esc_html_e('Vendor Transaction ID:', 'fluent-cart'); ?> <b><?php echo esc_html($transaction->vendor_charge_id); ?></b></p>
38 38 </div>