HEX
Server: Apache
System: Linux webm003.cluster111.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: assotraipi (849654)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/assotraipi/www/wp-content/plugins/download-monitor/templates/shop/cart/totals.php
<?php
/**
 * Cart totals
 *
 * More info on overriding template files can be found here: https://www.download-monitor.com/kb/overriding-content-templates/
 *
 * @version     4.9.6
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
} // Exit if accessed directly

/** @var WPChill\DownloadMonitor\Shop\Cart\Cart $cart */
?>
<table cellspacing="0" cellpadding="0" border="0">
    <tbody>
    <tr>
        <th><?php echo esc_html__( 'Subtotal', 'download-monitor' ); ?></th>
        <td><?php echo esc_html( dlm_format_money( $cart->get_subtotal() ) ); ?></td>
    </tr>
	<?php
	/**
	 * @todo [TAX] Implement taxes
	 */
	?>
	<?php
	/**
	 * @todo [COUPONS] Implement coupons
	 */
	?>
    <tr class="dlm-totals-last-row">
        <th><?php echo esc_html__( 'Total', 'download-monitor' ); ?></th>
        <td><?php echo esc_html( dlm_format_money( $cart->get_total() ) ); ?></td>
    </tr>
    </tbody>
</table>