Title: GoodVine's Replies | WordPress.org

---

# GoodVine

  [  ](https://wordpress.org/support/users/goodvine/)

 *   [Profile](https://wordpress.org/support/users/goodvine/)
 *   [Topics Started](https://wordpress.org/support/users/goodvine/topics/)
 *   [Replies Created](https://wordpress.org/support/users/goodvine/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/goodvine/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/goodvine/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/goodvine/engagements/)
 *   [Favorites](https://wordpress.org/support/users/goodvine/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Minified React error when disabled rank_math_metabox](https://wordpress.org/support/topic/minified-react-error-when-disabled-rank_math_metabox/)
 *  Thread Starter [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/minified-react-error-when-disabled-rank_math_metabox/#post-13901598)
 * Hello Rank Math.
 * I solved the problem with css.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Fotorama] Великолепный плагин](https://wordpress.org/support/topic/%d0%92%d0%b5%d0%bb%d0%b8%d0%ba%d0%be%d0%bb%d0%b5%d0%bf%d0%bd%d1%8b%d0%b9-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd-5/)
 *  Thread Starter [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/%d0%92%d0%b5%d0%bb%d0%b8%d0%ba%d0%be%d0%bb%d0%b5%d0%bf%d0%bd%d1%8b%d0%b9-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd-5/#post-8058001)
 * Был не прав. Есть такая возможность fit=”scaledown”. Я в восторге от работы плагина.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Ajax Product Filter] Formating price with thousand separator](https://wordpress.org/support/topic/formating-price-with-thousand-separator-1/)
 *  Thread Starter [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/formating-price-with-thousand-separator-1/#post-6613408)
 * Hi,
    I means Product Filter See image [http://www.screencast.com/t/V9KGidwij](http://www.screencast.com/t/V9KGidwij)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Product Filters] Formating price with Thousand Separator](https://wordpress.org/support/topic/formating-price-with-thousand-separator/)
 *  Thread Starter [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/formating-price-with-thousand-separator/#post-6611226)
 * Resolved for number of decimals. At widget.min.js set toFixed(0) instead toFixed(
   2).
 * For Thousand Separator I hav’t idea
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] PHP Warning](https://wordpress.org/support/topic/php-warning-66/)
 *  [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/php-warning-66/#post-6601162)
 * **gleenk** See my post [https://wordpress.org/support/topic/error-with-wc-24x?replies=3#post-7471055](https://wordpress.org/support/topic/error-with-wc-24x?replies=3#post-7471055)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Compare products by custom fields](https://wordpress.org/support/topic/compare-products-by-custom-fields/)
 *  [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/compare-products-by-custom-fields/#post-5517483)
 * There is solution for yith-woocommerce-compare.2.0.0 and woocommerce.2.3.13 (
   wordpress 4.3.1)
 * In class.yith-woocompare-helper.php at public static function standard_fields
   add
 *     ```
       'character' => __( 'Characters', 'yith-wcmp' ),
       ```
   
 * In class.yith-woocompare-frontend.php at public function get_products_list add
 *     ```
       case 'character':
       $chars = get_post_meta($product_id, 'characteristics' );
       $product->fields[$field] = $chars[0];
       break;
       ```
   
 * after
 *     ```
       case 'description':
       $product->fields[$field] = apply_filters( 'woocommerce_short_description', $product->post->post_excerpt );
       break;
       ```
   
 * where characteristics is My Custom Field.
 * This don’t work on older version of yith-woocommerce-compare
    This don’t work
   on woocommerce2.4.x
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Customize Compare Table](https://wordpress.org/support/topic/customize-compare-table/)
 *  [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/customize-compare-table/#post-6477430)
 * There is solution for yith-woocommerce-compare.2.0.0 and woocommerce.2.3.13 (
   wordpress 4.3.1)
 * In class.yith-woocompare-helper.php at public static function standard_fields
   add
 *     ```
       'character' => __( 'Characters', 'yith-wcmp' ),
       ```
   
 * In class.yith-woocompare-frontend.php at public function get_products_list add
 *     ```
       case 'character':
       $chars = get_post_meta($product_id, 'characteristics' );
       $product->fields[$field] = $chars[0];
       break;
       ```
   
 * after
 *     ```
       case 'description':
       $product->fields[$field] = apply_filters( 'woocommerce_short_description', $product->post->post_excerpt );
       break;
       ```
   
 * where characteristics is My Custom Field.
 * This don’t work on older version of yith-woocommerce-compare
    This don’t work
   on woocommerce2.4.x
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Error with WC 2.4.x](https://wordpress.org/support/topic/error-with-wc-24x/)
 *  Thread Starter [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/error-with-wc-24x/#post-6570951)
 * I used yith-woocommerce-compare 2.0.0. and 2.0.3. – the same error.
    After save
   changes in plugin fields yith_woocompare_fields_attrs and yith_woocompare_image_size
   has value Array. If I manually change it to works value ( ‘yith_woocompare_image_size’,‘
   a:2:{s:5:”width”;s:3:”220″;s:6:”height”;s:3:”154″;}’….) compare works. As long
   as I press save changes…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Compare products showing in an iframe](https://wordpress.org/support/topic/compare-products-showing-in-an-iframe/)
 *  [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/compare-products-showing-in-an-iframe/#post-6388045)
 * _flow, Thanks. It works.
    But some script errors I still view in console (Failed
   to load resource: undefined)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Compare products showing in an iframe](https://wordpress.org/support/topic/compare-products-showing-in-an-iframe/)
 *  [GoodVine](https://wordpress.org/support/users/goodvine/)
 * (@goodvine)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/compare-products-showing-in-an-iframe/#post-6388006)
 * Yes, I have the same bug on websites and demo in different browers.
    In console
   of chrome i see: Failed to load resource: the server responded with a status 
   of 404 (Not Found) [http://preview.yithemes.com/room09/shop/africa-style/undefined](http://preview.yithemes.com/room09/shop/africa-style/undefined)
   or GET [http://preview.yithemes.com/room09/undefined](http://preview.yithemes.com/room09/undefined)
   404 (Not Found) in jquery.js This _undefined_ error i see on all sites

Viewing 10 replies - 1 through 10 (of 10 total)