Commit 752e79ca authored by Tihh Gonçalves's avatar Tihh Gonçalves

Conflict with Variable Product

When used in a variable product, there was an error with the global
$post.

Instead of returning the $post of Product, returning from last variable
(which is also a $post)

----
Quando utilizado em um Produto Variável, existia um erro com a global
$post.
Ao invés de retornar o $post do Produto, retornava da última variável
(que também é um $post)
parent e3a30927
...@@ -138,7 +138,7 @@ class Product_Addon_Admin { ...@@ -138,7 +138,7 @@ class Product_Addon_Admin {
public function panel() { public function panel() {
global $post; global $post;
$product_addons = array_filter( (array) get_post_meta( $post->ID, '_product_addons', true ) ); $product_addons = array_filter( (array) get_post_meta( $_GET['post'], '_product_addons', true ) );
include( 'html-addon-panel.php' ); include( 'html-addon-panel.php' );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment