• Resolved Yohan Seals

    (@johnhooli)


    /**
    * Plugin Name: WooCommerce Composite Products
    * Plugin URI: https://woocommerce.com/products/composite-products/
    * Description: Use this snippet to automatically select the remaining available variation in a component
    * Version: 1.0
    * Author: WooCommerce
    * Author URI: https://woocommerce.com/
    * Developer: Manos Psychogyiopoulos
    *
    * Requires at least: 4.1
    * Tested up to: 5.3
    *
    * Copyright: ? 2021 Automattic.
    * License: GNU General Public License v3.0
    * License URI: https://www.gnu.org/licenses/gpl-3.0.html
    */
    add_filter( ‘woocommerce_composite_component_classes’, ‘wc_cp_autoselect_attributes’, 10, 3 );
    function wc_cp_autoselect_attributes( $classes, $component_id, $composite ) {

    $classes[] = ‘autoselect_attributes’;

    return $classes;
    }

    Doesn’t select the remaining available variation in a component.

Viewing 1 replies (of 1 total)
  • Roxy

    (@roxannestoltz)

    Hi @johnhooli

    Thanks for reaching out!

    I understand that you are experiencing issues with a snippet not working for the WooCommerce Composite Products plugin.

    Kindly contact WooCommerce.com > My Account > Support for support with this premium plugin. Please create the ticket using the same account that you purchased the extension with.

    Note: Per the Forum Guidelines paid extensions are not meant to be supported on this public forum, but through official support channels instead.

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Not Working Snip: Auto select the remaining available variation in a component’ is closed to new replies.