Plugin Directory

Changeset 2894241


Ignore:
Timestamp:
04/05/2023 10:17:11 AM (3 years ago)
Author:
seomantis
Message:

bug fixes for show image author in gutemberg

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

Legend:

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

    r2869423 r2894241  
    934934                $response_html[$i]['heading_title'] = trim( $heading_val[$i] );
    935935                $response_html[$i]['heading_id'] = trim( $heading_id_ar[$i] );
    936                 $response_html[$i]['heading_image'] = do_shortcode( $IMG_TAG );
     936                //$response_html[$i]['heading_image'] = do_shortcode( $IMG_TAG );
     937                $response_html[$i]['heading_image'] = $IMG_TAG;
    937938            }
    938939            $i++;
  • seo-quick-images/trunk/assets/js/seo_images_ajax_script.js

    r2869423 r2894241  
    846846              const rootClientId = jQuery('.block-editor-writing-flow').find("#"+h_id).data('block');
    847847              const blocks = wp.data.select('core/editor').getBlocks();
    848               for( let i = 1; i < blocks.length; i++ ) {
     848              let i;
     849              for( i = 0; i < blocks.length; i++ ) {
     850                console.log( 'i', i );
    849851                if( blocks[i].clientId == rootClientId ) {
    850852                  break;
  • seo-quick-images/trunk/readme.txt

    r2869423 r2894241  
    55Requires at least: 4.7
    66Tested up to: 6.1.1
    7 Stable tag: 1.3.3
     7Stable tag: 1.3.5
    88Requires PHP: 7.1
    99License: GPLv2 or later
     
    2727
    2828== Upgrade Notice ==
     29
     30= 1.3.5 =
     31Fixes on Gutenbergg
     32
     33= 1.3.4 =
     34Fixes on show author
    2935
    3036= 1.3.3 =
  • seo-quick-images/trunk/seo_images.php

    r2869423 r2894241  
    11<?php
    2 define( 'SEO_IMAGES_VERSION', '1.3.3' );
     2define( 'SEO_IMAGES_VERSION', '1.3.5' );
    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.3.3
     8 * Version: 1.3.5
    99 */
    1010
Note: See TracChangeset for help on using the changeset viewer.