Plugin Directory

Changeset 2855741


Ignore:
Timestamp:
01/27/2023 10:13:05 AM (3 years ago)
Author:
seomantis
Message:

bug fixes, search console better integration, more keywords and relevant search queries suggested for each article to optimize

Location:
seo-keywords
Files:
76 added
3 edited

Legend:

Unmodified
Added
Removed
  • seo-keywords/trunk/README.txt

    r2845620 r2855741  
    55Requires at least: 4.7
    66Tested up to: 6.0
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88Requires PHP: 7.1
    99License: GPLv2 or later
     
    2727
    2828== Upgrade Notice ==
     29
     30= 1.1.2 =
     31minor bugfixes
    2932
    3033= 1.0.9 =
  • seo-keywords/trunk/admin/js/seo-keywords-admin.js

    r2845620 r2855741  
    156156            seo_keywords = q_sorted;
    157157
     158            let seo_keywords_index = 0;
    158159            for( let sk in seo_keywords ) {
     160                seo_keywords_index++;
    159161                seo_link_keywords_html += `
    160162                    <tr class="seo_keywords">
     
    171173                </table>`;
    172174
    173             if( seo_keywords.length == 0 ){
     175            if( seo_keywords_index == 0 ){
    174176                // No keywords found
    175177                seo_link_keywords_html += `<div class="notice notice-error is-dismissible"><p>No keywords found ranking for this article yet. try again in a few days</p></div>`;
     
    194196            document.getElementById('seo_keywords').innerHTML = seo_link_keywords_html;
    195197
    196             if( seo_keywords.length == 0 ) {
     198            if( seo_keywords_index == 0 ) {
    197199                setTimeout(function () {
    198200                    jQuery('#seo_keywords_no_keywords_found').modal('show');
  • seo-keywords/trunk/seo-keywords.php

    r2845620 r2855741  
    1717 * Plugin URI:        https://wpseoplugins.org/seo-keywords/
    1818 * Description:       SEO Keywords is a powerful plugin that helps you add keywords in your wordpress posts. Automate keywords building with ease!
    19  * Version:           1.0.9
     19 * Version:           1.1.2
    2020 * Author:            WP SEO Plugins
    2121 * Author URI:        https://wpseoplugins.org/
     
    4242define( 'SEO_KEYWORDS_SITE_URL', ( SEO_KEYWORDS_SERVER_PORT == 80 ? 'http://' : 'https://' ) . SEO_KEYWORDS_SERVER_NAME );
    4343define( 'SEO_KEYWORDS_SERVER_REQUEST_URI', sanitize_text_field( $_SERVER['REQUEST_URI'] ) );
    44 define( 'SEO_KEYWORDS_VERSION', '1.0.9' );
     44define( 'SEO_KEYWORDS_VERSION', '1.1.2' );
    4545
    4646/**
Note: See TracChangeset for help on using the changeset viewer.