diias
Forum Replies Created
-
Thx, I just used a screenshot from the documentation because the field was deleted. Unfortunately, empty is also displayed.
Forum: Plugins
In reply to: [Woo Add Custom States] Woocommerce Store Address Country Cant Selectsame, how fix that?
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] pwb-carousel > hide_empty – failYeah its not work for carousel shortcode. Try it:
/wp-content/plugins/perfect-woocommerce-brands/classes/shortcodes/class-pwb-carousel.php
line 54
$brands_array = \Perfect_Woocommerce_Brands\Perfect_Woocommerce_Brands::get_brands( self::$atts['items'] );
replaced by$hide_empty = (self::$atts['hide_empty'] != 'true') ? false : true; $brands_array = \Perfect_Woocommerce_Brands\Perfect_Woocommerce_Brands::get_brands( $hide_empty, self::$atts['items'] );
- This reply was modified 4 years, 2 months ago by diias.
Have you checked it?
now use english
Forum: Plugins
In reply to: [Custom Field Suite] wysiwyg switched to tinymceIts tinymce, but how add more function in it? i need table button.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Сортировка при выборе параметровПонял. Спасибо.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Сортировка при выборе параметровНашел, это стандартные настройки woocommerce, Woocommerce – настройки – товар – отображение – для категории – отображать подкатегории и товары. Если просто выбрать товары тогда подкатегории не показывает и выводит сообщение. Но подкатегории как бы нужны мне. Куда копать дальше
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Сортировка при выборе параметровСпасибо за быстрый ответ. Поставил Use javascript, проблемы такие ушли, но как теперь сделать, чтобы при выборе атрибутов (например Бренд: Haibike, Диаметр: 12″) товаров которых нет выводило не категории, а сообщение “Товаров не найдено”.
Forum: Plugins
In reply to: [Disqus Comment System] cannot configure disqusim having same problem too
Forum: Plugins
In reply to: [Strong Testimonials] Star-Ratingluckyluggi,
good, but if i leave more than one review, rating gets one at all. How resolve it, or Chris Dillon plans to make it in future?Forum: Plugins
In reply to: [Strong Testimonials] [feature] Add previous and next navigation to slideshowFound solution, but without autorotation.
Create view:
Display
Quantity – all
per page – 1, Navigation – after
Style – Default widget.In js/quickpager.jquery.js AFTER $(“html,body”).animate({scrollTop:scrollto}, 800);
return false;
});INSERT
var nextLink = "<li class='strong-last-str'><a id='nextLink' href='#'><i class='fa fa-chevron-right' aria-hidden='true'></i></a></li>"; var prevLink = "<li class='strong-first-str'><a id='prevLink' href='#'><i class='fa fa-chevron-left' aria-hidden='true'></i></a></li>"; $(".simplePagerNav").prepend(prevLink).append(nextLink); $("#nextLink").click(function(e) { e.preventDefault(); $("li.currentPage").next("li[class^=simplePageNav]").find("a").click(); }); $("#prevLink").click(function(e) { e.preventDefault(); $("li.currentPage").prev("li[class^=simplePageNav]").find("a").click(); });
After that customize css for my example:
.simplePagerNav li{display:none;} .simplePagerNav li:first-child, .simplePagerNav li:last-child{display:block !important;} .simplePagerList { position: relative; float: right; z-index: 1;} .simplePagerNav .strong-first-str {float:left;} .simplePagerNav .strong-last-str {float:right;}
and I got a slider with button next and prev.
But i have jquery conflict and dont know where, my pagination not work on all pages. If that work need paste in function.php
function my_theme_load_testimonials_pagination() { if ( 'portfolio' == get_post_type() ) { // for portfolio wp_enqueue_script( 'wpmtst-pager-plugin' ); ?> <script type='text/javascript'> jQuery(document).ready(function($) { $(".strong-paginated").quickPager({ pageSize : 1, currentPage : 1, pagerLocation : "before" // or "before" or "after" }); }); <?php } } add_action( 'wp_head', 'my_theme_load_testimonials_pagination' );
Sorry for Eng =). Good luck
ResultForum: Plugins
In reply to: [Strong Testimonials] [feature] Add previous and next navigation to slideshowI need nav in slider too. I tried to make an example
$(‘#s2’).cycle({
fx: ‘fade’,
speed: ‘fast’,
timeout: 0,
next: ‘#next2’,
prev: ‘#prev2’
});but nothing, can you help or say where change?