/home/arranoyd/energyclinic/wp-content/plugins/ecwid-shopping-cart/templates/admin-message.php
<div class="ecwid-message <?php echo esc_attr( $type ); ?>">
	<?php if ( $title ) : ?>
	<div class="ecwid-message-title">
		<?php echo esc_html( $title ); ?>
	</div>
	<?php endif; ?>

	<div class="ecwid-message-content">
		<?php echo wp_kses_post( $message ); ?>
	</div>

	<?php if ( $primary_button || $secondary_button || $do_not_show_again ) : ?>
	<div class="ecwid-message-buttons">
		<?php if ( $primary_button ) : ?>
		<div>
			<a
				class="button button-primary"
				href="<?php echo esc_attr( $primary_url ); ?>"
				<?php if ( $primary_blank ) : ?>
				target="_blank"
				<?php endif; ?>
			>
				<?php echo esc_html( $primary_title ); ?>
			</a>
		</div>
		<?php endif; ?>

		<?php if ( $secondary_button ) : ?>
		<div>
			<a
				class="button
				<?php if ( $secondary_hide ) : ?>
					ecwid-message-hide
				<?php endif; ?>"
				href="<?php echo esc_attr( $secondary_url ); ?>"
				name="<?php echo esc_attr( $name ); ?>"
				<?php if ( $secondary_blank ) : ?>
				target="_blank"
				<?php endif; ?>
			>
				<?php echo esc_html( $secondary_title ); ?>
			</a>
		</div>
		<?php endif; ?>

		<div class="hide-wrapper">
		<?php if ( $do_not_show_again ) : ?>
			<a class="ecwid-message-hide" name="<?php echo esc_attr( $name ); ?>" href="javascript: void(0);">
				<?php echo esc_html( __( 'Never show this message again', 'ecwid-shopping-cart' ) ); ?>
			</a>
		<?php endif; ?>
		</div>
	</div>
	<?php endif; ?>
</div>