Plugin Directory

Changeset 3322838


Ignore:
Timestamp:
07/05/2025 09:40:06 PM (9 months ago)
Author:
braintum
Message:

Preparing for 1.6.9 release

Location:
ultimate-faq-solution/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ultimate-faq-solution/trunk/inc/Assets.php

    r3315752 r3322838  
    103103        }
    104104
     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
    105122        // Check if FAQ is present in widgets.
    106123        if ( ! $enqueue && $this->is_faq_present_in_widgets() ) {
  • ultimate-faq-solution/trunk/inc/languages/ultimate-faq-solution.pot

    r3322418 r3322838  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ultimate FAQ Solution 1.6.8\n"
     5"Project-Id-Version: Ultimate FAQ Solution 1.6.9\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/ultimate-faq-solution\n"
    8 "POT-Creation-Date: 2025-07-04 16:02:38+00:00\n"
     8"POT-Creation-Date: 2025-07-05 21:28:30+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
  • ultimate-faq-solution/trunk/init.php

    r3322418 r3322838  
    1010 *
    1111 * Plugin Name: Ultimate FAQ Solution
    12  * Version: 1.6.8
     12 * Version: 1.6.9
    1313 * Plugin URI: https://www.braintum.com/ultimate-faq-solution/
    1414 * Description: A WordPress plugin to create, organize, and display FAQs with responsive layouts and styles.
     
    3434* Use `plugin_dir_path` and `plugin_dir_url` only when necessary to reduce overhead.
    3535*/
    36 define( 'UFAQSW_VERSION', '1.6.8' );
     36define( 'UFAQSW_VERSION', '1.6.9' );
    3737define( 'UFAQSW_PRFX', 'ufaqsw' );
    3838define( 'UFAQSW_BASE', plugin_basename( __FILE__ ) );
  • ultimate-faq-solution/trunk/readme.txt

    r3322418 r3322838  
    11=== Ultimate FAQ Solution ===
    2 Contributors: braintum 
     2Contributors: braintum
    33Donate link: https://www.solrengine.com/ 
    44Tags: faq-directory, accordion, knowledgebase, product-faq, ai 
    55Requires at least: 5.1 
    66Tested up to: 6.8.1 
    7 Stable tag: 1.6.8
     7Stable tag: 1.6.9
    88Requires PHP: 7.4.0 
    99License: GPLv2 or later 
     
    136136== Changelog ==
    137137
     138=1.6.9=
     139* 🛒 Fixed broken FAQ styles on WooCommerce product pages for a more consistent appearance.
     140
    138141=1.6.8=
    139142* Fatal error fixed.
  • ultimate-faq-solution/trunk/vendor/composer/installed.php

    r3322418 r3322838  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '9e9566291d7851fdbab22d165a8f988271235635',
     6        'reference' => '34f9cde8e1bd4f50656ffdf574b5022001ea5ab9',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-main',
    2424            'version' => 'dev-main',
    25             'reference' => '9e9566291d7851fdbab22d165a8f988271235635',
     25            'reference' => '34f9cde8e1bd4f50656ffdf574b5022001ea5ab9',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.