Skip to content

Commit

Permalink
changed event js
Browse files Browse the repository at this point in the history
  • Loading branch information
eclipsesrl committed Jan 23, 2020
1 parent aed330b commit 492ae04
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.udesly.com/
Tags: webflow to wordpress, editor, page builder, layout design, udesly, webflow
Requires at least: 5.0
Tested up to: 5.2.3
Stable tag: 2.0.0.43
Stable tag: 2.0.0.45
License: GPLv3 or later
License URI: https://www.udesly.com/terms-conditions-of-use/#udesly-wordpress-plugin
Requires PHP: 5.6.0
Expand Down Expand Up @@ -79,7 +79,13 @@ That's all!
= Can I use the Udesly Adapter on multiple websites? =

Absolutely! You can use the Udesly Adapter to create more than one website.

== Changelog ==
= 2.0.0.45 =
* Changed "tap" event to "click" event due to Webflow slider changes

= 2.0.0.44 =
* Fixed Main Category meta box on product

= 2.0.0.43 =
* Added Custom thank you page redirect
Expand Down
2 changes: 1 addition & 1 deletion assets/js/bundle/udesly-wf-wc.bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion includes/Terms/Terms.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static function main_category_add_meta_box( $post ) {
add_meta_box( 'main_category_meta_box', __( 'Main Category', 'udesly' ), array(
self::class,
'main_category_build_meta_box'
), 'post', 'side', 'high' );
), $post->post_type, 'side', 'high' );
}

public static function main_category_build_meta_box( $post ) {
Expand Down
4 changes: 2 additions & 2 deletions udesly-adapter-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Udesly Adapter
* Plugin URI: https://www.udesly.com
* Description: This is a support plugin for Udesly (Webflow to WordPress converter) that allows you to enable additional features for your theme.
* Version: 2.0.0.43
* Version: 2.0.0.45
* Author: Udesly
* Author URI: https://www.udesly.com
* License: GPL-2.0+
Expand All @@ -29,7 +29,7 @@
// Constants
defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH', plugin_dir_path(__FILE__));
defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL', plugin_dir_url(__FILE__));
defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.43");
defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.45");
defined('UDESLY_TEXT_DOMAIN') ?: define('UDESLY_TEXT_DOMAIN', "udesly-adapter-plugin");

defined('UDESLY_ADAPTER_PLUGIN_MISC_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_MISC_PATH', plugin_dir_path(__FILE__) . 'includes/misc/');
Expand Down

0 comments on commit 492ae04

Please sign in to comment.