-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme.txt
More file actions
1113 lines (828 loc) · 47.9 KB
/
Copy pathreadme.txt
File metadata and controls
1113 lines (828 loc) · 47.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Bit integrations - Form Integration, Webhook, Spreadsheets, CRM, LMS & Email Automation ===
Contributors: bitpressadmin, akaioum, rishadbitcode, niloy121, fahimsakib, shuvomohajan, tanvirchy, shakhawathosen, khoaiz, mazharul78
Tags: automation, automator, google sheets integration, form integration, WooCommerce Integration
Requires at least: 5.1
Tested up to: 7.0
Requires PHP: 7.4
Stable tag: 2.8.11
License: GPLv2 or later
Contact Form, Google Sheet, MailChimp, Brevo, Webhook, Zoho CRM Automation and Integration plugin that Connect 300+ platforms
== Description ==
**Bit Integrations is a Easy Automation & Integration Plugin for WordPress**
**Bit Integrations** help WordPress users integrate WordPress and plugin data to 320+ platforms.
### 🎯 Why Bit Integrations?
When a user submit contact form, enroll a course, create order in WooCommerce then the data send to google sheet, MailChimp, Brevo, Zoho CRM and more. It save you time, resource and effort.
Whether you're:
- Running a small business
- Automating an eCommerce store
- Scaling your digital marketing automation
**Bit Integrations** helps you **connect apps, collect data, and trigger actions automatically**.
---
**Easy WordPress Automation with Bit Integrations – by WPTuts**
https://youtu.be/hgMkLvV-r6k
---
## 🔌 Integration Across Your WordPress Stack
> No-code automation and automator plugin for WordPress help you create workflows with Webhooks, WooCommerce, CRMs, LMS, Zapier, and more.
- Connect with:
- **WooCommerce**
- **Form builders**
- **Email marketing tools**
- **CRM**
- **Learning Management Systems (LMS)**
- **Spreadsheets and Booking tools**
- **Top integration plugins, including Zapier, OttoKit (SureTriggers), Uncanny Automator, FlowMattic, and more**
- **Webhooks**
- **REST API**
---
**Integrate Elementor Forms to a Notion CRM [with Bit Integrations] – by Jeffrey @ Lytbox**
https://www.youtube.com/watch?v=Jocbz2lAqKU
---
### ✅ Key Features:
- ⚡ **No-code automation**: No-code automation for small businesses, marketers, and eCommerce sites.
- 🔁 **Automated workflows**: Create automated workflows across hundreds of apps and services.
- 🌐 **Webhooks Integration**: Send and receive data via webhooks to hundreds of platforms.
- 🧩 **Powerful data mapping**: Powerful data mapping for seamless data transfer automation.
- 🎯 **Custom Trigger & Conditional Logic**: Use custom triggers and conditional logic to tailor actions.
- 🔄 **Real-time data sync**: Ensure real-time data sync across tools.
- 🧩 **CRM integrations**: Automate lead generation and manage customer data across CRMs like Zoho CRM, Salesforce, HubSpot.
- 💌 **Email marketing automation**: Email marketing automation with Mailchimp, Sendinblue, and more.
- 🛍️ **WooCommerce Automation**: Native e-commerce integrations and Automatically sync orders, customers, and products.
- 📥 **Form Builder Integration**: Automated data collection from popular form builder integrations. Connect form data from Contact Form 7, WPForms, Bit Form, Elementor Forms, etc., to CRMs, email marketing platforms, and more.
- 📱 **Social Media Automation**: Send data to platforms like Telegram, WhatsApp, Slack, Discord and more.
- ⚙️ **Easy Setup**: Get started with simple, no-code automation setups for all your integrations.
- 🧠 **Detailed Logging**: Error handling with view logs of all your data submissions and automated actions.
- 🔁 **Access to 300+ Integrations**: Easily connect with tools like Zapier, Google Sheets, Trello, Slack, and more.
**Elementor, Contact Form 7 & other Contact Form Integration**
After user submit Elementor form, Contact Form 7 or any contact form send those data to google sheet, mailchimp, brevo, zoho crm realtime.
Follow simple three steps, select form as action, authorized action, map field and done. It save user time, money and resource.
**WooCommerce Integration**
You can easily integrate WooCommerce with Google Sheet, CRM, Email Marketing & more. After Customer Create, Product Create, Order create, Order Status Change then those data send connect platform. It help you track WooCommerce store.
**WordPress Integration**
Automating WordPress tasks is now smarter with Bit Integrations.
Connect plugins like Elementor, Fluent Forms, Tutor LMS, or Contact Form 7 to your workflows.
For example, when a form is submitted, Bit Integrations can create a post, send emails, and update CRM records (e.g. FluentCRM) automatically.
**MailChimp Integration**
After submit Elementor, Contact form 7, Bit Form, Enroll Course in LearnDash, Create order in WooCommerce then this user added in Mailchimp subscriber list automatically.
**Google Sheet automation**
Google Sheet is widely used application. You can easily integrate Google Sheet with WordPress. After user submit a contact form, or any other event created in WordPress this data you can easily send google sheet using Bit Integrations.
**Incoming and Outgoing Webhook**
You can receive third party data using webhook then process and send other platform. If some time native integrations missing then webhook is helpful.
Some platform don't have API but the collect receive data from webhook. That Bit Integrations outgoing webhook help you send data.
## ⚙️ Automate Everything from One Dashboard
Automate your WordPress workflow with **Bit Integrations** — the easy **no-code automation plugin**, send unlimited data to third party platforms:
- WooCommerce
- Contact Form
- CRM
- LMS
- Bookings
- Google Sheet
- Webhooks
- Social Media
- Email Marketing Tools
- Automation Platforms like **Zapier** and more
> Bit Integrations is the **automator plugin WordPress users rely on** for smart, scalable automation.
---
## 🚀 Useful Links
🧪 [Try Pro Version](https://towp.io/)
🙋 [Live Support](https://tawk.to/chat/60eac4b6d6e7610a49aab375/1faah0r3e)
🚀 [Upgrade to Pro](https://bit-integrations.com/pricing/)
🐱 [Bit Integrations Repository](https://github.com/Bit-Apps-Pro/bit-integrations)
🔗 Explore all supported [Integrations](https://bit-integrations.com/all-integrations/).
📚 Need help? Visit our [Documentation](https://bit-integrations.com/wp-docs/).
▶️ Need help? Visit our [Video Tutorials](https://youtube.com/playlist?list=PL7c6CDwwm-ALMEsKLYKebKb5XLGPWMNue).
📢 Join our [Bit Apps Community](https://www.facebook.com/groups/bitapps) & get updates on our plugins.
---
## 💻 Full source code is available at
🔗 **GitHub Repository:** [https://github.com/Bit-Apps-Pro/bit-integrations](https://github.com/Bit-Apps-Pro/bit-integrations)
---
With Bit Integrations, automation is at your fingertips. Automate tasks across your WordPress site, boost efficiency, and simplify your business operations with powerful automation features.
**Bit Integrations | Best WordPress Automation Software! – by SiteKrafter**
https://youtu.be/UhTu6LCmh8A
Bit Integrations help you Automate everything from simple tasks to complex task.
**WP Simple Hacks - Wordpress tips and tricks" youtube channels thoughts about WordPress automation plugin Bit Integrations.**
https://youtu.be/tLNOuvPdhcY?si=2zWd4yTMYHZUpD7n
Bit Integrations is a go-to automation and automator plugin for WordPress, enabling you to automate tasks and enhance productivity.
**Connect WordPress Automatically To All Your Favorite Marketing Platforms - Bit Integrations – by SaaS Master**
https://youtu.be/eFuficjF_F4
### ✔ List of Available Free Triggers:
- [**Elementor Automation**](https://bit-integrations.com/triggers/elementor/connect)
- [**Contact Form 7 Automation**](https://bit-integrations.com/triggers/contact-form-7/connect)
- [**WooCommerce Integration**](https://bit-integrations.com/triggers/woocommerce/connect)
- [**WPForms Automation**](https://bit-integrations.com/triggers/wpforms/connect)
- [**Bit Form Automation**](https://bit-integrations.com/triggers/bit-form/connect)
### ✔ List of Available Pro Triggers:
- [**Fluent Forms**](https://bit-integrations.com/triggers/fluent-forms/connect)
- [**Gravity Forms**](https://bit-integrations.com/triggers/gravity-forms/connect)
- [**Advanced Custom Fields (ACF)**](https://bit-integrations.com/triggers/advanced-custom-fields/connect)
- [**WooCommerce Subscriptions**](https://bit-integrations.com/triggers/woocommerce-subscriptions/connect)
- [**WooCommerce Bookings**](https://bit-integrations.com/triggers/woocommerce-bookings/connect)
- [**WooCommerce Memberships**](https://bit-integrations.com/triggers/woocommerce-memberships/connect)
- [**Ninja Forms**](https://bit-integrations.com/triggers/ninja-forms/connect)
- [**Piotnet Addons For Elementor**](https://bit-integrations.com/triggers/piotnet-addons-for-elementor/connect)
- [**Divi**](https://bit-integrations.com/triggers/divi/connect)
- [**LearnDash**](https://bit-integrations.com/triggers/learndash-lms/connect)
- [**Tutor LMS**](https://bit-integrations.com/triggers/tutor-lms/connect)
- [**MemberPress**](https://bit-integrations.com/triggers/memberpress/connect)
- [**Webhook**](https://bit-integrations.com/triggers/webhook/connect)
- [**Paid Memberships Pro**](https://bit-integrations.com/triggers/paid-memberships-pro/connect)
- [**Easy Digital Downloads**](https://bit-integrations.com/triggers/easy-digital-downloads/connect)
- [**JetEngine**](https://bit-integrations.com/triggers/jetengine/connect)
- [**JetFormBuilder**](https://bit-integrations.com/triggers/jetformbuilder/connect)
- [**Beaver Builder**](https://bit-integrations.com/triggers/beaver-builder/connect)
- [**Formidable**](https://bit-integrations.com/triggers/formidable-forms/connect)
- [**MetaBox Frontend Submission**](https://bit-integrations.com/triggers/metabox-frontend-submission/connect)
- [**Fluent CRM**](https://bit-integrations.com/triggers/fluentcrm/connect)
- [**Groundhogg**](https://bit-integrations.com/triggers/groundhogg/connect)
- [**WP User Registration**](https://bit-integrations.com/triggers/user-registration/connect)
- [**MailPoet**](https://bit-integrations.com/triggers/mailpoet/connect)
- [**Bricks**](https://bit-integrations.com/triggers/bricks-builder/connect)
- [**Forminator**](https://bit-integrations.com/triggers/forminator-forms/connect)
- [**Everest Forms**](https://bit-integrations.com/triggers/everest-forms/connect)
- [**bbPress**](https://bit-integrations.com/triggers/bbpress/connect)
- [**BuddyPress**](https://bit-integrations.com/triggers/buddypress/connect)
- [**BuddyBoss**](https://bit-integrations.com/triggers/buddyboss/connect)
- [**Dokan**](https://bit-integrations.com/triggers/dokan/connect)
- [**Advanced Coupons For WooCommerce**](https://bit-integrations.com/triggers/advanced-coupons/connect)
- [**Amelia**](https://bit-integrations.com/triggers/amelia-booking/connect)
- [**MasterStudy LMS**](https://bit-integrations.com/triggers/masterstudy-lms/connect)
- [**Academy LMS**](https://bit-integrations.com/triggers/academy-lms/connect)
- [**ARForms**](https://bit-integrations.com/triggers/arforms/connect)
- [**eForm**](https://bit-integrations.com/triggers/eform/connect)
- [**FormCraft**](https://bit-integrations.com/triggers/formcraft/connect)
- [**Happyforms**](https://bit-integrations.com/triggers/happyforms/connect)
- [**SureForms**](https://bit-integrations.com/triggers/sureforms/connect)
- [**Tripetto**](https://bit-integrations.com/triggers/tripetto/connect)
- [**weForms**](https://bit-integrations.com/triggers/weforms/connect)
- [**WSForm**](https://bit-integrations.com/triggers/wsform/connect)
- [**Newsletter**](https://bit-integrations.com/triggers/newsletter/connect)
- [**Wishlist Member**](https://bit-integrations.com/triggers/wishlist-member/connect)
- [**SliceWP Affiliate**](https://bit-integrations.com/triggers/slicewp/connect)
- [**Solid Affiliate**](https://bit-integrations.com/triggers/solid-affiliate/connect)
- [**SureCart**](https://bit-integrations.com/triggers/surecart/connect)
- [**SureFeedback**](https://bit-integrations.com/triggers/surefeedback/connect)
- [**SureMembers**](https://bit-integrations.com/triggers/suremembers/connect)
- [**Voxel**](https://bit-integrations.com/triggers/voxel/connect)
- [**WPFunnels**](https://bit-integrations.com/triggers/wpfunnels/connect)
- [**FunnelKits CRM**](https://bit-integrations.com/triggers/funnelkit-automation/connect)
- [**Jetpack CRM**](https://bit-integrations.com/triggers/jetpack-crm/connect)
- [**... See More**](https://bit-integrations.com/triggers/)
### ✔List of Available Free Actions:
- **Zapier**
- **Make (Integromat)**
- **Uncanny Automator**
- **SureTriggers (OttoKit)**
- **AutomatorWP**
- **FlowMattic**
- **WooCommerce**
- **ActiveCampaign**
- **Mailchimp**
- **HubSpot**
- **Google Sheet**
- **Google Calendar**
- **Google Drive**
- **Google Contacts**
- **LearnDash**
- **Tutor LMS**
- **MemberPress**
- **FluentCRM**
- **Drip**
- **Klaviyo**
- **Salesforce**
- **MailPoet**
- **BuddyBoss**
- **Dokan**
- **Groundhogg**
- **GiveWP**
- **GamiPress**
- **Bit Form**
- **Advanced Form Integration**
- **Freshdesk**
- **Freshsales**
- **Pipedrive**
- **Zoho CRM**
- **Zoho Campaigns**
- **Zoho Sheet**
- **Zoho Desk**
- **Zoho Flow**
- **Zoho Marketing Hub**
- **Zoho Recruit**
- **Zoom Meeting**
- **Zoom Webinar**
- **Slack**
- **Telegram**
- **WhatsApp**
- **Discord**
- **Trello**
- **Asana**
- **ClickUp**
- **Notion**
- **Airtable**
- **Dropbox**
- **OneDrive**
- **SendinBlue(Brevo)**
- **MailerLite**
- **Moosend**
- **Omnisend**
- **Sarbacane(Mailify)**
- **Pabbly**
- **N8N**
- **SystemeIO**
- **Thrive Automator**
- **WP Webhooks**
- **WPFusion**
- **Academy LMS**
- **MasterStudy LMS**
- **Fluent Support**
- **Pods**
- **JetEngine**
- **wpForo**
- **License Manager for WooCommerce**
- **SliceWP Affiliate**
- **GoHighLevel**
- **Perfex CRM**
- **Propovoice CRM**
- **Zoho Bigin**
- **Flowlu**
- **Voxel**
- **Webhooks**
- [**... See More**](https://bit-integrations.com/all-integrations/)
**Most popular integrations use cases below for more understanding about this automation plugin**
- Automate order management, customer data syncing, product updates, and more. Common integrations include [**WooCommerce + Zoho CRM**](https://bit-integrations.com/triggers/woocommerce/connect/zoho-crm), [**WooCommerce + GoHighLevel**](https://bit-integrations.com/triggers/woocommerce/connect/gohighlevel), and [**WooCommerce + Google Sheets**](https://bit-integrations.com/triggers/woocommerce/connect/google-sheets).
- [**WooCommerce + Mailchimp**](https://bit-integrations.com/triggers/woocommerce/connect/mailchimp) for automated email marketing and [**WPForms + Mailchimp** ](https://bit-integrations.com/triggers/wpforms/connect/mailchimp) for form-based sign-ups or newsletters.
- [**Bit Form + HubSpot**](https://bit-integrations.com/triggers/bit-form/connect/hubspot) to automatically sync leads or form submissions with your CRM, and [**WooCommerce + HubSpot**](https://bit-integrations.com/triggers/woocommerce/connect/hubspot/) to enhance eCommerce customer tracking.
- [**Bit Integrations + Zapier**](https://bit-integrations.com/triggers/action-hook/connect/zapier) to extend the platform’s capabilities by connecting to more platforms that aren’t natively supported.
- [**LearnDash + WooCommerce**](https://bit-integrations.com/triggers/learndash-lms/connect/woocommerce) for automating course registration and payments, or [**LearnDash + Perfex CRM**](https://bit-integrations.com/triggers/learndash-lms/connect/perfex-crm) to sync user enrollment data.
- [**WooCommerce + Google Sheets**](https://bit-integrations.com/triggers/woocommerce/connect/google-sheets) for automating order records, or [**WPForms + Google Sheets**](https://bit-integrations.com/triggers/wpforms/connect/google-sheets) for automatically populating form submissions.
- [**Bit Form + ActiveCampaign**](https://bit-integrations.com/triggers/bit-form/connect/activecampaign) to automate the process of adding form submissions to the email list, or [**WooCommerce + ActiveCampaign**](https://bit-integrations.com/triggers/woocommerce/connect/activecampaign) to trigger marketing campaigns based on purchase behavior.
- [**WooCommerce + Salesforce**](https://bit-integrations.com/triggers/woocommerce/connect/salesforce/) to sync customer and order data, or [**Bit Form + Salesforce**](https://bit-integrations.com/triggers/bit-form/connect/salesforce/) to capture leads from forms directly into Salesforce.
- [**WPForms + Trello**](https://bit-integrations.com/triggers/wpforms/connect/trello/) to create cards or tasks automatically when a form is submitted, or [**WooCommerce + Trello**](https://bit-integrations.com/triggers/woocommerce/connect/trello) to create tasks or track orders as cards in Trello.
## ♻ How does this plugin work?
This plugin acts as a bridge between platforms, using Triggers and Actions. Triggers capture data, like form submissions (**Contact Form 7**, **WP Forms**, etc.), while Actions send it to **CRM**, **Email Marketing Software**, **Project Management Tools**, **Data Collection Tools**, and **other WordPress plugins**.
For example, a contact form (**Bit Form**, **WP Forms**, etc.)
is submitted, and you want to send data in your **CRM**, **Email Marketing Software**, **Project Management Tools**, **Data Collection Tools**, and **other WordPress plugins**.
== ❣ What our customer say about Bit Integrations : ==
[` 💠 Best of class`](https://wordpress.org/support/topic/best-of-class-with-few-glitches/)
-by @saschinger
[` 💠 Bit Integrations is an affordable alternative to Pabbly Connect and Zapier`](https://wordpress.org/support/topic/bit-integrations-is-an-affordable-alternative-to-pabbly-and-zapier/)
-by @barrynthdegreegroupnet
[` 💠 A Game Changer for My WordPress automation`](https://wordpress.org/support/topic/a-game-changer-for-my-wordpress-automation/)
-by @angelitos
[` 💠 Zapier-like Integrations, No Fees Required!`](https://wordpress.org/support/topic/zapier-like-integrations-without-the-fees/)
-by @peterode
[` 💠 Zapier for WordPress Made Easy!`](https://wordpress.org/support/topic/zapier-for-wordpress/)
-by @onedogsolutions
[` 💠 Pure Automation at Play!`](https://wordpress.org/support/topic/pure-automation-at-play/)
-by @vaishakdamu
✨ Overview of other products we are offering :
📝[**Bit Form**](https://wordpress.org/plugins/bit-form/): One of our bestselling product. Drag & drop form builder for WordPress. Create custom contact forms, surveys, and more - no coding required!
📝[**Bit Flows**](https://wordpress.org/plugins/bit-pi/): A powerful automation(like Zapier) plugin that sends your WordPress & outside of WordPress data to all types of platforms like WordPress plugins, saas, Shopify & all.
📧 [**Bit Assist**](https://wordpress.org/plugins/bit-assist/): Connect with users via Messenger, WhatsApp, Telegram, Slack, Viber, and more, with custom forms and links.
📧 [**Bit Social**](https://wordpress.org/plugins/bit-social/): Auto-post, schedule, and share WordPress posts on Facebook, LinkedIn, and Twitter with ease.
📧 [**Bit File Manager**](https://wordpress.org/plugins/file-manager/): The ultimate WordPress file manager for uploading, deleting, moving, renaming, and managing files—100% free!
📧 [**Bit SMTP**](https://wordpress.org/plugins/bit-smtp/): Secure and improve your WordPress email deliverability.
📧 [**Webhooks.is**](https://webhook.is/test): Test incoming and outgoing webhooks for free.
📢 **We are open for freelance work/custom development. [Connect](https://bitapps.pro/contact) with us for further information.**
== External Services ==
This plugin connects to various third-party external services to enable automation workflows between WordPress and 300+ platforms. **Data is only sent to external services when you actively configure and enable an integration**. No data is transmitted unless you explicitly create a workflow that connects to a specific service.
For a comprehensive list of all external services, including detailed information about what data is sent, when it's sent, and links to each service's terms and privacy policies, please see our complete external services documentation:
**[Complete External Services Documentation](https://github.com/Bit-Apps-Pro/bit-integrations/blob/main/external-services.md)**
This documentation covers 300+ services including Google (Sheets, Calendar, Drive), Zoho (CRM, Campaigns, Desk), Meta/Facebook (WhatsApp), Email Marketing platforms, CRM systems, Communication tools (Slack, Telegram), Automation platforms (Zapier, Make), Project Management tools, and many more.
== Frequently Asked Questions ==
= 1. What is Bit Integrations and how does it work? =
Bit Integrations is a no-code WordPress plugin that helps you connect and sync data between over 300 platforms like WooCommerce, CRM, email marketing tools, Google Sheets, and more. It automates workflows by sending data from triggers like form submissions or orders to connected apps, without requiring coding.
= 2. Can I automate WooCommerce workflows with Bit Integrations? =
Yes! Bit Integrations allows you to automate WooCommerce workflows such as syncing customer data, order details, and subscriptions to CRMs, email marketing platforms, and spreadsheets.
= 3. Does Bit Integrations support popular form builders like WPForms and Contact Form 7? =
Absolutely. Bit Integrations supports popular WordPress form builders like WPForms, Contact Form 7, Elementor Forms, Bit Form, and more to trigger automated workflows when forms are submitted.
= 4. Is coding required to set up automation workflows in Bit Integrations? =
No coding skills are needed. Bit Integrations provides an intuitive interface to create triggers and actions with simple configuration and field mapping, making it easy for beginners and non-developers.
= 5. Which CRM platforms can I integrate with Bit Integrations? =
Bit Integrations supports leading CRM platforms including HubSpot, Salesforce, Zoho CRM, Agile CRM, and many others, enabling seamless data sync from WordPress to your CRM.
= 6. Can Bit Integrations sync data with email marketing tools? =
Yes, it integrates with popular email marketing platforms like Mailchimp, ActiveCampaign, SendinBlue (Brevo), MailPoet, and others to automate your email campaigns based on user data.
= 7. How many integrations and workflows can I create with Bit Integrations? =
The free version allows unlimited integrations with free triggers and actions. The Pro version unlocks all 300+ triggers and actions with unlimited active workflows.
= 8. Does Bit Integrations support Google Sheets for data syncing? =
Yes, you can automatically sync form data, WooCommerce orders, and other WordPress data to Google Sheets for real-time tracking and reporting.
= 9. Can I automate data flow between WordPress and third-party platforms like Zapier or Integromat (Make)? =
Yes, Bit Integrations supports webhooks and integrates with platforms like Zapier and Make, allowing you to extend automation beyond WordPress.
= 10. Does Bit Integrations work with multisite WordPress installations? =
Yes, Bit Integrations is fully compatible with WordPress multisite setups, allowing you to automate workflows across multiple sites.
= 11. Will Bit Integrations affect my website’s performance? =
Bit Integrations is lightweight and optimized to minimize impact on website speed while running powerful automation workflows in the background.
= 12. What kind of support and documentation is available for Bit Integrations users? =
We offer extensive documentation, video tutorials, and active support via live chat, email, and community forums to help users get the most out of Bit Integrations.
= 13. Can I automate LMS platforms like LearnDash and Tutor LMS with Bit Integrations? =
Yes, Bit Integrations supports popular LMS plugins, enabling you to automate tasks like syncing course enrollments to CRM or email marketing tools.
= 14. How secure is Bit Integrations when handling sensitive data? =
Bit Integrations follows WordPress coding standards and best practices to ensure data security and privacy during data transfers between platforms.
== Installation ==
1. Download the automation plugin.
2. From the WordPress Admin Panel, click on Plugins => Add New.
3. For Uploading the automator plugin click on upload, so you can directly upload your plugin zip file.
4. Use the browse button to select the plugin zip file that was downloaded, and then click on Install Now.
5. Once installed the integration plugin, click “Activate”.
6. Now you can start building your first automated workflow using available platform connectors.
7. Visit [Start Automation Now](https://bit-integrations.com/triggers/) to create your first automation with triggers.
8. Refer to the [Documentation](https://bit-integrations.com/wp-docs/) for detailed setup help.
== Screenshots ==
1. Home Page
2. All Trigger
3. Select Trigger
4. All Action
5. After Select Action(Webhooks)
6. All integration list
== Changelog ==
= 2.8.10 - 2.8.11 =
_Release Date - 20th June 2026_
- **Bug Fixes**
- Wishlist Member: Fixed membership level field mapping in the integration setup.
- **Improvements**
- WooCommerce: Switched product image uploads to WordPress-native file helpers (wp_parse_url, wp_delete_file) for safer file handling.
= 2.8.9 =
_Release Date - 14th June 2026_
- **Security Fixes**
- Dropbox & OneDrive: Hardened file deletion paths to prevent path traversal outside the uploads directory.
- WooCommerce: Improved attachment uploads by validating sideloaded files before moving them into uploads.
- ClickUp, Discord, Freshdesk, PCloud, Slack & Telegram: Restricted file-upload paths to safe WordPress uploads locations before sending files to third-party APIs.
- HappyForms: Validated saved image payloads as PNG files and sanitized generated filenames before writing to disk.
= 2.8.8 =
_Release Date - 14th June 2026_
- **Security Fixes**
- Trigger Test Data: Gated test-data read/delete endpoints with capability checks.
- SSRF & LFI: Blocked server-side request forgery and local file inclusion in file/upload fetching.
- HappyForms: Hardened PHP object injection in the FallbackTrigger by restricting unserialize to non-object types.
- Custom Function: Sanitized the custom-action file name on write to block path traversal.
- GamiPress & FormCraft: Parameterized raw SQL queries to prevent SQL injection (Pro).
- BuddyBoss, AppointmentHourBooking, FluentSMTP & HappyForms: Blocked PHP object injection by restricting unserialize to non-object types (Pro).
- **Improvements**
- Post content sanitization route generalized to cover all rich-content integrations (Mail, Telegram, WhatsApp, and more).
- **Bug Fixes**
- WordPress 5.1 compatibility: Replace WP 5.3/5.9 functions for WP 5.1 minimum support.
- SureCart: Fixed checkbox fields missing from trigger payload (Pro).
= 2.8.7 =
_Release Date - 8th June 2026_
- **New Triggers**
- WordPress: 33 new events added (Pro).
- WP Post: 11 new events added (Pro).
- WP User Registration: 12 new events added (Pro).
- MoreConvert Wishlist for WooCommerce: 9 new events added (Pro).
- Secure Custom Fields (SCF): 6 new events added (Pro).
- IvyForms: 1 new event added (Pro).
- **New Actions**
- WordPress: 33 new events added (Pro).
- Zendesk Support: 17 new events added (Pro).
- WP User Registration: 11 new events added (Pro).
- MoreConvert Wishlist for WooCommerce: 8 new events added (Pro).
- WP Post: 6 new events added (Pro).
- Secure Custom Fields (SCF): 5 new events added (Pro).
- Heffl CRM: 3 new events added (Pro).
- IvyForms: 1 new event added (Pro).
- **Improvements**
- Custom Trigger, Webhook & Form Submission: Added a countdown timer and improved loading state for data-fetching operations.
- Response review modal: Improved UI.
- **Bug Fixes**
- Telegram: Fixed chat list fetching issue.
= 2.8.6 =
_Release Date - 23rd May 2026_
- **New Triggers**
- B2BKing: 3 new events added (Pro).
- BookingPress: 7 new events added (Pro).
- FormyChat: 2 new events added (Pro).
- SureDash: 18 new events added (Pro).
- wpDataTables: 4 new events added (Pro).
- **New Actions**
- B2BKing: 3 new events added (Pro).
- BookingPress: 6 new events added (Pro).
- Bookly: 6 new events added (Pro).
- FormyChat: 1 new event added (Pro).
- SureDash: 7 new events added (Pro).
- wpDataTables: 1 new event added (Pro).
= 2.8.5 =
_Release Date - 13th May 2026_
- **Bug Fixes**
- Keap: Added missing `last_name` contact field and corrected `middle_name` label.
- Copper CRM: Fixed field mapping for custom values and mapped trigger fields.
- Copper CRM: Fixed custom input handlers to avoid undefined event target errors.
- Tagify Input: Fixed dropdown item limit handling during field mapping.
= 2.8.3 =
_Release Date - 6th May 2026_
- **New Triggers**
- WP ERP: 28 new events added (Pro).
- PeepSo: 3 new events added (Pro).
- Fluent PDF Generator: 2 new event added (Pro).
- **New Actions**
- Monday.com: 12 new events added (Pro).
- WP ERP: 14 new events added (Pro).
- PeepSo: 7 new events added (Pro).
- **Improvements**
- MailerLite: Added unassign subscriber from group support and improved subscriber existence checks.
- WooCommerce: Added line item subtotal and tax support for order creation.
- Email Notification: Enhanced integration failure notification template and message clarity.
- **Bug Fixes**
- MailerLite: Fixed blank page issue.
- FluentCRM: Fixed logo handling and added missing assets.
- Custom Trigger: Fixed save configuration handling in trigger/action config endpoints.
- WP User Registration: Improved error handling and password generation reliability.
- SendFox: Removed unused frontend imports and fixed field mapping behavior.
= 2.8.2 =
_Release Date - 15th April 2026_
- **New Triggers**
- weDocs: 8 new events added (Pro).
- Creator LMS: 5 new events added (Pro).
- WC Affiliate: 3 new events added (Pro).
- Ultimate Affiliate Pro: 8 new events added (Pro).
- **New Actions**
- weDocs: 3 new events added (Pro).
- Creator LMS: 5 new events added (Pro).
- Ninja Tables: 2 new events added (Pro).
- WC Affiliate: 6 new events added (Pro).
- Asgaros Forum: 4 new events added (Pro).
- Ultimate Affiliate Pro: 4 new events added (Pro).
- **New Features**
- Tags: Added tag creation and management support in integrations.
- **Improvements**
- Dashboard: Improved all integrations table UI and component structure.
- WPForms: Hidden fields support enabled (Pro).
- **Bug Fixes**
- ActiveCampaign: Fixed field map reset issue.
= 2.8.1 =
_Release Date - 30th March 2026_
- **New Features**
- WP Post Creation: Added support for selecting and assigning one or multiple post categories during post creation.
- GiveWP: Added donation type data (Pro).
- **Bug Fixes**
- Mail Action: Fixed multi-line email message formatting to render correctly in sent emails.
= 2.8.0 =
_Release Date - 16th March 2026_
- **New Triggers**
- User Registration & Membership: 2 new events added (Pro)
- NotificationX: 2 new events added (Pro)
- **New Actions**
- User Registration & Membership: 1 new events added (Pro)
- NotificationX: 7 new events added (Pro)
- **New Features**
- Forminator Quiz & Poll: Included lead data in quiz trigger payloads (Pro).
- **Bug Fixes**
- GoHighLevel: Fixed opportunity creation by sending the selected pipeline ID correctly (Pro).
- ActiveCampaign: Fixed tag update handling so existing tags are removed correctly before new tags are applied.
- FluentBooking: Fixed fetched fields not being set consistently during trigger configuration.
- Webhook: Fixed payload field mapping when form fields are unavailable during setup.
- WooCommerce: Fixed product data access issues for order items without product objects.
= 2.7.12 =
_Release Date - 10th March 2026_
- **New Features**
- ActiveCampaign: Tags update feature added.
- **Improvements**
- ActiveCampaign: Refactored update contact handling.
- Custom Function: Improved validator logic.
- Removed unnecessary sanitation on get-access-token routes for smoother OAuth flow.
- **Bug Fixes**
- SendFox: Fixed blank page issue.
- SendFox: Fixed fieldmap disappearance issue.
- WooCommerce: Fixed billing and shipping address overwrite issue.
- Salesforce: Fixed lead response type issue.
- Google Products: Fixed authentication issue.
- Brekadance: Fixed trigger listening data issue (Pro).
= 2.7.11 =
_Release Date - 26th February 2026_
- **New Features**
- WooCommerce: Booster for WooCommerce checkout fields added.
- **Improvements**
- Custom Action: Reworked PHP function validation to use loopback-based fatal error checks and return cleaner syntax validation feedback.
- Breakdance: Updated Breakdance trigger test endpoints to use the shared trigger test routes (Pro).
- **Bug Fixes**
- Fixed license expiry day calculation in the license status notice (Pro).
- Added backward-compatible removal for legacy license key option data (Pro).
- Fixed custom trigger test data remove response key and success message labels (Pro).
= 2.7.9 - 2.7.10 =
_Release Date - 23rd February 2026_
- **Bug Fixes**
- Fixed blank page issue on integrations authorization screen across multiple integration field maps and triggers.
- Fixed redirect issue after saving a new integration.
- Fixed style issue in the admin bar.
- Fixed active triggers loading issue (Pro).
= 2.7.8 =
_Release Date - 20th February 2026_
- **Security**
- Fixed SQL injection vulnerabilities in database queries and improved placeholder handling.
- Hardened API helpers and admin components to address reported security vulnerabilities.
- Strengthened SQL query handling and improved defensive checks across integrations.
- **Compatibility & Compliance**
- Resolved WordPress coding standards and Plugin Check warnings, including hook/query compliance updates.
- Updated query suppression handling for cached lookup/direct query patterns to align with current checks.
- Added translators comments and ordered placeholders for WP Plugin Check compliance.
- Fixed production build POT file generation issues for better translation support.
- **Improvements**
- Refactored integration controllers, route files, and helper structures for cleaner namespace consistency.
- Updated Google Sheets integration handling and refined redirect/debug-log/slow-query lint issues.
- Restructured project to backend/frontend architecture for better code organization.
- Cleaned up deprecated code and improved version upgrade handling.
- Converted btcbi_ prefixed hooks, cache keys, and options to bit_integrations_ prefix for consistency.
- Sanitized pro actions event hooks and updated external services documentation.
- Fixed OAuth2 redirect URL issues for improved authentication flow.
- Resolved namespace issues in trigger existence checks and pro triggers fetching filter hooks.
= 2.7.7 =
_Release Date - 2nd February 2026_
- **Hotfix**
- Bug Fixes: Fixed the issue where the selected trigger hook was empty, preventing the trigger from firing correctly (Pro).
= 2.7.6 =
_Release Date - 31th January 2026_
- **Now FREE (Previously Pro Only)**
- Bit Assist: 1 events
- Bit Social: 14 events
- **New Trigger**
- SEOPress: 4 new events added (Pro)
- Thrive Leads: 2 new events added (Pro)
- **New Actions**
- SEOPress: 1 new events added (Pro)
- Fabman: 5 new events added (Pro)
- **New Features**
- GoHighLevel: Added Tags Utilities to REST API v2 for better integration (Pro).
- RapidMail: Introduced Force Subscribe Utilities for enhanced subscription management.
- **Security**
- Malware Fix: Resolved malware issue detected in the file php-cs-fixer.phar in the plugin directory (Pro).
- **Bug Fixes**
- Amelia Booking: Resolved issue with Multi-Select/Checkbox field values not saving correctly (Pro).
- WooCommerce: Fixed issue with Checkout Metadata not displaying properly.
- WPForms: Corrected problem with Payment Fields not functioning as expected.
- WP User Registration: Resolved trimming issue with Meta Fields during registration.
- Bit Assist: Resolved form submit entries null data issue.
= 2.7.5 =
_Release Date - 08th January 2026_
- **New Trigger**
- WPCafe: 7 new events added (Pro)
- FluentCart: 13 new events added (Pro)
- Forminator Quiz And Poll: 2 new events added (Pro)
- Teams for WooCommerce Memberships: 7 new events added (Pro)
- Essential Addons for Elementor: 2 new events added (Pro)
- **New Actions**
- WPCafe: 3 new events added (Pro)
- FluentCart: 12 new events added (Pro)
- Teams for WooCommerce Memberships: 4 new events added (Pro)
- **New Features**
- GoHighLevel: Introduced the REST API v2 for enhanced integration possibilities (Pro).
- WPForms: Repeater fields have been added for better customization in form submissions.
- Admin Alerts: Added an admin alert email feature for failed integrations, providing better notification control.
- **Bug Fixes**
- Google Drive: Fixed the file delete utility issue that was affecting the deletion process.
- Voxel: Resolved the multiselect field value issue, ensuring proper functionality.
= 2.7.4 =
_Release Date - 15th December 2025_
- **New Trigger**
- Bit Social: 14 new events added (Pro)
- Poptics: 2 new events added (Pro)
- **Bug Fixes**
- WooCommerce: Fixed issue with creating customer data.
- Amelia: Resolved issue with multiple checkbox data not saving correctly.
- License Deactivation: Fixed deactivation issue (Pro).
- Divi Form by Divi Engine: Fixed form type issue (Pro).
- Essential Blocks: Fixed blank page issue (Pro).
= 2.7.3 =
_Release Date - 3rd December 2025_
- **New Trigger**
- MailerPress: 7 new events added (Pro)
- **New Action**
- MailerPress: 6 new events added
- **New Feature**
- Salesforce: Added the ability to update existing leads, enabling smoother CRM maintenance and automation (Pro).
- **Bug Fixes**
- WooCommerce: Resolved an issue affecting recognition of existing customers during workflows.
- WooCommerce: Prevented unauthorized product review validation.
- Salesforce: Corrected phone number handling to ensure consistent formatting and syncing.
- Divi Form (Divi Engine): Fixed a bug where the Create Kids form type returned a null value (Pro).
= 2.7.2 =
_Release Date - 26th November 2025_
- **New Feature**
- MailMint: Added support for updating existing contacts directly from workflows (Pro).
- **New Improvement**
- Salesforce: Added proper date-field formatting for more reliable syncing.
- Action Hook: Removed unnecessary primary-key prevention for smoother custom automation handling. (Pro).
- **Bug Fixes**
- MailMint: Resolved the issue causing errors while updating contact timelines.
- GiveWP: Fixed donor meta field syncing inconsistencies.
- Zoho Sheet: Corrected the header-fetching issue that prevented proper data mapping.
- Ultimate Member: Fixed the problem where edited integration fields would disappear.
- Divi Form (Divi Engine): Addressed a bug where the form type returned a null value (Pro).
= 2.7.1 =
_Release Date - 08th November 2025_
- **New Feature**
- MemberPress: Added support for user custom fields to extend integration flexibility (Pro).
- **New Improvement**
- GiveWP: Enhanced trigger functionality with improved data listening (Pro).
- Action Hook: Added default field type for triggers to ensure smoother workflows (Pro).
- **Bug Fixes**
- Mailchimp: Fixed issue with updating existing contacts.
- GetResponse: Resolved subscriber update problem.
- Telegram: Fixed blank page issue triggered by Action Hook to Telegram.
- GamiPress: Corrected fetching utilities query issue.
- Sendy: Authorization issue has been fixed.
= 2.7.0 =
_Release Date - 14th October 2025_
- **New Action**
- Wishlist Member: 08 new events added
- **New Triggers**
- FluentCart: 17 new events added (Pro)
- Contact Form Email: 01 new event added (Pro)
- Booking Calendar Contact Form: 01 new event added (Pro)
- Mail Mint: 07 new events added (Pro)
- Wishlist Member: 06 new events added (Pro)
= 2.6.11 =
_Release Date - 22nd September 2025_
- **Bug Fixes**
- Salesforce: Fixed oAuth redirect url issue.
= 2.6.10 =
_Release Date - 20th September 2025_
- **Bug Fixes**
- Salesforce: Fixed refresh token expiration issue.
- Salesforce: Resolved issue with task creation execution.
- Freshdesk: Fixed contact creation issue & Addressed problems with custom fields not working properly.
= 2.6.9 =
_Release Date - 14th September 2025_
- **New Action**
- ACPT: 12 new events added
- **New Triggers**
- FormGent: 10 new events added (Pro).
- StoreEngine: 12 new events added (Pro).
- EasyCommerce: 31 new events added (Pro).
- GeoDirectory: 1 new event added (Pro).
- WP User Frontend: 5 new events added (Pro).
- **New Features**
- CopperCRM: Added Company & Tags assignment utilities to Person
- Integrations Timeline: Added response viewer modal for better tracking
- **Bug Fixes**
- CopperCRM: Fixed custom field data storing issue
- WooCommerce: Fixed cart total & cart tax empty data issue
- MailMint: Fixed integration name edit issue & added validation
= 2.6.8 =
_Release Date - 1st September 2025_
- **New Trigger**
- FluentAffiliate: 8 New Events Added (Pro).
- **Bug Fixes**
- MemberPress: Fixed undefined array key issue.
- MemberPress: Resolved lifetime expiration date bug.
= 2.6.7 =
_Release Date - 20th August 2025_
- **New Action**
- Line: 3 New Events Added.
- **New Improvement**
- Google Sheets: Removed unusual components from the authorization page UI for a cleaner, more streamlined interface.
- Paid Membership Pro: Added validation for level change event to ensure proper functionality (Pro).
- **Bug Fixes**
- MemberPress: Fixed a fatal error related to the namespace issue.
- WhatsApp: Resolved the undefined authorization route function issue.
= 2.6.6 =
_Release Date - 6th August 2025_
- **New Triggers**
- Paid Memberships Pro: +1 New Events Added (Pro).
- WP Travel Engine: 3 New Events Added (Pro).
- WP User Frontend (WPUF): 2 New Events Added (Pro).
- **Bug Fixes**
- GetResponse: Fixed Tags now append correctly to contacts upon submission.
- Paid Memberships Pro: Membership selection update issue resolved (Pro).
- Zoho CRM: Fixed tasks module fetching issue — now syncing tasks properly.
- MailerLite:Fixed checkbox issue under update utilities.
- MailerLite: Resolved integration name not updating correctly.
= 2.6.5 =
_Release Date - 26th july 2025_
- **Bug Fixes**
- Plugin Update: Fixed version updating issue causing discrepancies during plugin upgrades (Pro).
- WooCommerce: Resolved an issue with meta box field fetching not returning expected values.
- Webhook: Fixed fatal error caused by the JSON checker in certain payload conditions (Pro).
- Webhook: Addressed an issue where the request body was not flattening correctly, improving compatibility with third-party services (Pro).
= 2.6.4 =
_Release Date - 12th july 2025_
- **New Triggers**
- Amelia Booking: 1 New Events Added (Pro).
- **New Actions**
- MailerLite: 2 New Events Added (Pro).
- **New Feature**
- Bit Form: Uploaded files data are now captured and accessible via actions.
- **New Improvement**
- Encharge: Tag insertion now intelligently combines with existing tags instead of overwriting them.
- **Bug Fixes**
- Translation (WP 6.7+): Fixed issue with loading notice translations in the latest WordPress version.
- MailerLite: Fixed an issue where existing subscribers were not being handled correctly.
- Salesforce: Resolved the redirect URL issue during authentication or callback.
- Webhook: Fixed an issue with JSON body parameters in webhook payloads (pro).
= 2.6.3 =
_Release Date - 2nd july 2025_
- **New Feature**
- WP Post Creation: Added support for assigning tags to posts (Pro).
- **Bug Fixes**
- Fixed PHP warning for undefined array key 'action'.
= 2.6.2 =
_Release Date - 1st july 2025_
- **New Triggers**
- WPSubscription - 4 New Events Added (Pro).
- **New Feature**
- Salesforce: Added new Salesforce utilities for (Pro):
- Lead Status
- Lead Source
- Rating
- Industry
- **Bug Fixes**
- Campaign Monitor: Resolved an issue with custom field mapping.
- WooCommerce (Trigger): Fixed a bug where the "Order Created" trigger was not properly initializing when an order was created in action.
- Flowlu: Addressed and fixed the issue with custom field handling.
- wpLoyalty: Fixed the issue with accessing order data (Pro).
= 2.6.1 =
_Release Date - 21th June 2025_
- **New Triggers**
- FluentCommunity: 3 new events added (Pro).
- New User Approve: 5 new events added (Pro).
- **New Feature**
- FluentCommunity: Course info now included in lesson-related trigger data (Pro).
- **Bug Fixes**
- Salesforce: Fixed issue where refreshing field mapping reset field mappings.
- Bricks: Resolved file URL inconsistency issue (Pro).
- Webhook: Fixed request body encoding bug (pro).
= 2.6.0 =
_Release Date - 4th June 2025_