xaxill
Forum Replies Created
-
Hello,
I haven’t had time to analyze further. For us currently stuff works.
You can marked this thread resolved.
Best
Hello,
Sorry I didn’t isolate environment to check if this is the case with plugin.
I have installed 22 theme and checked if error is still there, but didn’t disabled all the plugins as some lose/remove all settings data.Will do another test with only 22 theme and your plugin to check if there is some plugin interferance.
Best
Somehow the images I provided won’t show up I am pasting code log from Bitbucket where the code was modified:
plugins/yaypricing/includes/functions/yaydp-core-functions.php
@@ -126,6 +126,9 @@ if ( ! function_exists( 'yaydp_is_variable_product' ) ) {
126126 * @return array
127127 */
128128 function yaydp_is_variable_product( $product ) {
129 if (is_string($product)) {
130 return false;
131 }
129132 return 'variable' === $product->get_type();
130133 }
131134}
@@ -141,6 +144,9 @@ if ( ! function_exists( 'yaydp_is_grouped_product' ) ) {
141144 * @return array
142145 */
143146 function yaydp_is_grouped_product( $product ) {
147 if (is_string($product)) {
148 return false;
149 }
144150 return 'grouped' === $product->get_type();
145151 }
146152}
Modified file
plugins/yaypricing/includes/helper/class-yaydp-product-helper.php
@@ -76,6 +76,9 @@ class YAYDP_Product_Helper {
7676 * @return boolean
7777 */
7878 public static function check_tag( $product, $filter ) {
79 if (is_string($product)) {
80 return false;
81 }
7982 $list_category_id = \YAYDP\Helper\YAYDP_Helper::map_filter_value( $filter );
8083 $product_tags = self::get_product_tags( $product );
8184 $array_intersect = array_intersect( $product_tags, $list_category_id );
@@ -91,6 +94,9 @@ class YAYDP_Product_Helper {
9194 * @return boolean
9295 */
9396 public static function check_price( $product, $filter ) {
97 if (is_string($product)) {
98 return false;
99 }
94100 $product_price = (float) \YAYDP\Helper\YAYDP_Pricing_Helper::get_product_price( $product );
95101 $check = \yaydp_compare_numeric( $product_price, $filter['value'], $filter['comparation'] );
96102 return $check;
@@ -148,6 +154,9 @@ class YAYDP_Product_Helper {
148154 * @return array
149155 */
150156 public static function get_product_tags( $product ) {
157 if (is_string($product)) {
158 return false;
159 }
151160 $result = array();
152161 $product_cats = \get_the_terms( $product->get_id(), 'product_tag' );
153162 $product_cat_ids = array_map(Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogThank you a lot! It’s working now.
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogChecked log files -> they are empty
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogWP DEBUG is already enabled
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogI haven’t got any email response.
I will put you my superadmin access via TSForum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogThx a lot!
I just filled in support ticket.
Best
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogAlso if we disable all plugins this stil not working
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogEven if we change to Twenty Nineteen(all sites, Avada and child theme completely disabled) theme results are the same.
Forum: Plugins
In reply to: [Network Posts Extended] Pulling posts only from first blogHi,
Thx for very fast reply.No, we do not use caching plugin at the moment. We are still developing.
But we use Avada child theme and caching is disabled in theme options.We deleted files which Avada still generates + we deleted browser session and cookie storage. Still not displaying posts from other sites only first created.
Forum: Plugins
In reply to: [Co-Authors Plus] 3.2.2 to 3.3.0 Update Breaks ‘Mine’ Filter in AdminI can confirm this. After last update ‘Mine’ Filter no longer working.
Forum: Plugins
In reply to: [WooCommerce Gift Coupon] Email with PDF and Coupon never sentSure i will grant you access. You can provide me some email address so I can tide access to that email
Forum: Plugins
In reply to: [WooCommerce Gift Coupon] Email with PDF and Coupon never sentHi Albert Perez
I can grant you access if you want take a look? I have tried with only default WP theme, WooC and your plugin and same thing..
Best
- This reply was modified 6 years, 10 months ago by xaxill.
Thank you for fast update!
I can confirm that everything works fine back again.Best