Plugin Directory

Changeset 2725868


Ignore:
Timestamp:
05/18/2022 08:07:53 AM (4 years ago)
Author:
rsukhar
Message:

new release with bug fixes

Location:
convertful
Files:
9 added
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • convertful

    • Property svn:ignore set to
      .idea
  • convertful/tags/2.4/convertful.php

    r2725151 r2725868  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 2.3
     5 * Version: 2.4
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing
     
    105105    $tags     = array();
    106106    $the_tags = get_the_tags();
    107     if ( is_array( $the_tags ) ) {
     107    if ( is_array( $the_tags ) && ! is_category() && ! is_tag() ) {
    108108        foreach ( $the_tags as $tag ) {
    109109            $tags[] = $tag->slug;
     
    113113    $categories     = array();
    114114    $the_categories = get_the_category();
    115     if ( is_array( $the_categories ) ) {
     115    if ( is_array( $the_categories ) && ! is_category() && ! is_tag() ) {
    116116        foreach ( $the_categories as $category ) {
    117117            $categories[] = $category->slug;
  • convertful/tags/2.4/readme.txt

    r2725151 r2725868  
    33Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign
    44Requires at least: 4.0
    5 Tested up to: 5.7.1
    6 Stable tag: 2.3
     5Tested up to: 5.9.3
     6Stable tag: 2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.4 =
     105* Bugs fixes, remove widgets from categories and tags lists
     106
    104107= 2.3 =
    105108* Bug and compatibility fixes
  • convertful/trunk/convertful.php

    r2525260 r2725868  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 2.3
     5 * Version: 2.4
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing
     
    105105    $tags     = array();
    106106    $the_tags = get_the_tags();
    107     if ( is_array( $the_tags ) ) {
     107    if ( is_array( $the_tags ) && ! is_category() && ! is_tag() ) {
    108108        foreach ( $the_tags as $tag ) {
    109109            $tags[] = $tag->slug;
     
    113113    $categories     = array();
    114114    $the_categories = get_the_category();
    115     if ( is_array( $the_categories ) ) {
     115    if ( is_array( $the_categories ) && ! is_category() && ! is_tag() ) {
    116116        foreach ( $the_categories as $category ) {
    117117            $categories[] = $category->slug;
  • convertful/trunk/readme.txt

    r2525257 r2725868  
    33Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign
    44Requires at least: 4.0
    5 Tested up to: 5.7.1
    6 Stable tag: 2.3
     5Tested up to: 5.9.3
     6Stable tag: 2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    102102== Changelog ==
    103103
     104= 2.4 =
     105* Bugs fixes, remove widgets from categories and tags lists
     106
    104107= 2.3 =
    105108* Bug and compatibility fixes
Note: See TracChangeset for help on using the changeset viewer.