Changeset 3322838
- Timestamp:
- 07/05/2025 09:40:06 PM (9 months ago)
- Location:
- ultimate-faq-solution/trunk
- Files:
-
- 5 edited
-
inc/Assets.php (modified) (1 diff)
-
inc/languages/ultimate-faq-solution.pot (modified) (1 diff)
-
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/Assets.php
r3315752 r3322838 103 103 } 104 104 105 // Check if WooCommerce is active and the FAQ tab is enabled for products. 106 if ( ufaqsw_is_woocommerce_active() && is_product() ) { 107 108 // Check if FAQ is present in WooCommerce product pages. 109 $is_enable = get_post_meta( $post->ID, '_ufaqsw_enable_faq_tab', true ); 110 111 // Global option. 112 if ( get_option( 'ufaqsw_enable_global_faq' ) === 'on' ) { 113 $enqueue = true; 114 } 115 116 // Product specific. 117 if ( 'yes' === $is_enable ) { 118 $enqueue = true; 119 } 120 } 121 105 122 // Check if FAQ is present in widgets. 106 123 if ( ! $enqueue && $this->is_faq_present_in_widgets() ) { -
ultimate-faq-solution/trunk/inc/languages/ultimate-faq-solution.pot
r3322418 r3322838 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Ultimate FAQ Solution 1.6. 8\n"5 "Project-Id-Version: Ultimate FAQ Solution 1.6.9\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/ultimate-faq-solution\n" 8 "POT-Creation-Date: 2025-07-0 4 16:02:38+00:00\n"8 "POT-Creation-Date: 2025-07-05 21:28:30+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
ultimate-faq-solution/trunk/init.php
r3322418 r3322838 10 10 * 11 11 * Plugin Name: Ultimate FAQ Solution 12 * Version: 1.6. 812 * Version: 1.6.9 13 13 * Plugin URI: https://www.braintum.com/ultimate-faq-solution/ 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.6. 8' );36 define( 'UFAQSW_VERSION', '1.6.9' ); 37 37 define( 'UFAQSW_PRFX', 'ufaqsw' ); 38 38 define( 'UFAQSW_BASE', plugin_basename( __FILE__ ) ); -
ultimate-faq-solution/trunk/readme.txt
r3322418 r3322838 1 1 === Ultimate FAQ Solution === 2 Contributors: braintum 2 Contributors: braintum 3 3 Donate link: https://www.solrengine.com/ 4 4 Tags: faq-directory, accordion, knowledgebase, product-faq, ai 5 5 Requires at least: 5.1 6 6 Tested up to: 6.8.1 7 Stable tag: 1.6. 87 Stable tag: 1.6.9 8 8 Requires PHP: 7.4.0 9 9 License: GPLv2 or later … … 136 136 == Changelog == 137 137 138 =1.6.9= 139 * 🛒 Fixed broken FAQ styles on WooCommerce product pages for a more consistent appearance. 140 138 141 =1.6.8= 139 142 * Fatal error fixed. -
ultimate-faq-solution/trunk/vendor/composer/installed.php
r3322418 r3322838 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 9e9566291d7851fdbab22d165a8f988271235635',6 'reference' => '34f9cde8e1bd4f50656ffdf574b5022001ea5ab9', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 23 23 'pretty_version' => 'dev-main', 24 24 'version' => 'dev-main', 25 'reference' => ' 9e9566291d7851fdbab22d165a8f988271235635',25 'reference' => '34f9cde8e1bd4f50656ffdf574b5022001ea5ab9', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.