Plugin Directory

Changeset 3472950


Ignore:
Timestamp:
03/02/2026 05:27:55 PM (4 weeks ago)
Author:
Rustaurius
Message:

v2.4.7 released and tagged

Location:
ultimate-faqs
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ultimate-faqs/tags/2.4.7/includes/Helper.class.php

    r3453037 r3472950  
    153153
    154154      $post = get_post( intval( $_GET['post'] ) );
    155       $post_type = $post->post_type;
     155      $post_type = $post ? $post->post_type : '';
    156156    }
    157157    else {
     
    250250        )
    251251      ),
     252      'ewd-ufaq-dashboard' => array(
     253        'description' => __( 'This is the dashboard screen. Here you can view a summary of your FAQs as well as get quick access to to help, support and documentation.', 'ultimate-faqs' ),
     254        'tutorials'   => array()
     255      ),
    252256      'ewd-ufaq-settings-ewd-ufaq-basic-tab' => array(
    253257        'description' => __( 'The Basic Settings page lets you customize how FAQs behave and appear on your site, including layout toggles, comment support, permalink options, and display preferences. It also includes access control settings and a custom CSS field to fine-tune the style and functionality of your FAQ section.', 'ultimate-faqs' ),
     
    325329
    326330      $post = get_post( intval( $_GET['post'] ) );
    327       $post_type = $post->post_type;
     331      $post_type = $post ? $post->post_type : '';
    328332    }
    329333    else {
     
    340344    if ( in_array( $post_type, array_keys( $page_details ) ) ) { return $page_details[ $post_type ]; }
    341345
    342     return array( 'description', 'tutorials' => array() );
     346    return array( 'description' => '', 'tutorials' => array() );
    343347  }
    344348}
  • ultimate-faqs/tags/2.4.7/readme.txt

    r3453037 r3472950  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 2.4.6
     6Stable tag: 2.4.7
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    224224== Changelog ==
    225225
     226= 2.4.7 (2026-03-02) =
     227- Fixes for PHP warnings related to the new admin help button.
     228
    226229= 2.4.6 (2026-02-03) =
    227230- New: You can now add a featured image to an FAQ and it will display on the single post page if your theme supports it.
  • ultimate-faqs/tags/2.4.7/ultimate-faqs.php

    r3453037 r3472950  
    44 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-faq/
    55 * Description: Full-featured FAQ and accordion plugin with advanced search, simple UI and easy-to-use Gutenberg blocks and shortcodes.
    6  * Version: 2.4.6
     6 * Version: 2.4.7
    77 * Author: Etoile Web Design
    88 * Author URI: https://www.etoilewebdesign.com/
     
    1212 * Requires PHP: 7.4
    1313 * WC requires at least: 7.1
    14  * WC tested up to: 10.4
     14 * WC tested up to: 10.5
    1515 */
    1616
     
    6464        define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
    6565        define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' );
    66         define( 'EWD_UFAQ_VERSION', '2.4.6' );
     66        define( 'EWD_UFAQ_VERSION', '2.4.7' );
    6767
    6868        define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
  • ultimate-faqs/trunk/includes/Helper.class.php

    r3453037 r3472950  
    153153
    154154      $post = get_post( intval( $_GET['post'] ) );
    155       $post_type = $post->post_type;
     155      $post_type = $post ? $post->post_type : '';
    156156    }
    157157    else {
     
    250250        )
    251251      ),
     252      'ewd-ufaq-dashboard' => array(
     253        'description' => __( 'This is the dashboard screen. Here you can view a summary of your FAQs as well as get quick access to to help, support and documentation.', 'ultimate-faqs' ),
     254        'tutorials'   => array()
     255      ),
    252256      'ewd-ufaq-settings-ewd-ufaq-basic-tab' => array(
    253257        'description' => __( 'The Basic Settings page lets you customize how FAQs behave and appear on your site, including layout toggles, comment support, permalink options, and display preferences. It also includes access control settings and a custom CSS field to fine-tune the style and functionality of your FAQ section.', 'ultimate-faqs' ),
     
    325329
    326330      $post = get_post( intval( $_GET['post'] ) );
    327       $post_type = $post->post_type;
     331      $post_type = $post ? $post->post_type : '';
    328332    }
    329333    else {
     
    340344    if ( in_array( $post_type, array_keys( $page_details ) ) ) { return $page_details[ $post_type ]; }
    341345
    342     return array( 'description', 'tutorials' => array() );
     346    return array( 'description' => '', 'tutorials' => array() );
    343347  }
    344348}
  • ultimate-faqs/trunk/readme.txt

    r3453037 r3472950  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 2.4.6
     6Stable tag: 2.4.7
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    224224== Changelog ==
    225225
     226= 2.4.7 (2026-03-02) =
     227- Fixes for PHP warnings related to the new admin help button.
     228
    226229= 2.4.6 (2026-02-03) =
    227230- New: You can now add a featured image to an FAQ and it will display on the single post page if your theme supports it.
  • ultimate-faqs/trunk/ultimate-faqs.php

    r3453037 r3472950  
    44 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-faq/
    55 * Description: Full-featured FAQ and accordion plugin with advanced search, simple UI and easy-to-use Gutenberg blocks and shortcodes.
    6  * Version: 2.4.6
     6 * Version: 2.4.7
    77 * Author: Etoile Web Design
    88 * Author URI: https://www.etoilewebdesign.com/
     
    1212 * Requires PHP: 7.4
    1313 * WC requires at least: 7.1
    14  * WC tested up to: 10.4
     14 * WC tested up to: 10.5
    1515 */
    1616
     
    6464        define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
    6565        define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' );
    66         define( 'EWD_UFAQ_VERSION', '2.4.6' );
     66        define( 'EWD_UFAQ_VERSION', '2.4.7' );
    6767
    6868        define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
Note: See TracChangeset for help on using the changeset viewer.