Changeset 3018905
- Timestamp:
- 01/08/2024 06:15:31 PM (2 years ago)
- Location:
- event-agent/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/js/events-vue.js (modified) (3 diffs)
-
admin/partials/events.php (modified) (2 diffs)
-
event-agent.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
event-agent/trunk/README.txt
r3017880 r3018905 9 9 Requires at least: 4.6 10 10 Tested up to: 6.4 11 Stable tag: 4.4. 412 Version: 4.4. 411 Stable tag: 4.4.5 12 Version: 4.4.5 13 13 License: GPLv2 or later 14 14 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
event-agent/trunk/admin/js/events-vue.js
r3017880 r3018905 156 156 hasStripe: false, 157 157 hasRecaptcha: false, 158 hasAdmin: false, 158 159 pendingConfiguration: false, 159 160 unlocked: true, … … 685 686 686 687 fetchSetupStatus: function () { 687 var url = wpData.eaUrl + '/api/AccountInfo/' ;688 var url = wpData.eaUrl + '/api/AccountInfo/' + '?wpUserId=' + wpUser.currentUser.ID; 688 689 689 690 if (!this.eventPage) { … … 707 708 this.pendingConfiguration = !this.hasCheckInPage || !this.hasRegistrationPage || 708 709 !this.hasRecaptcha; 710 this.hasAdmin = response.data.hasAdmin; 709 711 }) 710 712 .catch(error => { -
event-agent/trunk/admin/partials/events.php
r3017880 r3018905 111 111 </el-tab-pane> 112 112 113 <el-tab-pane label="<?php _e('Templates', 'event-agent'); ?>" lazy>113 <el-tab-pane v-if="hasAdmin" label="<?php _e('Templates', 'event-agent'); ?>" lazy> 114 114 <el-skeleton :loading="loading" animated :count="6"> 115 115 <template slot="template"> … … 177 177 </el-option> 178 178 </el-select> 179 <el-form-item class="mt-2" prop="istemplate" label="<?php esc_html_e('Is Template', 'event-agent'); ?>">179 <el-form-item v-if="hasAdmin" class="mt-2" prop="istemplate" label="<?php esc_html_e('Is Template', 'event-agent'); ?>"> 180 180 <el-switch v-model="event.isTemplate"></el-switch> 181 181 </el-form-item> -
event-agent/trunk/event-agent.php
r3017880 r3018905 11 11 * Plugin URI: https://www.eventagent.ai/ 12 12 * Description: EventAgent.ai combines a next generation event management system with AI-powered marketing to maximize your sales. AI makes all the difference. 13 * Version: 4.4. 413 * Version: 4.4.5 14 14 * Requires at least: 5.0 15 15 * Requires PHP: 7.0 … … 25 25 } 26 26 27 define( 'EVENT_AGENT_VERSION', '4.4. 4' );27 define( 'EVENT_AGENT_VERSION', '4.4.5' ); 28 28 29 29 require_once dirname(__FILE__).'/includes/activate.php';
Note: See TracChangeset
for help on using the changeset viewer.