v 4.0.7 release

This commit is contained in:
magepeopleteam 2023-09-19 05:31:55 +00:00
parent 96d67d3dd0
commit 67b70dfc65
3 changed files with 8 additions and 14 deletions

View File

@ -1333,7 +1333,6 @@ function mep_licensing_page($form) {
<div class='mep-licensing-page'> <div class='mep-licensing-page'>
<h3>Event Manager For Woocommerce Licensing</h3> <h3>Event Manager For Woocommerce Licensing</h3>
<p>Thank you for using our Event Manager for WooCommerce plugin! This plugin is free to use and no license is required. However, we do have some additional add-ons which enhance the features and functionality of this plugin. If you have any of these add-ons, you will need to enter a valid license key below in order to continue using them. </p> <p>Thank you for using our Event Manager for WooCommerce plugin! This plugin is free to use and no license is required. However, we do have some additional add-ons which enhance the features and functionality of this plugin. If you have any of these add-ons, you will need to enter a valid license key below in order to continue using them. </p>
<div class="mep_licensae_info"></div> <div class="mep_licensae_info"></div>
<table class='wp-list-table widefat striped posts mep-licensing-table'> <table class='wp-list-table widefat striped posts mep-licensing-table'>
<thead> <thead>
@ -1359,16 +1358,10 @@ function mep_settings_template_page($form) {
?> ?>
<div class='mep-licensing-page'> <div class='mep-licensing-page'>
<h3>Ready Templates For Event Details Page.</h3> <h3>Ready Templates For Event Details Page.</h3>
<div class="mep_licensae_info"></div> <div class="mep_licensae_info"></div>
<div class="mep-template-lists"> <div class="mep-template-lists">
<?php <?php
$url = 'https://vaincode.com/update/template/template.json'; $url = '';
$curl = curl_init(); $curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
@ -1376,9 +1369,7 @@ function mep_settings_template_page($form) {
$data = curl_exec($curl); $data = curl_exec($curl);
curl_close($curl); curl_close($curl);
$obj = json_decode($data, true); $obj = json_decode($data, true);
// print_r($data); // print_r($data);
if (is_array($obj) && sizeof($obj) > 0) { if (is_array($obj) && sizeof($obj) > 0) {
?> ?>
<div class="mep_ready_template_sec"> <div class="mep_ready_template_sec">
@ -1454,8 +1445,6 @@ function mep_settings_template_page($form) {
}); });
})(jQuery); })(jQuery);
</script> </script>
</div> </div>
<?php <?php
} }

View File

@ -394,6 +394,10 @@ A. You can create a support ticket here with problem details with possible scree
== Changelog == == Changelog ==
= 4.0.7 =
* Warning issue fixed
19 Sep 2023*
= 4.0.6 = = 4.0.6 =
* Some Minor Bug fixed * Some Minor Bug fixed
18 Sep 2023* 18 Sep 2023*

View File

@ -3,7 +3,7 @@
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce -WpEvently * Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce -WpEvently
* Plugin URI: http://mage-people.com * Plugin URI: http://mage-people.com
* Description: A Complete Event Solution for WordPress by MagePeople.. * Description: A Complete Event Solution for WordPress by MagePeople..
* Version: 4.0.6 * Version: 4.0.7
* Author: MagePeople Team * Author: MagePeople Team
* Author URI: http://www.mage-people.com/ * Author URI: http://www.mage-people.com/
* Text Domain: mage-eventpress * Text Domain: mage-eventpress
@ -14,7 +14,8 @@
if (!defined('ABSPATH')) { if (!defined('ABSPATH')) {
die; die;
} // Cannot access pages directly. } // Cannot access pages directly.
// Checking woo
// Checking woo
include_once(ABSPATH . 'wp-admin/includes/plugin.php'); include_once(ABSPATH . 'wp-admin/includes/plugin.php');
if (!defined('MPWEM_PLUGIN_DIR')) { if (!defined('MPWEM_PLUGIN_DIR')) {
define('MPWEM_PLUGIN_DIR', dirname(__FILE__)); define('MPWEM_PLUGIN_DIR', dirname(__FILE__));