Title: greencode's Replies - page 5 | WordPress.org

---

# greencode

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 61 through 75 (of 536 total)

[←](https://wordpress.org/support/users/greencode/replies/page/4/?output_format=md)
[1](https://wordpress.org/support/users/greencode/replies/?output_format=md) [2](https://wordpress.org/support/users/greencode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/greencode/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/greencode/replies/page/4/?output_format=md)
5 [6](https://wordpress.org/support/users/greencode/replies/page/6/?output_format=md)…
[34](https://wordpress.org/support/users/greencode/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/greencode/replies/page/35/?output_format=md)
[36](https://wordpress.org/support/users/greencode/replies/page/36/?output_format=md)
[→](https://wordpress.org/support/users/greencode/replies/page/6/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Video Gallery for Woocommerce] Hide thumbnails when none exist?](https://wordpress.org/support/topic/hide-thumbnails-when-none-exist/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/hide-thumbnails-when-none-exist/#post-16407066)
 * In fact, it looks like this was broken since v1.4.0.5
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Video Gallery for Woocommerce] Hide thumbnails when none exist?](https://wordpress.org/support/topic/hide-thumbnails-when-none-exist/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/hide-thumbnails-when-none-exist/#post-16407048)
 * Hi. This seems to have been broken in the latest version. v1.4.0.2 works correctly
   whereby if no thumbnails exist then only the main feature image appears. In v1.4.1.0
   even if no thumbnails are added to the product, it still shows the feature image
   as a thumbail?!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Payments] Failed to process the payment](https://wordpress.org/support/topic/failed-to-process-the-payment-8/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/failed-to-process-the-payment-8/#post-16362107)
 * Hi [@joostvandevijver](https://wordpress.org/support/users/joostvandevijver/).
   I’ve generated the error log and have sent it via your website along with the
   system status report. Thanks, Alan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Payments] Failed to process the payment](https://wordpress.org/support/topic/failed-to-process-the-payment-8/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/failed-to-process-the-payment-8/#post-16361970)
 * Hi [@joostvandevijver](https://wordpress.org/support/users/joostvandevijver/)
   thanks for replying once again. The issue is there is no Transaction ID as it
   doesn’t get that far. I click the Pay Now and then error – mentioned above – 
   appears on the website and not on any PayPal screens.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Video Gallery for Woocommerce] PHP Warning: Trying to access array offset on value of type null](https://wordpress.org/support/topic/php-warning-trying-to-access-array-offset-on-value-of-type-null-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/php-warning-trying-to-access-array-offset-on-value-of-type-null-2/#post-16334600)
 * Amazing. Thanks so much for resolving this issue [@nikhilgadhiya](https://wordpress.org/support/users/nikhilgadhiya/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] woocommerce_add_order_item_meta is deprecated](https://wordpress.org/support/topic/woocommerce_add_order_item_meta-is-deprecated-3/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/woocommerce_add_order_item_meta-is-deprecated-3/#post-16271508)
 * [@fermarichal](https://wordpress.org/support/users/fermarichal/) Thanks for the
   reply. I have tried the following and neither works:
 *     ```
       add_action ('woocommerce_new_order_item', 'add_item_meta', 10, 2);
       function add_item_meta( $item_id, $values ) {
          woocommerce_add_order_item_meta( $item_id, 'Flavours', $values['_goodlen'] );
       }
       ```
   
 *     ```
       add_action ('woocommerce_new_order_item', 'add_item_meta', 10, 2);
       function add_item_meta( $item_id, $values ) {
          if ( empty( $values['_goodlen'] ) ) {
       		return;
       	}
       	woocommerce_add_order_item_meta( $item_id, 'Flavours', $values['_goodlen'] );
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Any news?](https://wordpress.org/support/topic/any-news-4/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/any-news-4/#post-16271353)
 * [@eherman24](https://wordpress.org/support/users/eherman24/) Appreciate that.
   Looking forward to the update. Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/3/#post-16265137)
 * [@seanomattic](https://wordpress.org/support/users/seanomattic/) [@kaderibrahim](https://wordpress.org/support/users/kaderibrahim/)
   Just so you know, the code fix did not work as that did not allow any product
   to be updated! However, I’ve figured out what the issue was. Basically, it wasn’t
   connected to Facebook. Once connected everything works okay.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16252361)
 * AH, sorry. Here you go, actually with the correct site theme as I’ve no idea 
   where the funcions file is in the latest TwentyTwenty theme!
 * [https://ibb.co/YZMg3FP](https://ibb.co/YZMg3FP)
    [https://ibb.co/m4ZTpPK](https://ibb.co/m4ZTpPK)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16252339)
 * Yes, I’ve added the debug code.
 * I’ve reverted to a standard WordPress theme and only WooCommerce and Facebook
   plugins are active.
 * [https://ibb.co/rHqrMsb](https://ibb.co/rHqrMsb)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16252230)
 * [@kaderibrahim](https://wordpress.org/support/users/kaderibrahim/) Appreciate
   your help with this. Here’s the screenshot – hoping that’s what you require [https://ibb.co/nwxzgyZ](https://ibb.co/nwxzgyZ)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16252033)
 * [@kaderibrahim](https://wordpress.org/support/users/kaderibrahim/) Still the 
   same issue and no errors are getting generated other than this when I click the
   Update button
 *     ```
       wp-util.min.js?ver=9ae1c6c3027916513f1e30d179c0c6bd:2 Uncaught Error: Template not found: #tmpl-facebook-for-woocommerce-modal
           at wp-util.min.js?ver=9ae1c6c3027916513f1e30d179c0c6bd:2:371
           at n.render (backbone-modal.min.js?ver=7.1.0:1:968)
           at Jn (underscore.min.js?ver=1.13.4:2:7441)
           at n.<anonymous> (underscore.min.js?ver=1.13.4:2:7755)
           at n.render (underscore.min.js?ver=1.13.4:2:1065)
           at n.initialize (backbone-modal.min.js?ver=7.1.0:1:839)
           at h.View (backbone.min.js?ver=1.4.1:2:14648)
           at new n (backbone.min.js?ver=1.4.1:2:23485)
           at Object.success (products-admin.js?ver=3.0.5:1:7965)
           at c (jquery.min.js?ver=3.6.1:2:28327)
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16251637)
 * [@kaderibrahim](https://wordpress.org/support/users/kaderibrahim/) I’ve added
   that to wp-config. Where do I see what the error is?! There’s nothing in the 
   error logs for this specific time.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16251526)
 * [@kaderibrahim](https://wordpress.org/support/users/kaderibrahim/) I’ve just 
   deactivated all plugins except Facebook and WooCommerce and reverted to a standard
   WordPress theme. Still the issue exists
 *     ```
       load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:148 Uncaught Error: Template not found: #tmpl-facebook-for-woocommerce-modal
           at load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:148:371
           at n.render (backbone-modal.min.js?ver=7.1.0:1:968)
           at Jn (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:144:7441)
           at n.<anonymous> (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:144:7755)
           at n.render (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:144:1065)
           at n.initialize (backbone-modal.min.js?ver=7.1.0:1:839)
           at h.View (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:146:14648)
           at new n (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:146:23485)
           at Object.success (products-admin.js?ver=3.0.5:1:7965)
           at c (load-scripts.php?c=0&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,underscore,backbone,wp-util,wp-backbone,media&load%5Bchunk_1%5D=-models,moxiejs,plupload&ver=6.1.1:2:28327)
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Unable to update products when this plugin is active](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/unable-to-update-products-when-this-plugin-is-active/page/2/#post-16251402)
 * [@anastas10s](https://wordpress.org/support/users/anastas10s/) I have updated
   to 3.0.5 and PHP to v8. Still the issue occurs. With regards to [@jeretl](https://wordpress.org/support/users/jeretl/)’
   s issue – that was not the same issue.

Viewing 15 replies - 61 through 75 (of 536 total)

[←](https://wordpress.org/support/users/greencode/replies/page/4/?output_format=md)
[1](https://wordpress.org/support/users/greencode/replies/?output_format=md) [2](https://wordpress.org/support/users/greencode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/greencode/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/greencode/replies/page/4/?output_format=md)
5 [6](https://wordpress.org/support/users/greencode/replies/page/6/?output_format=md)…
[34](https://wordpress.org/support/users/greencode/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/greencode/replies/page/35/?output_format=md)
[36](https://wordpress.org/support/users/greencode/replies/page/36/?output_format=md)
[→](https://wordpress.org/support/users/greencode/replies/page/6/?output_format=md)