Madovsky
Forum Replies Created
-
Forum: Plugins
In reply to: [Яндекс Доставка (Boxberry)] Ошибки при миграции в Яндекс ДоставкуТоже столкнулся с этой проблемой в версии 2.30. У страницы /checkout/ LCP около 25 секунд. На версии плагина 2.29 такой проблемы нет, но в ней не отображается кнопка выбора ПВЗ в виджете.
Также в 2.30 как-то странно сохраняется “Пункт приема заказов по умолчанию” в настройках зон доставки – при открытии страницы в поле есть значение, однако, при сохранении настроек поле очищается.- This reply was modified 8 months, 3 weeks ago by Madovsky.
Forum: Plugins
In reply to: [Product Video Gallery for Woocommerce] Any way to disable sliding?Thanks for the answer!
But I have more than 8 thumb for products.
Maybe there is a method to show tumbnails in 2 rows?
It will completely solve my case.- This reply was modified 3 years, 2 months ago by Madovsky.
Forum: Plugins
In reply to: [Site Reviews] No reviews in private posts@geminilabs Thank you very much, it works now!
Forum: Plugins
In reply to: [Site Reviews] No reviews in private postsI’ve tried to use this hook from FAQ, but no results.
/** * @param bool $isPublished * @param int|\WP_Post $postId * @return bool */ add_filter('site-reviews/post/is-published', function ($isPublished, $postId) { if ('trainee' === get_post_type($postId) && 'private' === get_post_status($postId)) { $isPublished = true; } return $isPublished; }, 10, 2);Forum: Plugins
In reply to: [ELEX WooCommerce Catalog Mode] Option for “mailto” and “tel” in linksThank you, I will try this 🙂
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] MULTIBRAND/AUTHORS@neverendlessly I believe, it can be solved via theme CSS. Try to increase z-index value.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] MULTIBRAND/AUTHORS@neverendlessly sorry, I don’t get what exactly you want to customize, but there is a solid documentation with examples: https://mctagmap.tugbucket.net/options/
Feel free to ask me more detailed if you have some troubles, I’m try to help.Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] MULTIBRAND/AUTHORS1) Use this code in CSS:
.pwb-single-product-brands > a:not(:last-child)::after { content: ", "; }2) I would recommend plugin “Multi-column Tag Map” by Alan Jackson, with this shortcode:
[mctagmap taxonomy="pwb-brand" name_divider=" "]. You also need to insert between Name and Lastname in your Brands/Authors.Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Space or caracter between 2 or more brandsAdd this code to CSS:
.pwb-single-product-brands > a:not(:last-child)::after { content: ", "; }You can replace “, ” to any symbol you needed.
- This reply was modified 6 years, 9 months ago by Madovsky.
Forum: Plugins
In reply to: [NS Featured Posts] Better UXVery nice, thanks! 🙂
With some Russian letters it gets similar bug. Something with Unicode support, I think.