Changeset 3381482
- Timestamp:
- 10/20/2025 06:11:10 PM (5 months ago)
- Location:
- ultimate-faq-solution/trunk
- Files:
-
- 5 edited
-
inc/Shortcodes.php (modified) (4 diffs)
-
inc/languages/ultimate-faq-solution.pot (modified) (2 diffs)
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-faq-solution/trunk/inc/Shortcodes.php
r3357524 r3381482 186 186 array( 187 187 'exclude' => '', // Coma seperated number string: 88, 86. 188 'title_hide' => 'no',188 'title_hide' => null, 189 189 'elements_order' => 'asc', 190 'behaviour' => ' toggle',190 'behaviour' => 'default', 191 191 ), 192 192 $atts … … 203 203 ); 204 204 205 $original_title_hide = $title_hide; 206 205 207 // default template. 206 208 $template = 'default'; … … 227 229 } 228 230 229 $designs = apply_filters( 'ufaqsw_simplify_configuration_variables', ufaqsw_get_appearance_id( get_the_ID() ) ); 230 $designs['behaviour'] = $behaviour; 231 if ( null === $title_hide ) { 232 233 $hide_title = get_post_meta( ufaqsw_get_appearance_id( get_the_ID() ), 'ufaqsw_hide_title', true ); 234 235 if ( '' !== $hide_title ) { 236 $title_hide = 'yes'; 237 } 238 } 239 240 $designs = apply_filters( 'ufaqsw_simplify_configuration_variables', ufaqsw_get_appearance_id( get_the_ID() ) ); 241 242 if ( in_array( $behaviour, array( 'toggle', 'accordion' ) ) ) { // phpcs:ignore 243 $designs['behaviour'] = $behaviour; 244 } 231 245 232 246 $template = apply_filters( 'ufaqsw_template_filter', $designs['template'] ); … … 254 268 $all_content .= "<div class='ufaqsw_default_all_single_faq' id='ufaqsw_single_faq_" . esc_attr( get_the_ID() ) . "'>" . $content . '</div>'; 255 269 270 $title_hide = $original_title_hide; 256 271 } 257 272 } -
ultimate-faq-solution/trunk/inc/languages/ultimate-faq-solution.pot
r3380883 r3381482 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Ultimate FAQ Solution 1.7. 8\n"5 "Project-Id-Version: Ultimate FAQ Solution 1.7.9\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/ultimate-faq-solution\n" 8 "POT-Creation-Date: 2025-10- 19 16:26:12+00:00\n"8 "POT-Creation-Date: 2025-10-20 18:00:42+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 271 271 msgstr "" 272 272 273 #: inc/Shortcodes.php:166 inc/Shortcodes.php:2 49 inc/Shortcodes.php:267273 #: inc/Shortcodes.php:166 inc/Shortcodes.php:263 inc/Shortcodes.php:282 274 274 #. translators: %s is the name of the template that was not found. 275 275 msgid "%s Template Not Found" -
ultimate-faq-solution/trunk/init.php
r3380883 r3381482 10 10 * 11 11 * Plugin Name: Ultimate FAQ Solution 12 * Version: 1.7. 812 * Version: 1.7.9 13 13 * Plugin URI: https://www.ultimatefaqsolution.com/ 14 14 * Description: A WordPress plugin to create, organize, and display FAQs with responsive layouts and styles. … … 34 34 * Use `plugin_dir_path` and `plugin_dir_url` only when necessary to reduce overhead. 35 35 */ 36 define( 'UFAQSW_VERSION', '1.7. 8' );36 define( 'UFAQSW_VERSION', '1.7.9' ); 37 37 define( 'UFAQSW_PRFX', 'ufaqsw' ); 38 38 define( 'UFAQSW_BASE', plugin_basename( __FILE__ ) ); -
ultimate-faq-solution/trunk/readme.txt
r3380883 r3381482 5 5 Requires at least: 5.1 6 6 Tested up to: 6.8.3 7 Stable tag: 1.7. 87 Stable tag: 1.7.9 8 8 Requires PHP: 7.4.0 9 9 License: GPLv2 or later … … 182 182 == Changelog == 183 183 184 =1.7.9= 185 * Fixed: Minor issue resolved for directory shortcode functionality. 186 184 187 =1.7.8= 185 188 * New: Gutenberg block preview in editor - now see how your FAQ block will look directly in the WordPress editor. -
ultimate-faq-solution/trunk/vendor/composer/installed.php
r3380883 r3381482 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' c1992943722d2fecf77ad04a7100b4947f5f1f42',6 'reference' => '68afae5a5ec6a5ac5b6df54af67632a17bdc11a9', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 23 23 'pretty_version' => 'dev-main', 24 24 'version' => 'dev-main', 25 'reference' => ' c1992943722d2fecf77ad04a7100b4947f5f1f42',25 'reference' => '68afae5a5ec6a5ac5b6df54af67632a17bdc11a9', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.