Plugin Directory

Changeset 2846830


Ignore:
Timestamp:
01/11/2023 02:36:19 PM (3 years ago)
Author:
showcaseidx
Message:

Version 3.2.3

Location:
showcase-idx/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • showcase-idx/trunk/3/page.php

    r2415228 r2846830  
    148148    // apply these to whatever page we generate
    149149    add_filter( 'posts_pre_query', function ( $posts, WP_Query $query ) use ( $page ) {
    150       if ( $query->is_main_query() ) return showcaseidx_setup_query( $query, $page );
     150      if ( $query->is_main_query() )
     151      {
     152        add_filter( 'template_include', function( $template ){
     153          status_header( 200 );
     154          return get_page_template();
     155        });
     156        return showcaseidx_setup_query( $query, $page );
     157      }
    151158    }, 10, 2 );
    152159
  • showcase-idx/trunk/readme.txt

    r2800689 r2846830  
    33Tags: real estate search, idx search, idx, showcase idx, MLS
    44Requires at least: 4.6
    5 Tested up to: 6.0.2
     5Tested up to: 6.1.1
    66Requires PHP: 5.3.0
    7 Stable tag: 3.2.2
     7Stable tag: 3.2.3
    88
    99The ideal plugin for adding MLS search to your website, portal-quality search, lead generation, and SEO that works.
     
    141141
    142142== Changelog ==
     143
     144=3.2.3 =
     145*New Map Display - Take advantage of Showcase IDX’s new side-by-side map display option on all Premium Accounts!
     146*Wordpress 6 made changes to how plugins can build custom pages. It introduced a new and better way, however, it caused our existing solution to throw a 404. While listing pages loaded without issue on sites, there was an underlying 404 and affecting Google results. As a temporary fix, we force a 200 status when we render the search page.
     147*Added compatibility with WordPress 6.1.1.
    143148
    144149= 3.2.2 =
  • showcase-idx/trunk/showcaseidx.php

    r2800689 r2846830  
    66 * Author: Showcase IDX
    77 * Author URI: https://showcaseidx.com/
    8  * Version: 3.2.2
     8 * Version: 3.2.3
    99 */
    1010
Note: See TracChangeset for help on using the changeset viewer.