<?php if (qtrans_getLanguage() == 'en'): ?>
<?php echo "Text!"; ?>
<?php elseif (qtrans_getLanguage() == 'ua'): ?>
<?php echo "Text"; ?>
<?php elseif (qtrans_getLanguage() == 'ru'): ?>
<?php echo "Text"; ?>
<?php else : ?> // или язык который считается как последний, в моем случае финский
<?php echo "Text"; ?>
<?php endif; ?>
add_action('init', 'my_custom_init');
function my_custom_init(){
register_post_type('group_products', array(
'labels' => array(
'name' => 'Группы товаров', // Основное название типа записи
'singular_name' => 'Група товаров', // отдельное название записи типа Book
'add_new' => 'Добавить новую',
'add_new_item' => 'Добавить новую группу',
'edit_item' => 'Редактировать группу',
'new_item' => 'Новая группа',
'view_item' => 'Посмотреть группу',
'search_items' => 'Найти группу',
'not_found' => 'Группу не найдено',
'not_found_in_trash' => 'В корзине груп не найдено',
'parent_item_colon' => '',
'menu_name' => 'Группы товаров'
),
'public' => true,
'supports' => array('title', 'custom-fields')
) );
};
add_action( 'save_post_group_products', 'my_save_post' );
function my_save_post( $post_id ) {
$products = new WP_Query(array('post_type' => 'product', 'posts_per_page' => -1));
while($products->have_posts()) {
$products->the_post();
$product = wc_get_product( get_the_ID() );
$oldprice = $product->get_regular_price();
$oldsaleprice = $product->get_sale_price();
$id_group = get_field('id_groups_products');
if( get_field('group-select') == 'high' ):
$price = get_field('high-price', $id_group);
if ( get_field( 'sale-prices', $id_group) ):
$saleprice = $price * 1.15;
$product->set_regular_price( $saleprice );
$product->set_sale_price( $price );
else:
$product->set_regular_price( $price );
$product->set_sale_price( '' );
endif;
$product->save();
elseif ( get_field('group-select') == 'default' ):
$price = get_field('default-price', $id_group);
if ( get_field( 'sale-prices', $id_group) ):
$saleprice = $price * 1.15;
$product->set_regular_price( $saleprice );
$product->set_sale_price( $price );
else:
$product->set_regular_price( $price );
$product->set_sale_price( '' );
endif;
$product->save();
elseif( get_field('group-select') == 'small' ):
$price = get_field('small-price', $id_group);
if ( get_field( 'sale-prices', $id_group) ):
$saleprice = $price * 1.15;
$product->set_regular_price( $saleprice );
$product->set_sale_price( $price );
else:
$product->set_regular_price( $price );
$product->set_sale_price( '' );
endif;
$product->save();
endif;
if ( $id_group == '' ):
$product->set_regular_price( $oldprice );
$product->set_sale_price( $oldsaleprice );
$product->save();
endif;
}
};
Это нужно почитать про кастомный шаблон страницы ВП загуглите.
И сделайте таких 2 шаблона. И там уже сделайте верстку и прикрутить контент туда куда вам нужно.
И по сути странице которой нужна обводка или нет задаете соответствующий шаблон. Вот как то так.