@dipeshkakadiya
Active 1 year, 8 months ago
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
I need something like this
<!-- BEGIN PRODUCT LOOP // --> {{#each products}} <tr class="item"> <td valign="top" class="textContent"> <img src="{{img}}" width="50" height="75" class="itemImage" /> <h4 class="itemName">{{name}}</h4> <span class="contentSecondary">Qty: {{qty}} x ${{price}}/each</span><br /> <span class="contentSecondary sku"><em>{{sku}}</em></span><br /> <span class="contentSecondary itemDescription">{{description}}</span> </td> <td valign="top" class="textContent alignRight priceWidth"> ${{ordPrice}} </td> </tr> {{/each}} <!-- // END PRODUCT LOOP -->
@PaulGibbs
hey
I tried with php loop but it’s print as it is. Can you give me example ?
this is my email template<table id="invoice-table" > <thead> <tr> <td> <?php $logo_id = boss_get_option( 'boss_logo', 'id' ); $site_title = get_bloginfo( 'name' ); $logo_large = ( $logo_id ) ? wp_get_attachment_image( $logo_id, 'full', '', array( 'class' => 'boss-logo large' ) ) : '<span class="bb-title-large">' . $site_title . '</span>'; ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <?php echo $logo_large; ?> </a> <address> <div><?php esc_html_e( 'lavozdelmuro SL', Lavozdelmuro_payments()->domain ) ?></div> <div><?php esc_html_e( 'B13571013', Lavozdelmuro_payments()->domain ) ?></div> <div><?php esc_html_e( 'Calle Andalucia 47 Ciudad Reak', Lavozdelmuro_payments()->domain ) ?></div> <div><?php esc_html_e( 'Spain', Lavozdelmuro_payments()->domain ) ?></div> </address> </td> <td> <div><?php echo esc_html( $username ); ?></div> <div><?php echo esc_html( $real_name ); ?></div> <div><?php echo esc_html( $surname ); ?></div> <div><?php echo esc_html( $address ); ?></div> <div><?php echo esc_html( $country ); ?></div> <div></div> </td> </tr> </thead> <tbody> <tr> <td></td> <td> <div><strong>REF:</strong> : <?php echo esc_html( $ref_invoice ); ?></div> <div><strong>Date of Payment:</strong> : <?php echo esc_html( date( 'd M Y', strtotime( $payment_date ) ) ); ?></div> </td> </tr> <tr> <td>Invoice period from <?php echo esc_html( date( 'd M Y', strtotime( $min_date ) ) ); ?> to <?php echo esc_html( date( 'd M Y', strtotime( $max_date ) ) ); ?></td> <td></td> </tr> <tr class="top-border"> <td><strong>posts</strong></td> <td><strong>Amount</strong></td> </tr> <?php if ( ! empty( $payment_posts ) ) { foreach ( $payment_posts as $post ) { ?> <tr> <td><?php echo esc_html( $post['title'] ); ?></td> <td><span><?php echo esc_html( $post['amount'] ); ?></span>€</td> </tr> <?php } } ?> <?php if ( 'Spain' == $country ) { ?> <tr class="top-border"> <td><strong>sum:</strong></td> <td><span><?php echo esc_html( $amout_total ); ?></span>€</td> </tr> <tr class="top-border"> <td><strong>Tax ( Spain VAT <?php echo esc_attr( $tax_rate ); ?>% ):</strong></td> <td><span><?php echo esc_html( $amount_tax ); ?></span>€</td> </tr> <?php } ?> <tr class="top-border"> <td><strong>Total:</strong></td> <td><span><?php echo esc_html( $amout_pay ); ?></span>€</td> </tr> </tbody> </table>
Viewing 2 replies - 1 through 2 (of 2 total)