• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Openpos - WooCommerce Point Of Sale(POS)

Openpos - WooCommerce Point Of Sale(POS) v.6.5.6

No permission to download
Коллеги, кто-нибудь знает, как сделать так, чтобы заказ с сайта сразу приходил на экран кухни независимо от POS? Клиент делает заказ на сайте, подтверждает его и указывает способы оплаты - до или после. Заказ по-прежнему должен отображаться на экране кухни и в кассе.
 
  • Love
Reactions: wasiqjaved
Guys, I have noticed that some addons are shared outdated or misidentified.

For that reason I have taken the initiative to create a library with all the most updated versions of Open POS addons that I found.

Currently this library includes:
app-demo-v1.0.zip
app-product-info-v1.1.zip
app-wordpress-v1.1.zip
authorize_net-v1.1.zip
authorizenet-magnetic-v1.4.zip
book-price-v1.1.zip
customer-pole-v1.0.zip
customize-kitchen-view-v1.0.zip
dynamic-pricing-v1.1.zip
force-update-stock-v1.0.zip
germanized-v1.0.zip
google-cloud-print-1.0.zip
google-cloud-printer-v1.1.zip
google-place-api-v1.2.zip
iam-print-receipt-v1.3.zip
liquid-unit-v1.1.zip
location-protected-v1.0.zip
material-management-v1.2.zip
meat-custom-v1.2.zip
memberships-v1.1.zip
momo-user-v1.1.zip
mycred-v1.0.zip
n-media-ppom-v1.0.zip
no-sleep-v1.0.zip
online-order-notice-v1.0.zip
order-delivery-v1.3.zip
pdf-invoices-packing-slips-v1.0.zip
pending-payment-v1.1.zip
pickup-v1.2.zip
points-and-rewards-v1.4.zip
pos-credit-v1.0.zip
prices-by-user-role-v1.0.zip
print-google-cloud-print-gcp-v1.0.zip
printer-v1.3.zip
printnode-v1.7.zip
promotion-v1.1.zip
role-based-price-pro-v2.0.zip
role-pricing-lite-v1.0.zip
role-pricing-v1.0.zip
sequential-order-numbers-v1.12.1.zip
sharestock-with-online-v2.1.zip
smart-coupons-v1.0.zip
square-v1.2.zip
star-cloudprnt-v1.7.zip
stocktransfer-v1.6.zip
storagebox-v.1.2.zip
stripe-terminal-v1.9.zip
tier-pricing-table-v1.1.zip
tm-addon-v2.0.zip
translate-v1.2.zip
ultimate-points-and-rewards-v1.1.zip
vietnam-search-v1.0.zip
wc-pdf-product-vouchers-v1.0.zip
woo-custom-product-addons-pro-v1.0.zip
woo-wallet-v1.2.zip
wpayment-v2.0.zip
yedpay-terminal-v1.3.4.zip
yith-advanced-product-options-premium-v1.2.zip
yith-point-v1.1.zip
yith-product-barcode-v1.0.zip

Currently my membership has expired and does not allow me to download new addons or new updates, so I hope that those who still have active memberships can help me to keep this public library updated.

If you have any missing addons here or any more updated ones, please send them to me so I can add them to the library.

For example, I am in need of the add-on for Woocommerce Cost of Goods, I would appreciate if any of you can supply it.

Thank you!

Library Link:
plz reupload
 
  • Like
Reactions: ricurdo
Sorry, I still don't understand your question, but if you know that this is the function, then comment it, or remove the return, or the condition... in any of the ways it will not appear.
I just want that "Item Details" line to be removed, because it's redundant.

With Following Code snippet, I am able to 'hide' it from Woocommerce Admin Orders Page,
Code:
 add_filter('woocommerce_hidden_order_itemmeta',function($meta){
     $meta[] = 'op_item_details';
     return $meta;
 },101,1);
but it still gets generated in PDF invoices.

The following function in /wp-content/plugins/woocommerce-openpos/lib/class-op-woo.php is actually formatting how the meta key is displayed.

Code:
public function woocommerce_order_item_display_meta_key($display_key, $meta){
    if($meta->key && $meta->key == 'op_item_details')
    {
        $display_key = __('Item Details','openpos');
    }
    return $display_key;
}

This method checks if the meta key is op_item_details and then sets the display key to "Item Details". It seems like the plugin is using this filter to set a user-friendly display name for the meta key when shown in the order items list. Removing this function simply doesn't display variation name and 'Item Details' part, but it still generates selected variation twice.

To prevent the "Item Details" from being added to the order meta in the first place, I believe I would need to look for where op_item_details meta is being added to the order items. This might be happening during the order creation process when an item is added to the order through OpenPOS. Just need to find the right approach to handle it.
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock