• How to index the content of the tab “VEHICLE FITMENT” in the product search module (by keywords) ?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    It is already indexed in its own database table “wp_ymm”.

    There is a modification to make it possible to search for products by typing make and model into the search field:
    “YMM in products text search”
    http://hottons.com/ymm_modifications_other

    Stanislav

    Thread Starter imedz

    (@imedz)

    Hello

    Thanks I understand
    Can you update all of your plugins to the following configurations:

    WordPress version 6.1.1
    Active theme: Woodmart Child (version 1.0.0)
    PHP version 8.1.13

    Because I often get the following errors:
    
    /home/…/public_html/wp-content/plugins/ymm-search/ymm-search.php. Error message: Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given in /home/.../public_html/wp-content/plugins/ymm-search/ymm-search.php :284
    Stack trace:
    
    0 /home/…/public_html/wp-content/plugins/ymm-search/ymm-search.php(284): array_search()
    
    1 /home/…/public_html/wp-includes/class-wp-hook.php(308): ymm_widget_disable_update()
    
    2 /home/…/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    
    3 /home/…/public_html/wp-includes/class-wp-http.php(233): apply_filters()
    
    4 /home/…/public_html/wp-includes/class-wp-http.php(615): WP_Http->request()
    
    5 /home/…/public_html/wp-includes/http.php(179): WP_Http->post()
    
    6 /home/…/public_html/wp-content/plugins/tier-pricing-table-premium/freemius/includes/class-freemius.php(25022): wp_remote_post()
    
    7 /home/…/public_html/wp-content/plugins/tier-pricing-table-premium/freemius/includes/class-fs-plugin-updater.php(923): Freemius::safe_remote_post()
    
    8 /home/…/public_html/wp-content/plugins/tier-pricing-table-premium/freemius/includes/class-fs-plugin-updater.php(617): FS_Plugin_Updater->fetch_wp_org_module_translation_updates()
    
    9 /home/…/public_html/wp-includes/class-wp-hook.php(310): FS_Plugin_Updater->pre_set_site_transient_update_plugins_filter()
    
    10 /home/…/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    
    11 /home/…/public_html/wp-includes/option.php(2018): apply_filters()
    
    12 /home/…/public_html/wp-includes/update.php(391): set_site_transient()
    
    13 /home/…/public_html/wp-includes/update.php(1020): wp_update_plugins()
    
    14 /home/…/public_html/wp-includes/class-wp-hook.php(308): _maybe_update_plugins()
    
    15 /home/…/public_html/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters()
    
    16 /home/…/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
    
    17 /home/…/public_html/wp-admin/admin.php(175): do_action()
    
    18 /home/…/public_html/wp-admin/index.php(10): require_once('/home/…/…')
    
    19 {hand}
    
    thrown

    Knowing that I installed the “Make Model Year Engine”

    Thank You

    • This reply was modified 1 year, 6 months ago by imedz.
    • This reply was modified 1 year, 6 months ago by imedz.
    • This reply was modified 1 year, 6 months ago by imedz.
    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    >WordPress version 6.1.1

    Should work

    > Woodmart Child

    I have not checked it. It is possible to adjust the CSS styles to make it fit your theme.

    > PHP version 8.1.13

    Wordpress 6.1 has only beta support for PHP 8.0
    https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/

    So this plugin officially does not support PHP 8.1 (I have not checked if there are any errors)

    If you need it for PHP 8.1 it is possible to adjust the code to make it work.

    Stanislav

    Thread Starter imedz

    (@imedz)

    Hello

    We recommend that you update all of your plugins, as they have not been updated in the past 9 months. Please

    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    >PHP 8.1
    >I often get the following errors:
    > Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given in
    > wp-content/plugins/ymm-search/ymm-search.php :284

    Try to replace the line:

    
      unset( $plugins['active'][array_search($my_plugin, $plugins['active'] )] );
    

    with:

    
      unset( $plugins['active'][array_search($my_plugin, (array) $plugins['active'] )] );
    

    in the file:
    wp-content/plugins/ymm-search/ymm-search.php

    > We recommend that you update all of your plugins
    This is a FREE plugin. So the updates and corrections are done in my spare time.

    The modifications are for developers. Most of them contain just an example of how to do it. They are not a ready to use software with updates and support.

    The idea of this plugin is to keep the base version unchanged as long as possible. Because many modifications depends on the base version.

    As for now it is still compatible with the latest WordPress version 6.1.1

    Stanislav

    Thread Starter imedz

    (@imedz)

    Thank you for your impressive responsiveness.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Indexing the content of VEHICLE FITMENT tab’ is closed to new replies.