<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: vobobo</title>
    <description>The latest articles on DEV Community by vobobo (@vobobo4773).</description>
    <link>https://dev.to/vobobo4773</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F824765%2F2210c6b7-ead1-4d5f-bf1c-5e4416ca09bf.jpg</url>
      <title>DEV Community: vobobo</title>
      <link>https://dev.to/vobobo4773</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vobobo4773"/>
    <language>en</language>
    <item>
      <title>WooCommerce Multi Vendor Plugins</title>
      <dc:creator>vobobo</dc:creator>
      <pubDate>Thu, 03 Mar 2022 13:35:29 +0000</pubDate>
      <link>https://dev.to/vobobo4773/woocommerce-multi-vendor-plugins-4opf</link>
      <guid>https://dev.to/vobobo4773/woocommerce-multi-vendor-plugins-4opf</guid>
      <description>&lt;p&gt;&lt;strong&gt;WooCommerce Multi Vendor Plugins&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;add_filter('gettext', 'Gomahamaya_change_sku_text', 10, 3);
function gomahamaya_change_sku_text($translation, $text, $domain) {
   if ($domain == 'woocommerce') {
        switch ($text) {

            case 'SKU:':
                $translation = 'Custom Text:';
                break;
        }
   }
    return $translation;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;1. Dokan Multivendor&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Dokan Multivendor is, so far, the most popular WooCommerce multi-vendor plugin. It’s super easy to use and includes many features to create a multi-vendor marketplace like Amazon, eBay, or Alibaba in less than an hour!&lt;br&gt;
Unlike any other WooCommerce multi-vendor plugins, Dokan comes with an extensive one-of-a-kind frontend for vendors. Every vendor gets a dashboard where they can precisely monitor and maintain their business.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. WCFM Marketplace&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The WCFM marketplace from WC Lovers is a WooCommerce multi-vendor plugin that comes with plenty of features to give you overwhelming control over your online marketplace. It’s perfect for those who look forward to a great deal of flexibility.&lt;br&gt;
With WCFM, every vendor gets a Vendor Mobile App with deep monitoring and customization opportunities over their products, bookings, inquiry, reports, etc. For example, If a vendor needs to change the name, price, stock, or image of a product, they can do it quickly with the app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. WC Marketplace&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The WC Marketplace is a dependable WooCommerce multi-vendor plugin. It comes with an effortless setup procedure, especially considering the number of functionalities offered.&lt;br&gt;
WC Marketplace provides the admin with convenient authority over the marketplace, including views, sales, sales reports, and commission sections. Furthermore, there are various commission plans to choose from, offering you greater flexibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. WC Vendors Marketplace&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This plugin stands in a unique position in terms of usability — it offers you centralized administration over your entire marketplace and vendor storefronts, providing a comprehensive frontend dashboard. This means you can focus on the marketing and sales growth of your online marketplace.&lt;br&gt;
With WC Vendors, merchants can enjoy a restrictionless marketplace and sell all kinds of products, including physical, digital, subscriptions, booking, or even auctions. You can also sell membership plans to your vendors, setting up parameters and limits on their selling products.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reference Blog&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.gomahamaya.com/best-woocommerce-multi-vendor-plugins-wordpress/"&gt;WooCommerce Multi Vendor Plugins&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>WooCommerce Point Of Sale Plugins</title>
      <dc:creator>vobobo</dc:creator>
      <pubDate>Thu, 03 Mar 2022 12:10:54 +0000</pubDate>
      <link>https://dev.to/vobobo4773/woocommerce-point-of-sale-plugins-1hj0</link>
      <guid>https://dev.to/vobobo4773/woocommerce-point-of-sale-plugins-1hj0</guid>
      <description>&lt;p&gt;&lt;strong&gt;WooCommerce Point Of Sale Plugins&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;add_action('init',  "gomahamaya_tutorial_cpt");&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function njengah_tutorial_cpt(){

    $labels = array(
            'name'               =&amp;gt;   _x('Tutorials', 'post type general name'),
            'singular_name'      =&amp;gt;   _x('Tutorial', 'post type singular name'),
            'menu_name'          =&amp;gt;   _x('Tutorials', 'admin menu'),
            'name_admin_bar'     =&amp;gt;   _x('Tutorial', 'add new on admin bar'),
            'add_new'            =&amp;gt;   _x('Add New', ''),
            'add_new_item'       =&amp;gt;   __('Add New tutorial'),
            'edit_item'          =&amp;gt;   __('Edit Tutorial'),
            'new_item'           =&amp;gt;   __('New Tutorial'),
            'all_items'          =&amp;gt;   __('All Tutorial'),
            'view_item'          =&amp;gt;   __('View Tutorial'),
            'search_items'       =&amp;gt;   __('Search Tutorials'),
            'not_found'          =&amp;gt;   __('No Tutorials found'),
            'not_found_in_trash' =&amp;gt;   __('No Tutorials found in Trash'), 
            'parent_item_colon'  =&amp;gt;   __('Parent Tutorials:'),

    );

        $args = array(
            'hierarchical'       =&amp;gt;  true,     
            'labels'             =&amp;gt;  $labels,
            'public'             =&amp;gt;  true,
            'publicly_queryable' =&amp;gt;  true,  
            'description'        =&amp;gt; __('Description.'),
            'show_ui'            =&amp;gt;  true, 
            'show_in_menu'       =&amp;gt;  true,
            'show_in_nav_menus'  =&amp;gt;  true,          
            'query_var'          =&amp;gt;  true,
            'rewrite'            =&amp;gt;  true,
            'query_var'          =&amp;gt;  true,
            'rewrite'            =&amp;gt;  array('slug' =&amp;gt; 'tutorial'),
            'capability_type'    =&amp;gt;  'page',
            'has_archive'        =&amp;gt;  true, 
            'menu_position'      =&amp;gt;   22,
            "show_in_rest"       =&amp;gt;  true,
            'supports'           =&amp;gt;  array( 'title', 'editor', 'author', 'thumbnail', 'comments', 'revisions', 'page-attributes', 'custom-fields' )
        ); 

        register_post_type('tutorial', $args);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. wePOS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;wePOS is a popular WooCommerce POS plugin that comes in both a limited free version and more full-featured premium versions.&lt;br&gt;
With the premium version, you can add unlimited physical locations with unlimited “counters” at each location (like separate checkout counters or devices).&lt;br&gt;
When cashiers log in, they’ll be able to choose their location and counter.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Point of Sale System for WooCommerce&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The POS system itself is built with React and is quite user-friendly, as you can see in the example above. You can interact with a full-featured demo here.&lt;br&gt;
Point of Sale System for WooCommerce costs $99 with standard Envato licensing (lifetime updates for a single site and six months of support, with an option to pay to extend support to one year).&lt;br&gt;
The fact that you get lifetime updates makes this one by far the most affordable premium WooCommerce POS system plugin.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. FooSales&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;FooSales is a WooCommerce POS plugin that comes with both a web version and dedicated tablet apps (for both iOS and Android).&lt;br&gt;
The tablet apps are fairly unique and make it a solid option if you’re looking to use tablets for your POS. With the apps, you can also use offline mode.&lt;br&gt;
To add products, cashiers can either search for them or use a barcode scanner. Cashiers can also manage customer details from the POS interface and sync them with WooCommerce.&lt;br&gt;
Cashiers can process payments via cash, credit card, debit card, and other methods. They can also apply coupons to orders and calculate taxes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reference Blog&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.gomahamaya.com/woocommerce-point-of-sale-pos/"&gt;WooCommerce Point Of Sale Plugins&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
