Max
Forum Replies Created
-
Добрый день @lunte !
Напишите нам, пожалуйста, в телеграм – @WPWC_iikoCloud_Bot
Со ссылкой на данную тему.Forum: Reviews
In reply to: [WPWC classic Coming soon] Thanks! Exactly what I was looking forHi @standasykora !
Thanks for your review ??
Forum: Plugins
In reply to: [iikoCloud integration for WooCommerce] Ошибка экспорта заказа на кухнюДобрый день!
Ошибка:Order item modifier “К зеленому чаю” (765630cc-b578-4643-810f-0d55076deab0) has invalid group amount: min = 2, max = 2, actual = 1. Ensure that interconnected product and modifier changes are in the same edit session.
Говорит, что модификатор К зеленому чаю должен иметь минимальное количество 2. При экспорте в заказе передаётся количество 1. Поэтому айко генерирует данную ошибку.
Если Вы используете премиум версию плагина, напишите нам в Телеграм бот:
@WPWC_iikoCloud_BotForum: Plugins
In reply to: [iikoCloud integration for WooCommerce] Перестал происходить экспорт заказовЗдравствуйте!
Попробуйте в настройках плагина, в разделе Экспорт, выключить опцию Проверять заказы после экспорта, и сохраните настройки.
View post on imgur.com
Forum: Themes and Templates
In reply to: [Astra] Add support for Woocommerce Coming Soon PageHi @delanthear
Maybe this plugin will be useful for you:?https://ru.www.ads-software.com/plugins/wpwc-classic-coming-soon/
Forum: Plugins
In reply to: [WooCommerce] Coming soon page editMaybe this plugin will be useful for you: https://ru.www.ads-software.com/plugins/wpwc-classic-coming-soon/
Forum: Plugins
In reply to: [WooCommerce] Coming soon page editHi, @ilyasfoo!
There are no ongoing efforts to add support for classic themes that I’m aware of.
Okay )
Community contributions are welcome though!
I made a small plugin for this purpose, maybe it will be useful to someone.
Forum: Plugins
In reply to: [WooCommerce] Coming soon page editHello!
Is it planned to support this feature for classic themes?
Currently, there are a huge number of non-block themes, including premium ones, that are not going to switch to the block model.
Is it possible to add a separate template for the Coming Soon page?
Or make a filter to override the coming-soon-entire-site.php pattern?Okay, thank you.
Forum: Plugins
In reply to: [iikoCloud integration for WooCommerce] Интеграция с Айко, терминалЗакрыто.
Forum: Plugins
In reply to: [Tinkoff Credit for WooCommerce] Не работаетЗдравствуйте, данный плагин закрыт.
Тинькофф убрал поддержку отправки форм этим методом.
Плагин нерабочий.Forum: Plugins
In reply to: [Yoast SEO] Disable robots.txt changing by YOAST SEOHello @mouss1333
Just use this snippet in your functions.php:
/** * Fix Yoast SEO robots.txt changes. * https://www.ads-software.com/support/topic/disable-robots-txt-changing-by-yoast-seo/#post-16648736 */ function wpwc_fix_yoast_seo_robots_txt() { global $wp_filter; if ( isset( $wp_filter['robots_txt']->callbacks ) && is_array( $wp_filter['robots_txt']->callbacks ) ) { foreach ( $wp_filter['robots_txt']->callbacks as $callback_priority => $callback ) { foreach ( $callback as $function_key => $function ) { if ( 'filter_robots' === $function['function'][1] ) { unset( $wp_filter['robots_txt']->callbacks[ $callback_priority ][ $function_key ] ); } } } } } add_action( 'wp_loaded', 'wpwc_fix_yoast_seo_robots_txt' );
Forum: Plugins
In reply to: [iikoCloud for WooCommerce] Плагин переехалСайт плагина:
Forum: Plugins
In reply to: [iikoCloud integration for WooCommerce] Интеграция с Айко, терминалСергей, здравствуйте!
Terminals request failed.
Данная ошибка говорит, что в iiko у вас не созданы терминалы.
Попробуйте их создать по инструкциям:
https://ru.iiko.help/articles/#!iikooffice-7-9/configuring-iiko
https://ru.iiko.help/articles/#!iikooffice-7-9/topic-720/a/h2_541923364И возможно кто-то знает где в айко располагаются заказы с сайта?
Заказы можно увидеть в iikoFront или в iikoOffice в разделе Доставка – Доставка – Доставки.
Я так подозреваю, что это связано с тем, что не подтягивается терминал.
Всё верно, после добавления терминала заказы с сайта должны экспортироваться на сайт.
Если возникнут ещё вопросы, пишите на форум плагина или на email:
hi[sobaka]wpwc.ru
Forum: Plugins
In reply to: [Yoast SEO] Disable robots.txt changing by YOAST SEOHi @nsukonny
Thank you for the solution!
I just simplified your snippet a bit for this specific case:
/** * Fix Yoast SEO robots.txt changes. * https://www.ads-software.com/support/topic/disable-robots-txt-changing-by-yoast-seo/#post-16648736 */ function wpwc_fix_yoast_seo_robots_txt() { global $wp_filter; if ( isset( $wp_filter['robots_txt']->callbacks ) && is_array( $wp_filter['robots_txt']->callbacks ) ) { foreach ( $wp_filter['robots_txt']->callbacks as $callback_priority => $callback ) { foreach ( $callback as $function_key => $function ) { if ( 'filter_robots' === $function['function'][1] ) { unset( $wp_filter['robots_txt']->callbacks[ $callback_priority ][ $function_key ] ); } } } } } add_action( 'wp_loaded', 'wpwc_fix_yoast_seo_robots_txt' );