28 lines
679 B
PHP
28 lines
679 B
PHP
<?php
|
|
/**
|
|
* Product List Actions
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
?>
|
|
<div>
|
|
|
|
<div class="wu-flex wu-p-4 wu-bg-gray-100 wu--mx-3 wu--mb-3 wu-mt-3 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300 wu-border-solid">
|
|
|
|
<div class="wu-ml-auto">
|
|
|
|
<a
|
|
class="button wu-ml-2 wubox"
|
|
title="<?php esc_attr_e('Add new Product', 'wp-ultimo'); ?>"
|
|
href="<?php echo esc_attr(wu_get_form_url('edit_membership_product', array('id' => $membership->get_id()))); ?>"
|
|
>
|
|
<span class="dashicons-wu-circle-with-plus wu-align-text-bottom"></span>
|
|
<?php _e('Add new Product', 'wp-ultimo'); ?>
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|