Changeset 3355120
- Timestamp:
- 09/03/2025 07:09:50 AM (7 months ago)
- Location:
- ghl-wizard
- Files:
-
- 61 added
- 4 edited
-
tags/1.2.24 (added)
-
tags/1.2.24/.gitignore (added)
-
tags/1.2.24/api (added)
-
tags/1.2.24/api/apis.php (added)
-
tags/1.2.24/api/contacts.php (added)
-
tags/1.2.24/api/get-campaigns.php (added)
-
tags/1.2.24/api/get-custom-fields.php (added)
-
tags/1.2.24/api/get-custom-values.php (added)
-
tags/1.2.24/api/get-tags.php (added)
-
tags/1.2.24/api/get-token.php (added)
-
tags/1.2.24/api/get-workflows.php (added)
-
tags/1.2.24/css (added)
-
tags/1.2.24/css/admin-styles.css (added)
-
tags/1.2.24/css/select2.min.css (added)
-
tags/1.2.24/css/styles.css (added)
-
tags/1.2.24/ghl-wizard.php (added)
-
tags/1.2.24/images (added)
-
tags/1.2.24/images/50-off.png (added)
-
tags/1.2.24/images/apply-tags.png (added)
-
tags/1.2.24/images/ghl-bw.png (added)
-
tags/1.2.24/images/ghl-large-bw.png (added)
-
tags/1.2.24/images/ghl-large.png (added)
-
tags/1.2.24/images/ghl.png (added)
-
tags/1.2.24/images/power-up.png (added)
-
tags/1.2.24/inc (added)
-
tags/1.2.24/inc/content-protection.php (added)
-
tags/1.2.24/inc/elementor (added)
-
tags/1.2.24/inc/elementor/restricted-post-widget.php (added)
-
tags/1.2.24/inc/includes.php (added)
-
tags/1.2.24/inc/membership-page.php (added)
-
tags/1.2.24/inc/metaboxes.php (added)
-
tags/1.2.24/inc/options-page.php (added)
-
tags/1.2.24/inc/power-up.php (added)
-
tags/1.2.24/inc/product-page-settings.php (added)
-
tags/1.2.24/inc/settings-form.php (added)
-
tags/1.2.24/inc/settings-page.php (added)
-
tags/1.2.24/inc/shortcodes.php (added)
-
tags/1.2.24/inc/support-page.php (added)
-
tags/1.2.24/inc/surecart.php (added)
-
tags/1.2.24/inc/utility.php (added)
-
tags/1.2.24/inc/woo.php (added)
-
tags/1.2.24/inc/wp_user.php (added)
-
tags/1.2.24/js (added)
-
tags/1.2.24/js/admin-scripts.js (added)
-
tags/1.2.24/js/scripts.js (added)
-
tags/1.2.24/js/select2.min.js (added)
-
tags/1.2.24/lib (added)
-
tags/1.2.24/lib/client (added)
-
tags/1.2.24/lib/client/.editorconfig (added)
-
tags/1.2.24/lib/client/.gitignore (added)
-
tags/1.2.24/lib/client/.php-cs-fixer.dist.php (added)
-
tags/1.2.24/lib/client/composer.json (added)
-
tags/1.2.24/lib/client/composer.lock (added)
-
tags/1.2.24/lib/client/phpcs.xml.dist (added)
-
tags/1.2.24/lib/client/readme.md (added)
-
tags/1.2.24/lib/client/src (added)
-
tags/1.2.24/lib/client/src/Client.php (added)
-
tags/1.2.24/lib/client/src/Insights.php (added)
-
tags/1.2.24/lib/client/src/License.php (added)
-
tags/1.2.24/readme.txt (added)
-
tags/1.2.24/uninstall.php (added)
-
trunk/api/apis.php (modified) (1 diff)
-
trunk/ghl-wizard.php (modified) (1 diff)
-
trunk/inc/includes.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ghl-wizard/trunk/api/apis.php
r3354557 r3355120 1 1 <?php 2 add_action('init', function() { 3 require_once( __DIR__ . '/get-token.php'); 4 require_once( __DIR__ . '/get-tags.php'); 5 require_once( __DIR__ . '/get-campaigns.php'); 6 require_once( __DIR__ . '/get-workflows.php'); 7 require_once( __DIR__ . '/contacts.php'); 8 require_once( __DIR__ . '/get-custom-values.php'); 9 require_once( __DIR__ . '/get-custom-fields.php'); 10 }); 2 3 require_once( __DIR__ . '/get-token.php'); 4 require_once( __DIR__ . '/get-tags.php'); 5 require_once( __DIR__ . '/get-campaigns.php'); 6 require_once( __DIR__ . '/get-workflows.php'); 7 require_once( __DIR__ . '/contacts.php'); 8 require_once( __DIR__ . '/get-custom-values.php'); 9 require_once( __DIR__ . '/get-custom-fields.php'); -
ghl-wizard/trunk/ghl-wizard.php
r3355118 r3355120 5 5 * Plugin URI: https://betterwizard.com/lead-connector-wizard/ 6 6 * Description: Connect WordPress with the popular LeadConnector CRM(HighLevel) and combine the power of automation and excellent user experience. Including memberships, content protection, WooCommerce automation, custom fields & many more... 7 * Version: 1.2.2 37 * Version: 1.2.24 8 8 * Author: Better Wizard 9 9 * Author URI: https://betterwizard.com/ -
ghl-wizard/trunk/inc/includes.php
r3355118 r3355120 1 1 <?php 2 add_action('init', function() { 3 require_once( __DIR__ . '/utility.php');4 require_once( __DIR__ . '/settings-page.php');5 require_once( __DIR__ . '/product-page-settings.php');6 require_once( __DIR__ . '/wp_user.php');7 require_once( __DIR__ . '/woo.php');8 require_once( __DIR__ . '/metaboxes.php');9 require_once( __DIR__ . '/content-protection.php');10 require_once( __DIR__ . '/shortcodes.php');11 }); 2 3 require_once( __DIR__ . '/utility.php'); 4 require_once( __DIR__ . '/settings-page.php'); 5 require_once( __DIR__ . '/product-page-settings.php'); 6 require_once( __DIR__ . '/wp_user.php'); 7 require_once( __DIR__ . '/woo.php'); 8 require_once( __DIR__ . '/metaboxes.php'); 9 require_once( __DIR__ . '/content-protection.php'); 10 require_once( __DIR__ . '/shortcodes.php'); 11 12 12 13 13 add_action('plugins_loaded', function(){ -
ghl-wizard/trunk/readme.txt
r3355118 r3355120 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.2.2 38 Stable tag: 1.2.24 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 203 203 == Changelog == 204 204 205 = 1.2.24 = 206 * bug fixed 207 205 208 = 1.2.23 = 206 209 * bug fixed
Note: See TracChangeset
for help on using the changeset viewer.