version 3.9.0 release
This commit is contained in:
parent
83c828c042
commit
217b842e3c
|
@ -8240,6 +8240,8 @@ if( ! class_exists( 'FormFieldsGenerator' ) ) {
|
||||||
tinymce.init({
|
tinymce.init({
|
||||||
selector:"#<?php echo esc_attr($field_name); ?>"+now,
|
selector:"#<?php echo esc_attr($field_name); ?>"+now,
|
||||||
menubar: true,
|
menubar: true,
|
||||||
|
relative_urls : 0,
|
||||||
|
remove_script_host : 0,
|
||||||
toolbar: 'undo redo link formatselect bold italic backcolor alignleft aligncenter alignright alignjustify bullist numlist outdent indent removeformat fullscreen',
|
toolbar: 'undo redo link formatselect bold italic backcolor alignleft aligncenter alignright alignjustify bullist numlist outdent indent removeformat fullscreen',
|
||||||
plugins: 'fullscreen link'
|
plugins: 'fullscreen link'
|
||||||
});
|
});
|
||||||
|
@ -8393,6 +8395,8 @@ if( ! class_exists( 'FormFieldsGenerator' ) ) {
|
||||||
tinymce.init({
|
tinymce.init({
|
||||||
selector: "#<?php echo esc_attr($field_name).$rnd; ?>",
|
selector: "#<?php echo esc_attr($field_name).$rnd; ?>",
|
||||||
menubar: true,
|
menubar: true,
|
||||||
|
relative_urls : 0,
|
||||||
|
remove_script_host : 0,
|
||||||
toolbar: 'undo redo link formatselect bold italic backcolor alignleft aligncenter alignright alignjustify bullist numlist outdent indent removeformat fullscreen',
|
toolbar: 'undo redo link formatselect bold italic backcolor alignleft aligncenter alignright alignjustify bullist numlist outdent indent removeformat fullscreen',
|
||||||
plugins: 'fullscreen link'
|
plugins: 'fullscreen link'
|
||||||
});
|
});
|
||||||
|
|
|
@ -961,3 +961,9 @@ Fatal error warning issue fixed.
|
||||||
* Update Release:
|
* Update Release:
|
||||||
Email & PDF Text Format issue fixed
|
Email & PDF Text Format issue fixed
|
||||||
23 March 2023*
|
23 March 2023*
|
||||||
|
|
||||||
|
|
||||||
|
= 3.9.0=
|
||||||
|
* Update Release:
|
||||||
|
URL issue fixed in FAQ editor.
|
||||||
|
29 March 2023*
|
|
@ -3,7 +3,7 @@
|
||||||
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
|
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
|
||||||
* 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: 3.8.9
|
* Version: 3.9.0
|
||||||
* 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
|
||||||
|
@ -98,7 +98,6 @@ if (is_plugin_active('woocommerce/woocommerce.php')) {
|
||||||
function mep_add_admin_scripts($hook)
|
function mep_add_admin_scripts($hook)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
wp_register_script('welcome-tabs', plugin_dir_url(__FILE__) . 'js/welcome-tabs.js', array('jquery'));
|
wp_register_script('welcome-tabs', plugin_dir_url(__FILE__) . 'js/welcome-tabs.js', array('jquery'));
|
||||||
wp_register_style('welcome-tabs', plugin_dir_url(__FILE__) . 'css/welcome-tabs.css');
|
wp_register_style('welcome-tabs', plugin_dir_url(__FILE__) . 'css/welcome-tabs.css');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue