Skip to content

Commit 7ebd3fc

Browse files
authored
Merge pull request #118 from Bit-Apps-Pro/rishad-dev-tmp
version updated to v2.6.9
2 parents 1668fd3 + f3a73d8 commit 7ebd3fc

28 files changed

+580
-288
lines changed

.wordpress-org/banner-1544x500.gif

539 KB
Loading

.wordpress-org/banner-772x250.gif

131 KB
Loading

bitwpfi.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
/**
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
6-
* Description: Bit Integrations is a platform that integrates with over 290+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
7-
* Version: 2.6.8
6+
* Description: Bit Integrations is a platform that integrates with over 300+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
7+
* Version: 2.6.9
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
@@ -24,7 +24,7 @@
2424
$btcbi_db_version = '1.1';
2525

2626
// Define most essential constants.
27-
define('BTCBI_VERSION', '2.6.8');
27+
define('BTCBI_VERSION', '2.6.9');
2828
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);
2929

3030
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';

frontend-dev/src/Utils/StaticData/webhookIntegrations.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ export const customFormIntegrations = [
7070
'WPSubscription',
7171
'WPTravelEngine',
7272
'WPUserFrontend',
73-
'FluentAffiliate'
73+
'FluentAffiliate',
74+
'EasyCommerce',
75+
'FormGent',
76+
'GeoDirectory',
77+
'StoreEngine'
7478
]
7579

7680
export const actionHookIntegrations = ['ActionHook']

frontend-dev/src/components/AllIntegrations/CopperCRM/CopperCRM.jsx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
6262
{ key: 'details', label: __('Description', 'bit-integrations'), required: false }
6363
]
6464

65-
const [coppercrmConf, setCopperCRMConf] = useState({
65+
const [copperCRMConf, setCopperCRMConf] = useState({
6666
name: 'CopperCRM',
6767
type: 'CopperCRM',
6868
api_key: '',
@@ -82,7 +82,7 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
8282
flow,
8383
setFlow,
8484
allIntegURL,
85-
coppercrmConf,
85+
copperCRMConf,
8686
navigate,
8787
'',
8888
'',
@@ -103,23 +103,23 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
103103
document.getElementById('btcd-settings-wrp').scrollTop = 0
104104
}, 300)
105105

106-
if (!checkMappedFields(coppercrmConf)) {
106+
if (!checkMappedFields(copperCRMConf)) {
107107
toast.error(__('Please map mandatory fields', 'bit-integrations'))
108108
return
109109
}
110110

111-
if (coppercrmConf.actionName === 'opportunity') {
112-
if (!coppercrmConf.selectedCRMPeople) {
111+
if (copperCRMConf.actionName === 'opportunity') {
112+
if (!copperCRMConf.selectedCRMPeople) {
113113
toast.error(__('Please select a people', 'bit-integrations'))
114114
return
115115
}
116-
if (!coppercrmConf.selectedCRMPipelines && coppercrmConf.actionName === 'opportunity') {
116+
if (!copperCRMConf.selectedCRMPipelines && copperCRMConf.actionName === 'opportunity') {
117117
toast.error(__('Please select a Pipeline', 'bit-integrations'))
118118
return
119119
}
120120
}
121121

122-
coppercrmConf.field_map.length > 0 && setStep(pageNo)
122+
copperCRMConf.field_map.length > 0 && setStep(pageNo)
123123
}
124124

125125
return (
@@ -131,7 +131,7 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
131131

132132
{/* STEP 1 */}
133133
<CopperCRMAuthorization
134-
coppercrmConf={coppercrmConf}
134+
copperCRMConf={copperCRMConf}
135135
setCopperCRMConf={setCopperCRMConf}
136136
step={step}
137137
setStep={setStep}
@@ -146,18 +146,18 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
146146
style={{ ...(step === 2 && { width: 900, height: 'auto', overflow: 'visible' }) }}>
147147
<CopperCRMIntegLayout
148148
formFields={formFields}
149-
handleInput={e => handleInput(e, coppercrmConf, setCopperCRMConf, setLoading, setSnackbar)}
150-
coppercrmConf={coppercrmConf}
149+
handleInput={e => handleInput(e, copperCRMConf, setCopperCRMConf, setLoading, setSnackbar)}
150+
copperCRMConf={copperCRMConf}
151151
setCopperCRMConf={setCopperCRMConf}
152152
loading={loading}
153153
setLoading={setLoading}
154154
setSnackbar={setSnackbar}
155155
/>
156156

157-
{coppercrmConf?.actionName && (
157+
{copperCRMConf?.actionName && (
158158
<button
159159
onClick={() => nextPage(3)}
160-
disabled={!checkMappedFields(coppercrmConf)}
160+
disabled={!checkMappedFields(copperCRMConf)}
161161
className="btn f-right btcd-btn-lg purple sh-sm flx"
162162
type="button">
163163
{__('Next', 'bit-integrations')} &nbsp;
@@ -167,12 +167,12 @@ function CopperCRM({ formFields, setFlow, flow, allIntegURL }) {
167167
</div>
168168

169169
{/* STEP 3 */}
170-
{coppercrmConf?.actionName && (
170+
{copperCRMConf?.actionName && (
171171
<IntegrationStepThree
172172
step={step}
173173
saveConfig={() => saveConfig()}
174174
isLoading={isLoading}
175-
dataConf={coppercrmConf}
175+
dataConf={copperCRMConf}
176176
setDataConf={setCopperCRMConf}
177177
formFields={formFields}
178178
/>

0 commit comments

Comments
 (0)