Skip to content

Commit e4c0b0b

Browse files
authored
Merge pull request #123 from Bit-Apps-Pro/rishad-dev-tmp
Version updated to v.2.7.0
2 parents bd31c90 + ad97d06 commit e4c0b0b

40 files changed

+302
-154
lines changed

bitwpfi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* 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.11
7+
* Version: 2.7.0
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.11');
27+
define('BTCBI_VERSION', '2.7.0');
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
@@ -74,7 +74,11 @@ export const customFormIntegrations = [
7474
'EasyCommerce',
7575
'FormGent',
7676
'GeoDirectory',
77-
'StoreEngine'
77+
'StoreEngine',
78+
'FluentCart',
79+
'MailMint',
80+
'BookingCalendarContactForm',
81+
'ContactFormEmail'
7882
]
7983

8084
export const actionHookIntegrations = ['ActionHook']

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ function Log({ allIntegURL }) {
220220
fontFamily: "'Fira Code', monospace",
221221
fontSize: '14px',
222222
overflow: 'auto',
223+
width: '100%',
223224
maxWidth: '800px',
224225
maxHeight: '500px',
225226
boxShadow: '0 2px 8px rgba(0,0,0,0.15)',

frontend-dev/src/pages/ChangelogToggle.jsx

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { __, sprintf } from '../Utils/i18nwrap'
1111

1212
// const source = !btcbi.isPro ? 'bit-integrations' : 'bit-integrations-pro'
1313
// const dealURL = `https://bitapps.pro/new-year-deal/#bit-integrations-pricing`
14-
const releaseDate = '22th September 2025'
14+
const releaseDate = '14th October 2025'
1515

1616
// Changelog items format [{ 'label': '', 'desc': '', 'isPro': true }]
1717
const changeLog = [
@@ -25,13 +25,45 @@ const changeLog = [
2525
label: __('New Actions', 'bit-integrations'),
2626
headClass: 'new-integration',
2727
itemClass: 'integration-list',
28-
items: []
28+
items: [
29+
{
30+
label: 'Wishlist Member',
31+
desc: '08 new events added.',
32+
isPro: false
33+
}
34+
]
2935
},
3036
{
3137
label: __('New Triggers', 'bit-integrations'),
3238
headClass: 'new-trigger',
3339
itemClass: 'integration-list',
34-
items: []
40+
items: [
41+
{
42+
label: 'Wishlist Member',
43+
desc: '06 new events added.',
44+
isPro: true
45+
},
46+
{
47+
label: 'FluentCart',
48+
desc: '17 new events added.',
49+
isPro: true
50+
},
51+
{
52+
label: 'Mail Mint',
53+
desc: '07 new events added.',
54+
isPro: true
55+
},
56+
{
57+
label: 'Contact Form Email',
58+
desc: '01 new events added.',
59+
isPro: true
60+
},
61+
{
62+
label: 'Booking Calendar Contact Form',
63+
desc: '01 new events added.',
64+
isPro: true
65+
}
66+
]
3567
},
3668
{
3769
label: __('New Features', 'bit-integrations'),
@@ -49,13 +81,7 @@ const changeLog = [
4981
label: __('Bug Fixes', 'bit-integrations'),
5082
headClass: 'fixes',
5183
itemClass: 'fixes-list',
52-
items: [
53-
{
54-
label: 'Salesforce',
55-
desc: 'Fixed oAUth redirect url issue.',
56-
isPro: false
57-
}
58-
]
84+
items: []
5985
}
6086
]
6187

@@ -147,7 +173,7 @@ export default function ChangelogToggle() {
147173
step === 2 && (
148174
<div className="changelog content">
149175
<div className="flx flx-col flx-center whats-new">
150-
<h3>{sprintf(__("What's New in %s", 'bit-integrations'), btcbi.version)}?</h3>
176+
<h3>{sprintf(__("What's New in v%s", 'bit-integrations'), btcbi.version)}?</h3>
151177
<small className="date">
152178
{__('Updated at:', 'bit-integrations')} <b>{releaseDate}</b>
153179
</small>
6.89 KB
Loading
5.2 KB
Loading
5.44 KB
Loading

includes/Actions/Affiliate/AffiliateController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static function getAllAffiliate()
4444

4545
global $wpdb;
4646
$affiliatesIds = $wpdb->get_results(
47-
$wpdb->prepare("SELECT affiliate_Id FROM {$wpdb->prefix}affiliate_wp_affiliates")
47+
$wpdb->prepare('SELECT affiliate_Id FROM %1s', $wpdb->prefix . 'affiliate_wp_affiliates')
4848
);
4949

5050
foreach ($affiliatesIds as $val) {

includes/Actions/CopperCRM/RecordApiHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public function addOpportunity($finalData)
149149
foreach ($finalData as $key => $value) {
150150
if (\in_array($key, $staticFieldsKeys)) {
151151
if ($key == 'close_date') {
152-
$requestParams['close_date'] = date('m/d/Y', strtotime($value));
152+
$requestParams['close_date'] = gmdate('m/d/Y', strtotime($value));
153153
} else {
154154
$requestParams[$key] = $value;
155155
}

includes/Actions/GamiPress/GamiPressController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static function fetchAllAchievementType()
8989
global $wpdb;
9090

9191
return $wpdb->get_results(
92-
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM {$wpdb->posts} WHERE post_type LIKE 'achievement-type' AND post_status = 'publish' ORDER BY post_title ASC")
92+
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM %1s WHERE post_type LIKE %2s AND post_status = 'publish' ORDER BY post_title ASC", $wpdb->posts, 'achievement-type')
9393
);
9494
}
9595

@@ -109,7 +109,7 @@ public static function fetchAllPointType()
109109
{
110110
global $wpdb;
111111
$points = $wpdb->get_results(
112-
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM {$wpdb->posts} WHERE post_type LIKE 'points-type' AND post_status = 'publish' ORDER BY post_title ASC")
112+
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM %1s WHERE post_type LIKE %2s AND post_status = 'publish' ORDER BY post_title ASC", $wpdb->posts, 'points-type')
113113
);
114114
wp_send_json_success($points);
115115
}

0 commit comments

Comments
 (0)