phnataly
Forum Replies Created
-
https://prnt.sc/23ocv1e
how to show only posts that included to the current term 1 + term 2 taxonomy, not all records from the second taxonomy// display child term of current term's parent taxonomy $term = get_queried_object(); $children = get_terms( $term->taxonomy, array( 'parent' => $term->term_id, 'hide_empty' => false ) ); if ( $children ) { foreach( $children as $subcat ) { echo '<li style="display:flex"><a href="' . esc_url(get_term_link($subcat, $subcat->taxonomy)) . '">' . // wrapped $subcat->name . ' (' . $subcat->count . ')' . '</a></li>'; } } // show term from taxonomy redaktsiya $terms = get_terms( array( 'taxonomy' => 'redaktsiya', // Swap in your custom taxonomy name 'hide_empty' => true, )); echo '<ul class="wpb_page_list">'; // Loop through all terms with a foreach loop foreach( $terms as $term ) { // Use get_term_link to get terms permalink // USe $term->name to return term name echo '<li style="display:flex"><a href="'. get_term_link( $term ) .'">'. $term->name .'</a></li>'; } echo '</ul>';
but I don’t need to show not all posts with taxonomy ‘taxonomy’ => ‘redaktsiya’
only those that relate to the current child term of current term’s parent taxonomy from TAXANOMY 1 and taxanomy redaktsiyadisplaying other information from a given taxonomy, based on the current archive
Forum: Plugins
In reply to: [WP Translitera] После обновления перестал работатьРаботает теперь, спасибо.
Forum: Plugins
In reply to: [WP Translitera] После обновления перестал работатьНе работает. Версия свежая. Кнопка -Транслитерировать- не реагирует
Forum: Plugins
In reply to: [WP Translitera] После обновления перестал работатьТоже после обновления перестал работать. Какие бы настройки не выбрала, при нажатии -выполнить- ничего не происходит. Mbstring включен
Forum: Plugins
In reply to: [Polylang] Hreflang with errorOk. Thank you!
Forum: Plugins
In reply to: [Grid & List Toggle for Woocommerce] Not working with my theme+
Forum: Plugins
In reply to: [Polylang] Hreflang with errorForum: Plugins
In reply to: [Goods Catalog] Оригинальный сайдбарЕсли речь идет о том, чтобы вывести второй сайдбар на страницах каталога, то я сделала следующим образом (не знаю насколько верно).
1. В function.php темы зарегистрировала новый сайдбар.if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'New Sidebar', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<div class="title">', 'after_title' => '</div>', ));
2. Скопировала файл из плагина sidebar-goods.php и переименовала в sidebar-left-goods.php и заменила содержимое на
<?php /** * Template: Sidebar */ global $catalog_option; if (isset($catalog_option['use_sidebar'])) { echo '<aside class="goods-left-sidebar">'; if (!dynamic_sidebar('New Sidebar')) { echo '<h3 class="widgettitle">' . __('Goods Catalog Sidebar is Activated!', 'gcat') . '</h3>'; echo __('Hi! It is Goods Catalog Sidebar. Please <a href="/wp-admin/widgets.php">add some widgets</a> in there, and this message will be hidden automatically.', 'gcat'); } echo '</aside>'; }
3. В файле плагина wrapper.php после строк
echo '</div>'; // catalog-inner echo '</div>'; // goods-catalog
добавила
load_template ( dirname( __FILE__ ) . '/sidebar-left-goods.php' ) ;
4. В стилях плагина дописала для нового сайдбара выравнивание по правой стороне, а центральной части (.catalog-inner ) задала нужную мне ширину – вместо 100% укажите например 70%. В зависимости от темы.
Теперь можно на страницах каталога выводить виджеты с левой и правой стороны. Плагин конечно же удобный и простой в использовании, спасибо автору. Но жаль что не поддерживает без правки кода вывод двух сайдбаров.
Если в магазине установлены товары в долларах, будет ли проходить автоматическая конвертация в рос.рубли при оплате через Робокассу?
Forum: Plugins
In reply to: [WP-PostViews] Doesn`t work with multisiteI looked again at all sites not consider views:
[ Do not use the ad listed shortlink provider again in these forums. ]
first site: https://ostkpmr.ru/blog/category/novosti/
subdomain: https://tiraspol.ostkpmr.ru/category/novosti-oo-ostk-goroda-tiraspol/Forum: Plugins
In reply to: [WP-PostViews] Doesn`t work with multisiteHe does not believe shows on subdomains, always zero on subdomains
Forum: Plugins
In reply to: [WP-PostViews] Were i need put the codeit`s work. Thank you very much!
Have a nice weekend!Forum: Plugins
In reply to: [YITH WooCommerce Badge Management] Not badge displays on subcategoryOk,
Thanks!
Have a nice day!