webfantastic
Forum Replies Created
-
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Incorrect order weight in the applicationHi! versions 2.3.2. a breakdown with an incorrect body weight is still present. Your application does not round the weight to hundredths, but shows an infinite number after the decimal point.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Problem displaying correct calculationHi! There is another problem, the applied discounts and coupons are not shown in the order.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Notifications about order statuses🙁
Forum: Plugins
In reply to: [PickingPal Lite for WooCommerce] Order assembly sequenceHi!
I don’t have the opportunity to give interviews right now. The only thing I would like to point out, which is not found anywhere in the build plugins, is that products are combined not only by storage cell, but also by row. For example, a warehouse has 2 floors and on each floor there are 15 rows in which there are cells. Thus, when assembling, the assembly sheet should have: floor, row, place. If there are 2000 products or more in an order like one of our clients, then it is also problematic to collect orders only by cell. During assembly, the products must be decomposed exactly by floor, row, and only then place. This means that the importer must see all the products in the list from the same row in order to quickly put them in the basket. Otherwise, he will run between the rows to the specified places and it will take a very long time. He will have to travel a lot of the way, returning to the same food aisles several times. As for the mobile assembly application, one of our clients has a custom development and there the assemblers not only scan the product or enter the article to mark it as assembled, but they can also simply click on it and mark how much they put in the basket. They can also replace one product with another in agreement with the buyer (this is relevant for food products). This is especially convenient when the mobile scanner does not work well, and it is very inconvenient and time-consuming to enter a long product article.
- This reply was modified 7 months ago by webfantastic.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Several problems in the applicationThanks
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Several problems in the applicationHi! I added an attribute to the products with a storage location, but unfortunately it does not appear anywhere in the application for the product in the order. Apparently you don’t output attributes at all. However, you can output order fields to the order, but you cannot display attributes. Or is it possible? Can you tell me how you proposed to solve the problem in order to find out the storage location of the product? The only solution is to specify it in the article, but this is also not very convenient, if suddenly the section number changes, you need to manually change all products. Usually, we also write the supplier’s code in this field if the product is on order.
Forum: Plugins
In reply to: [PickingPal Lite for WooCommerce] Order assembly sequenceHi! When will paperless builds be available in the paid version approximately? I’ll be happy to buy it, but I haven’t used paper versions for a long time.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Several problems in the applicationCan you add a batch order assembly feature? For example, some kind of field where the location of the cell is indicated. The importer selects several orders in the application that he collects and sees the assembly of simultaneously selected orders in the application, rather than each one separately. Thus, the same products in several orders are summed up and the collector takes them off the shelf, and then after collecting all the orders together, these goods are divided into separate orders. At the same time, you can print an assembly label or order numbers for each product. This is called the wave assembly. All these are suggestions to improve the application. Thank you.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Several problems in the applicationHi!
Thanks for the quick reply. The second point is not entirely clear, when you click on the image, “fulfilled: done” appears, but what if the order contains a quantity of not 10, but only 5? It turns out that 5 were shipped, but this cannot be noted anywhere. It would be good if, when clicking on the photo, when the collector selects the shipped product, so that you can specify the quantity of the shipped product. I also found one inconvenient feature, this is the quantity drop-down list when adding a new product to an order. It is very inconvenient if your quantity is more than 10-20. You’ll just get tired of squandering. As for displaying an additional field, yes, the attribute will solve the problem, although it is not very convenient. It would be possible to make it possible in the plugin settings to add your own field variables that will be displayed. As with css settings, just the same field to add your own code. Moreover, your application supports wordpress functions.
Forum: Plugins
In reply to: [Hippoo Mobile App for WooCommerce] Unable to connect to the siteThanks, I’ve solved this problem. Another plugin blocked the restip
@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 1 year, 8 months 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 1 year, 9 months ago by webfantastic.
- This reply was modified 1 year, 9 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; // Возвращаем исходное значение фильтра, если итоговая цена заказа не равна нулю }