webfantastic
Forum Replies Created
-
@janilyn409 Hi! There is no such setting for the nothing style, it is only for pop-up https://www.awesomescreenshot.com/image/50668711?key=94c81400ef7256e7aed49c913eaeb657
We support customer sites and one had a free version 1.8.1, it supports, and the other has a pro 1.8.5 and it does not support.
- This reply was modified 2 months, 1 week ago by webfantastic.
Forum: Plugins
In reply to: [WPC Product Image Swap for WooCommerce] Shortcode@janilyn409 Hi! A shortcode is urgently needed. Your plugin does not work with page constructors like WPBAKERY, where the preview card is configured in a grid.
- This reply was modified 3 months ago by webfantastic.
- This reply was modified 3 months ago by webfantastic.
Forum: Plugins
In reply to: [belingoGeo] С кешированием Redis шорткоды не работаютДобрый день! url не меняется.
Forum: Plugins
In reply to: [Robokassa payment gateway for Woocommerce] Если сумма заказа равно 0@redheads144 Попробуйте этот код функции:
add_filter( 'woocommerce_cart_needs_payment', 'custom_disable_payment_gateway_based_on_total' ); function custom_disable_payment_gateway_based_on_total( $needs_payment ) { // Проверяем, равна ли итоговая цена заказа нулю if ( WC()->cart->total == 0 ) { return false; // Разрешаем оформление заказа без оплаты } return $needs_payment; // Возвращаем исходное значение фильтра, если итоговая цена заказа не равна нулю }
Forum: Plugins
In reply to: [Robokassa payment gateway for Woocommerce] Если сумма заказа равно 0@redheads144 наложенный платеж это тоже способ оплаты, вы должны отключить обработчик оплаты при стоимости 0. Копируйте выше функцию и пробуйте
Forum: Plugins
In reply to: [Robokassa payment gateway for Woocommerce] Если сумма заказа равно 0Функция:
add_action( 'woocommerce_review_order_before_payment', 'disable_payment_gateway_based_on_coupon', 10 ); function disable_payment_gateway_based_on_coupon() { global $woocommerce; // Проверяем, применен ли купон на 100% скидку $applied_coupons = $woocommerce->cart->get_applied_coupons(); $coupon_discount = 0; foreach ( $applied_coupons as $code ) { $coupon = new WC_Coupon( $code ); if ( $coupon->get_amount() === 100 ) { $coupon_discount = 100; break; } } // Проверяем, если сумма заказа равна 0 и применен купон на 100% скидку if ( $woocommerce->cart->get_total() == 0 && $coupon_discount == 100 ) { // Отключаем все способы оплаты $available_gateways = WC()->payment_gateways->get_available_payment_gateways(); foreach ( $available_gateways as $gateway_id => $gateway ) { unset( WC()->payment_gateways->payment_gateways[ $gateway_id ] ); } // Добавляем сообщение о возможности оформления заказа без оплаты wc_add_notice( 'Вы можете оформить заказ без оплаты.', 'notice' ); } }
- This reply was modified 9 months, 1 week ago by webfantastic.
Forum: Plugins
In reply to: [Robokassa payment gateway for Woocommerce] Если сумма заказа равно 0вопрос не относится к плагину робокасса. Вы хотите, чтоб за вас все сделали, написали вам отдельную функцию, нашли плагин сторонний. Зайдите в яндекс или в гугл и наберите – оформление заказа без оплаты wordpress или динамические способы оплаты
Forum: Plugins
In reply to: [Robokassa payment gateway for Woocommerce] Если сумма заказа равно 0вам надо отключить этот способ платежа при итоговой цене 0. Сделать можно функцией или с помощью дополнительного плагина. Посмотрите в поиске, полно решений. У робокассы не получится с 0 стоимостью провести заказ, тк это система приема платежей.
Hi! Google is complaining about the video again that the Description parameter for the video is missing. Can you check all the necessary parameters and add them to the scheme? Description can I take the value from the Title probably?
Hi!
If it appears in the paid version and works well, I would buy a plugin.
Google swears at the video again, writes that there is a mistake. The “uploadDate” parameter is missing.
Hi! About the shortcode, I meant the following. It would be good to create a shortcode that randomly displays a photo of the product or video. This shortcode is inserted into the grid template. not all products will have videos displayed in a grid, but in a random order. Maybe it’s possible for a friend to implement this somehow? This solution will revitalize the catalogs. Watch the video in the example.
https://www.awesomescreenshot.com/video/24183558?key=fc0dd16a161dfbab50fb2dbbed54bfa6
Hi! Inserting a video into the catalog could be solved via a shortcode. Is it possible to create a shortcode that will insert preview photos and videos in the place where it is installed. Then you can put it in the product grid instead of some images and the catalog will contain previews of video products.
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] Making track button first@shanerprice Install the Admin Column Pro plugin and you can move the columns as you want.
Forum: Plugins
In reply to: [Video Gallery for WooCommerce] Does not show the video iconHi! Thanks! I logged into Chrome through another Google account and everything is working! There is another problem with viewing on a smartphone or via the console in smartphone mode. Switching image previews in the gallery does not work. This is due to the fact that the icon on the preview of the video in the small picture prevents switching. If you press your finger into the very center of the icon, then switching to the video will not happen.
https://www.awesomescreenshot.com/image/44532522?key=f10c2a1048a74b529759b8d5cd1a57bd
Error detection procedure: 1 I go to the Android Chrome product page. 2. I switch the image tabs. 3. I click on the center of the video tab (does not switch), it only works if you click on the side of the playback icon. I tried it on several android smartphones
- This reply was modified 12 months ago by webfantastic.