Plugin Directory

Changeset 2869423


Ignore:
Timestamp:
02/22/2023 02:06:45 PM (3 years ago)
Author:
seomantis
Message:

improvements

Location:
seo-quick-images
Files:
42 added
4 edited

Legend:

Unmodified
Added
Removed
  • seo-quick-images/trunk/admin/admin-general-setting.php

    r2861312 r2869423  
    475475            if( $rowData->status == 0 ) {
    476476                $g_data = $rowData->result;
     477            } else if( $rowData->status == -3 ) {
     478                die(json_encode(array(
     479                    "error" => "account_validation_pending",
     480                    "error_msg" => $rowData->message
     481                )));
    477482            } else {
    478483                $featured_img_bug = $rowData->message;
  • seo-quick-images/trunk/assets/js/seo_images_ajax_script.js

    r2851725 r2869423  
    601601        } else if( data.error == "no_credits" ) {
    602602          alert( data.error_msg );
     603        } else if( data.error == "account_validation_pending") {
     604          alert( data.error_msg );
     605          $(".notice-info").hide();
     606          $(".seo_images-group").hide();
     607          $(".bug-holder").html( "<p style=\"margin: 12px 0px;\"><span class=\"red-sp\">Error:</span>" + data.error_msg + "</p>");
    603608        } else if( data.error == "false" ) {
    604609          let error_bugs = "";
  • seo-quick-images/trunk/readme.txt

    r2864680 r2869423  
    55Requires at least: 4.7
    66Tested up to: 6.1.1
    7 Stable tag: 1.3.2
     7Stable tag: 1.3.3
    88Requires PHP: 7.1
    99License: GPLv2 or later
     
    2727
    2828== Upgrade Notice ==
     29
     30= 1.3.3 =
     31Minor bugfixes
    2932
    3033= 1.3.1 =
  • seo-quick-images/trunk/seo_images.php

    r2861312 r2869423  
    11<?php
    2 define( 'SEO_IMAGES_VERSION', '1.2.4' );
     2define( 'SEO_IMAGES_VERSION', '1.3.3' );
    33/**
    44 * Plugin Name: Seo Quick Images
     
    66 * Author: WP SEO Plugins
    77 * Description: SEO Images is a powerful plugin that helps you add images in your wordpress posts, based on titles. Enhance your content with a lot of images!
    8  * Version: 1.2.4
     8 * Version: 1.3.3
    99 */
    1010
Note: See TracChangeset for help on using the changeset viewer.