• DeefK

    (@deefk)


    Hi

    I have different machines and cleaning products in my woocommerce.

    Now you can imagine that you cant compare a cleaning product with a high pressure machine.

    However when i am comparing multiple cleaning products all fields are showing including the properties of the high pressure machine. So all these fields are empty and a waste of space.

    How can i hide i field when no value is entered?

    I found this but it does not work:
    protected function _vars() {
    $vars = array(
    ‘products’ => $this->get_products_list(),
    ‘fields’ => $this->fields(),
    ‘repeat_price’ => get_option( ‘yith_woocompare_price_end’ ),
    ‘repeat_add_to_cart’ => get_option( ‘yith_woocompare_add_to_cart_end’ ),
    );

    // Hide empty fields
    $fieldsExists = array();
    foreach($vars[‘fields’] as $field => $title) {
    foreach($vars[‘products’] as $product) {
    if($product->fields[$field]) {
    $fieldsExists[$field] = $title;
    }
    }
    }
    $vars[‘fields’] = $fieldsExists;

    return $vars;
    }

    https://www.ads-software.com/plugins/yith-woocommerce-compare/

Viewing 5 replies - 1 through 5 (of 5 total)
  • I too think the compare table should only show attributes that products have. I have the problem when adding same products, but then on the comparison table i see attributes that those products don’t have, and the attributes have nothing to do with those products ??

    Can someone help?

    i looking for solution too.

    I would like a solution for this too. Seems like it should be so simple.

    I have a solution for this, It’s not very clean but it does the job.

    Copy yith-woocommerce-compare/templates/compare.php to your-theme-folder/woocommerce/, edit before the line 116 and after line 143.

    Before 116 ( before <tr class="<?php echo $field ?>"> ) insert this

    <?php
    $show_field = 0;
    foreach( $products as $i => $product ) :
       if( ! empty( $product->fields[$field] ) ) {
           $show_field = 1;
        }
    endforeach;
    
    if( $show_field == 1 ) : ?>

    And dont forget to put this line to close if condition after </tr> ( it’s formerly at line 143 )

    <?php endif; ?>

    If you want more colors version, check this: https://dinhtung.info/hide-empty-fields-when-compare-products-in-woocommerce/

    Happy coding!

    tommyqr

    (@tommyqr)

    I tried the above code and it did not work for me.

    Does the above code still work?

    Thank you for some ideas.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hide field if no value’ is closed to new replies.