woocommerce_created_customer
(см. код). Это если хукаться и слать свои письма ручками. А вообще можно же родные письма WooCommerce модифицировать и допилить туда купон. class My_Text_Widged extends WP_Widget {
function __construct() {
parent::__construct(
'my_widget_id', // ID виджета
__('Widget Title', 'text_domain'), // Name
array( 'description' => __( 'My Widget', 'text_domain' ), ) // Args
);
}
}
class My_User extends WP_User
$loader->add_action( 'wp_ajax_nopriv_register_ajax_handler', array( $this, 'register_ajax_handler') );
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<?php if (have_posts()): ?>
<?php $i = 1; // Устанавливаем счетчик ?>
<?php while (have_posts()): the_post(); ?>
<div class="panel <?php echo ( 1 == $i ) ? 'panel-default' : ''; ?>">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#<?php the_ID(); ?>" aria-expanded="false" aria-controls="collapseTwo">
<?php the_title(); ?>
</a>
<span class="collapsed caret" data-toggle="collapse" data-parent="#accordion" href="#<?php the_ID(); ?>" aria-expanded="false" aria-controls="collapseTwo" class="caret"></span>
</h4>
</div>
<div id="<?php the_ID(); ?>" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<?php the_content(); ?>
</div>
</div>
</div>
<?php $i ++; // Увеличивает счетчик ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
add_menu_page (
string $page_title,
string $menu_title,
string $capability,
string $menu_slug,
callable $function = '',
string $icon_url = '',
int $position = null
);
/**
* Изменить текст на странице архива категории
*/
function woo_shop_category_custom_cart_button_text() {
if( is_product_category( 'category-slug' ) ) {
return __( 'Sign up', 'woocommerce' );
}
}
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_shop_category_custom_cart_button_text' );
/**
* Изменить текст на страничке товара
*/
function woo_custom_cart_button_text() {
if( has_term( 'category-slug', 'product_cat', $post ) ) {
return __( 'Sign up', 'woocommerce' );
// Дополнено автором вопроса:
} else {
return __( 'Add to cart', 'woocommerce' );
}
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );
function pss_wrap_nav_item( $title, $item ) {
if( in_array( 'item-wrap', $item->classes ) ) {
$title = '<span class="item-wrap has-effect">' . $title . '</span>';
}
return $title;
}
add_filter( 'nav_menu_item_title', 'pss_wrap_nav_item', 10, 2 );
/**
* Disable Emoji support introduced in WP 4.2
*/
function pss_disable_emoji() {
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );
remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
}
add_action( 'init', 'pss_disable_emoji' );