WordPress Plugin

Hi everyone,

One of the most requested issues on GitHub is to build a WordPress plugin. We’re looking into it now, it’d be helpful to hear from you about which features you’d like to see implemented.

Thank you for your input!

1 Like

Hey @hillel,

great to hear that!

As I mentioned, I have already started developing a WooCommerce plugin and have made the following considerations. They are not yet fully developed because, as described here (WordPress plugin development - #3 by juwillsee), I have encountered some scheduling difficulties. I hope the input helps you.

Project Requirements: Development of a WordPress Plugin for WooCommerce and Integration with Invoice Ninja

Features and Requirements:

  1. Product Management:
  • Synchronization of WooCommerce Product Catalog with Invoice Ninja:
    • Products created, edited, or deleted in WooCommerce should be automatically updated in Invoice Ninja.
  • Manual Synchronization:
    • Allow manual synchronization of products.
  • Exclusion of Specific Products:
    • Products that should not be billed through Invoice Ninja should be excluded from synchronization.
  1. Customer Management:
  • Customer Registration and Management via WooCommerce:
    • Synchronize customer data between WooCommerce and Invoice Ninja to ensure a consistent data base.
  1. Payment Processing:
  • Integration of Payment Processing:
    • Integrate payment processing between WooCommerce, Invoice Ninja, and Stripe.
    • Payment data should be transmitted to Stripe via Invoice Ninja and stored there.
    • Invoice Ninja should act as the payment provider in WooCommerce for billing purposes.
  1. Frontend Display:
  • Frontend Integration:
    • The plugin should be integrated into the WooCommerce frontend, ensuring a user-friendly display of products and payment processes.
    • Ensure that all WooCommerce frontend functions remain fully available without restrictions.
  1. Document Dispatch:
  • Creation and Dispatch of Invoices and Delivery Notes:
    • Invoices and delivery notes should be created via the WooCommerce dashboard but dispatched to the customer through the Invoice Ninja platform.
2 Likes

I also created a small WordPress plugin that syncs WooCommerce user data to InvoiceNinja. Happy to share the code with you, @hillel, if needed.

That would be great, thanks! Is the code available on GitHub?

1 Like

Hi @hillel
no, not yet, but I can add it there and give you access.

That would be great, thanks!

Please make sure the repo has a permissive license, ie. MIT.

1 Like

Thank you for sharing your code, it was helpful to review.

I’m not very familiar with WooCommerce, is a customer in WooCommerce stored as a user in WordPress? In which case calling get_userdata returns the WordPress/WooCommerce record?

Also, are there other features which would be useful for a WooCommerce integration?

One other thing, I think there may be a problem with how your code updates clients. It isn’t using the contact id which will cause new contacts to be created each time the client is updated.

Yes, they’re stored as WordPress users. get_userdata() should always return the records.

Not for me, but for other users for sure.

That doesn’t happen in my case. I use this plugin now for 8-9 months and never had this issue.

Thanks for the info!

Note: it’s possible it’s happening but you haven’t noticed, I suggest checking the contacts table in the database to see if there are duplicate records.

If this problem occurs the app may appear to work however clients will lose access to their past invoices in the client portal.

Edit: it’s also possible the issue I’m referring to only affected v4 and was resolved in v5.

1 Like

@lucaw thanks again for sharing your code! I’ve added you to the credits on the readme, please let me know if needs adjusting.

Note: the initial release is ready, just working on the docs…

1 Like

thank you very much!

Hey everyone.

The first release of the Invoice Ninja plugin for WordPress is now available.

Here’s the initial feature set:

  • Import products from Invoice Ninja as custom pages in WordPress.
  • Export WordPress/WooCommerce users as clients in Invoice Ninja.
  • Enable Single sign-on (SSO) for the Client Portal.
  • Integrated shopping cart functionality.
  • Add a custom widget to your WordPress site.

The documentation can be found here:

We’re working to add the plugin to the WordPress registry, until then you can manually copy the wordpress-plugin.zip into your WordPress installation to use the plugin.

If you have any feedback please let us know.

@lucaw you may want to switch from your plugin to this one. I tested your code, the problem I mentioned above is happening. You can reproduce the issue by creating an invoice for a client and then exporting the client from WordPress, your version of the plugin will cause an extra contact to be added to the client.

1 Like

@hillel I’m currently testing the plugin. Do you prefer feedback here or on Github? I’m a bit busy these days, but I will also look into the code.
Thank you very much for your work!

Thanks for trying it, best would be to create issues here:

1 Like

Please keep internationalisation in mind when you’re building the plugin

This is excellent! In terms of feature set:

Sync products between Woo and InvNin
Allow customers to access their quote/invoices through wordpress login and see history

We sell B2B and many of our customers have discounts specified within woocommerce (for example, they may have 25% off certain products, and 10% off other products. We use a plugin to assign these discounts:

It would be great if you could integrate with this plugin so that, when we create an invoice for a particular client, their specific pricing is automatically applied.

Thanks!

1 Like