Changeset 2725868
- Timestamp:
- 05/18/2022 08:07:53 AM (4 years ago)
- Location:
- convertful
- Files:
-
- 9 added
- 3 edited
- 5 copied
-
. (modified) (1 prop)
-
tags/2.4 (added)
-
tags/2.4/README.md (copied) (copied from convertful/trunk/README.md)
-
tags/2.4/config.php (copied) (copied from convertful/trunk/config.php)
-
tags/2.4/convertful.php (copied) (copied from convertful/trunk/convertful.php) (3 diffs)
-
tags/2.4/css (added)
-
tags/2.4/css/main.css (added)
-
tags/2.4/functions (added)
-
tags/2.4/functions/admin_pages.php (added)
-
tags/2.4/functions/shortcodes.php (added)
-
tags/2.4/functions/woocommerce.php (added)
-
tags/2.4/js (added)
-
tags/2.4/js/main.js (added)
-
tags/2.4/license.txt (copied) (copied from convertful/trunk/license.txt)
-
tags/2.4/readme.txt (copied) (copied from convertful/trunk/readme.txt) (2 diffs)
-
trunk/convertful.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
convertful
-
Property
svn:ignore
set to
.idea
-
Property
svn:ignore
set to
-
convertful/tags/2.4/convertful.php
r2725151 r2725868 3 3 /** 4 4 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool 5 * Version: 2. 35 * Version: 2.4 6 6 * Plugin URI: https://convertful.com/ 7 7 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing … … 105 105 $tags = array(); 106 106 $the_tags = get_the_tags(); 107 if ( is_array( $the_tags ) ) {107 if ( is_array( $the_tags ) && ! is_category() && ! is_tag() ) { 108 108 foreach ( $the_tags as $tag ) { 109 109 $tags[] = $tag->slug; … … 113 113 $categories = array(); 114 114 $the_categories = get_the_category(); 115 if ( is_array( $the_categories ) ) {115 if ( is_array( $the_categories ) && ! is_category() && ! is_tag() ) { 116 116 foreach ( $the_categories as $category ) { 117 117 $categories[] = $category->slug; -
convertful/tags/2.4/readme.txt
r2725151 r2725868 3 3 Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign 4 4 Requires at least: 4.0 5 Tested up to: 5. 7.16 Stable tag: 2. 35 Tested up to: 5.9.3 6 Stable tag: 2.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.4 = 105 * Bugs fixes, remove widgets from categories and tags lists 106 104 107 = 2.3 = 105 108 * Bug and compatibility fixes -
convertful/trunk/convertful.php
r2525260 r2725868 3 3 /** 4 4 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool 5 * Version: 2. 35 * Version: 2.4 6 6 * Plugin URI: https://convertful.com/ 7 7 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing … … 105 105 $tags = array(); 106 106 $the_tags = get_the_tags(); 107 if ( is_array( $the_tags ) ) {107 if ( is_array( $the_tags ) && ! is_category() && ! is_tag() ) { 108 108 foreach ( $the_tags as $tag ) { 109 109 $tags[] = $tag->slug; … … 113 113 $categories = array(); 114 114 $the_categories = get_the_category(); 115 if ( is_array( $the_categories ) ) {115 if ( is_array( $the_categories ) && ! is_category() && ! is_tag() ) { 116 116 foreach ( $the_categories as $category ) { 117 117 $categories[] = $category->slug; -
convertful/trunk/readme.txt
r2525257 r2725868 3 3 Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign 4 4 Requires at least: 4.0 5 Tested up to: 5. 7.16 Stable tag: 2. 35 Tested up to: 5.9.3 6 Stable tag: 2.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.4 = 105 * Bugs fixes, remove widgets from categories and tags lists 106 104 107 = 2.3 = 105 108 * Bug and compatibility fixes
Note: See TracChangeset
for help on using the changeset viewer.