CREATE TABLE IF NOT EXISTS wp_temporary AS (SELECT * FROM wp_term_taxonomy WHERE `wp_term_taxonomy`.`taxonomy` = 'portfolio_entries')
UPDATE `wp_temporary` SET `term_taxonomy_id`= `term_taxonomy_id` + 1000, `taxonomy`= 'post_tag' WHERE `taxonomy`= 'portfolio_entries'
INSERT INTO `wp_term_taxonomy`(`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) SELECT * FROM wp_temporary
DROP TABLE wp_temporary
{comments}
. Нужно его в обернуть [not-catlist=id нужной категории]
. Например если вы не хотите что бы форма комментариев выводилась в категории с id 5 то должно быть так[not-catlist=5]{comments}[/not-catlist]
[not-catlist=5,6,7,8]{comments}[/not-catlist]
#button-cart{
width: 20%;
}
.product-tabs{
width: 30%;
display: flex;
flex-direction: column;
position: absolute;
top: 22%;
left: 0;
}
.product-info {
display: flex;
margin-left: 30%;
flex-direction: row;
justify-content: center;
align-items: center;
}
#product{
display: flex;
flex-direction: column;
}
@media all and (max-width:610px){
.product-tabs{
width: 100%;
display: flex;
flex-direction: column;
position: relative;
}
#button-cart{
width: 100%;
}
}