Changeset 3472950
- Timestamp:
- 03/02/2026 05:27:55 PM (4 weeks ago)
- Location:
- ultimate-faqs
- Files:
-
- 6 edited
- 1 copied
-
tags/2.4.7 (copied) (copied from ultimate-faqs/trunk)
-
tags/2.4.7/includes/Helper.class.php (modified) (4 diffs)
-
tags/2.4.7/readme.txt (modified) (2 diffs)
-
tags/2.4.7/ultimate-faqs.php (modified) (3 diffs)
-
trunk/includes/Helper.class.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ultimate-faqs.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-faqs/tags/2.4.7/includes/Helper.class.php
r3453037 r3472950 153 153 154 154 $post = get_post( intval( $_GET['post'] ) ); 155 $post_type = $post ->post_type;155 $post_type = $post ? $post->post_type : ''; 156 156 } 157 157 else { … … 250 250 ) 251 251 ), 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 ), 252 256 'ewd-ufaq-settings-ewd-ufaq-basic-tab' => array( 253 257 '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' ), … … 325 329 326 330 $post = get_post( intval( $_GET['post'] ) ); 327 $post_type = $post ->post_type;331 $post_type = $post ? $post->post_type : ''; 328 332 } 329 333 else { … … 340 344 if ( in_array( $post_type, array_keys( $page_details ) ) ) { return $page_details[ $post_type ]; } 341 345 342 return array( 'description' , 'tutorials' => array() );346 return array( 'description' => '', 'tutorials' => array() ); 343 347 } 344 348 } -
ultimate-faqs/tags/2.4.7/readme.txt
r3453037 r3472950 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 2.4. 66 Stable tag: 2.4.7 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 224 224 == Changelog == 225 225 226 = 2.4.7 (2026-03-02) = 227 - Fixes for PHP warnings related to the new admin help button. 228 226 229 = 2.4.6 (2026-02-03) = 227 230 - 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 4 4 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-faq/ 5 5 * Description: Full-featured FAQ and accordion plugin with advanced search, simple UI and easy-to-use Gutenberg blocks and shortcodes. 6 * Version: 2.4. 66 * Version: 2.4.7 7 7 * Author: Etoile Web Design 8 8 * Author URI: https://www.etoilewebdesign.com/ … … 12 12 * Requires PHP: 7.4 13 13 * WC requires at least: 7.1 14 * WC tested up to: 10. 414 * WC tested up to: 10.5 15 15 */ 16 16 … … 64 64 define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) ); 65 65 define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' ); 66 define( 'EWD_UFAQ_VERSION', '2.4. 6' );66 define( 'EWD_UFAQ_VERSION', '2.4.7' ); 67 67 68 68 define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' ); -
ultimate-faqs/trunk/includes/Helper.class.php
r3453037 r3472950 153 153 154 154 $post = get_post( intval( $_GET['post'] ) ); 155 $post_type = $post ->post_type;155 $post_type = $post ? $post->post_type : ''; 156 156 } 157 157 else { … … 250 250 ) 251 251 ), 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 ), 252 256 'ewd-ufaq-settings-ewd-ufaq-basic-tab' => array( 253 257 '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' ), … … 325 329 326 330 $post = get_post( intval( $_GET['post'] ) ); 327 $post_type = $post ->post_type;331 $post_type = $post ? $post->post_type : ''; 328 332 } 329 333 else { … … 340 344 if ( in_array( $post_type, array_keys( $page_details ) ) ) { return $page_details[ $post_type ]; } 341 345 342 return array( 'description' , 'tutorials' => array() );346 return array( 'description' => '', 'tutorials' => array() ); 343 347 } 344 348 } -
ultimate-faqs/trunk/readme.txt
r3453037 r3472950 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 2.4. 66 Stable tag: 2.4.7 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 224 224 == Changelog == 225 225 226 = 2.4.7 (2026-03-02) = 227 - Fixes for PHP warnings related to the new admin help button. 228 226 229 = 2.4.6 (2026-02-03) = 227 230 - 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 4 4 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-faq/ 5 5 * Description: Full-featured FAQ and accordion plugin with advanced search, simple UI and easy-to-use Gutenberg blocks and shortcodes. 6 * Version: 2.4. 66 * Version: 2.4.7 7 7 * Author: Etoile Web Design 8 8 * Author URI: https://www.etoilewebdesign.com/ … … 12 12 * Requires PHP: 7.4 13 13 * WC requires at least: 7.1 14 * WC tested up to: 10. 414 * WC tested up to: 10.5 15 15 */ 16 16 … … 64 64 define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) ); 65 65 define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' ); 66 define( 'EWD_UFAQ_VERSION', '2.4. 6' );66 define( 'EWD_UFAQ_VERSION', '2.4.7' ); 67 67 68 68 define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
Note: See TracChangeset
for help on using the changeset viewer.