Home / Admin / Custom Cart Row
Duplicate Snippet

Embed Snippet on Your Site

Custom Cart Row

Provides a function which can be modified to add a custom row of HTML to the checkout shopping cart.

Code Preview
php
<?php
function edd_custom_cart_row_text() {
?>
	<tr>
		<td colspan="4">This is your custom text</td>
	</tr>
<?php
}
add_action( 'edd_cart_items_after', 'edd_custom_cart_row_text' );

Comments

Add a Comment