Yes. You can add any id and class to a form by adding the html_id and html_class attributes into a [contact-form-7] shortcode.
[contact-form-7 id="1234" title="Contact form 1" html_id="contact-form-1234" html_class="form contact-form"]
function custom_homepage_redirect()
{
if ( is_front_page() && is_user_logged_in() ) {
wp_redirect( home_url( '/home' ) );
die;
}
}
add_action( 'template_redirect', 'custom_homepage_redirect' );
add_action('wpcf7_mail_sent', function ($cf7) {
// тут подключаемся к смс-гейту и отправляем смс
});
wp-content/plugins/woocommerce/templates/myaccount
. Можно изучить хуки, которые там используется, подключиться к ним и изменить отображение, также можно скопировать шаблоны в тему и поправить как нужно.Большое кол-во страниц в wp?
пока не началась генерация, может быть кто-нибудь сталкивался с подобным?
Как лучше структурировать данные?
Как лучше поступить в данной ситуации?
function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
single.php
будет приоритетнее по отношению к single-product.php
в подпапке темыtype A struct {
Id string `db:"id" json:"id" valid:"uuidv4"`
Target string `db:"target" json:"target" valid:"uuidv4"`
}
type B struct {
Id string `db:"id" json:"id" valid:"uuidv4"`
Type int `db:"type" json:"type" valid:"-"`
SomeFieldName A `json:"A"`
}