Pranav MT
Forum Replies Created
-
Hey @rajeshsingh520 ,
Glad you were able to replicate the issue.This notice is due to because PHP 8.2 now discourages adding new properties to objects on the fly without explicitly declaring them in the class. The plugin is attempting to dynamically create properties such as$
slug
and$
condition
without predefining them, which is no longer allowed in PHP 8.2.class Class_Pi_cefw_Add_Edit {
public $tab; // Declare the property explicitly
}
Similairly for other as well.Please close this ticket once you fixed.
Thank you!Pranav
FYI: I already fixed this issue by modifying their plugin code.This free plugin seems to be not have any free support.Better consider similiar other plugins
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] How to add Clear filter for each attributesThanks,
I will get back you soon!Forum: Plugins
In reply to: [Advanced AJAX Product Filters] How to add Clear filter for each attributesHi @razyrx ,
Thanks for the information.But i seen this in your demo: https://imgur.com/a/BqaLniM
Can you please share ,where is the settings located for that?
Thanks again!Pranav
Forum: Plugins
In reply to: [Advanced Woo Search] Some custom queries are not working in the ajax searchHi,
We need to restrict some product categories based on user role,This is the code,i been worked with:
add_action( 'pre_get_posts', 'sp_custom_pre_get_posts_query' ); add_action( 'woocommerce_product_query', 'sp_custom_pre_get_posts_query' ); function sp_custom_pre_get_posts_query( $q ) { $check_role = 'special_user'; $ref_ids = false; $user = wp_get_current_user(); // echo "<pre>",print_r($user->roles),"</pre>"; if (in_array($check_role, (array) $user->roles)) { $ref_ids = true; } if ((!$ref_ids) && (!current_user_can('administrator'))) { $tax_query = (array) $q->get('tax_query'); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array('reserved'), 'operator' => 'NOT IN' ); $q->set('tax_query', $tax_query); } }
When we using our theme default search it worked fine.But the plugin ajax filter does not.
Let me know,if you need any further details
Thanks
Pranav
Hi,
Yes,It supposed to be redirecting to that category pages.But i dont want all the categories to be redirected in a such a way.
Let’s say ‘Build kits’ only should redirect.
Let me know,how to achive that.
Thank you!
Hi
Any update here?It’s been a week
Thanks
Hi,
Sorry Wrong form.Marking this as closed
Thanks
Forum: Plugins
In reply to: [Max Mega Menu] Menu appears to be brokenHi,
I’ve figure out!
It was missing mega menu css
Thanks
Forum: Plugins
In reply to: [Route ? Shipping Protection] Just a QuestionHi,
Update:I have tried _routeapp_route_charge as well
Thanks
Forum: Plugins
In reply to: [Pricing Deals for WooCommerce] Random price is showing in order emailsForum: Plugins
In reply to: [Pricing Deals for WooCommerce] Random price is showing in order emailsHi,
Yes,you were correct.I was using an external PDF plugin ,But the random crossout showing in my checkout,order confirmation page as well.(even the plugin is disabled and under your conflict condition as well)
Then again i have to rise another ticket with you,for the same concern appearing order emails as well.
I have provided you my staging,But you werent interested to look as well.I have done many time the Module conflict test,but you said plugin functioning well.
you did testing with your own environment.Some time we contacting you,when we do have a lack of knowledge ,how the plugin is working behind the scene
The reason,why i didnt chose the coupon path,i do want the other specific functionality.
It is not better to relay on the secondary method,if there an issue on main functionality(even for a Pro plugin as well),I believe.
right now,I have recreated this plugin functionality,and site is doing fine??
That’why i cant accept,when you said ,there is a Module conflict just now
Thanks
PranavForum: Plugins
In reply to: [Pricing Deals for WooCommerce] Random price is showing in order emailsHey @vark ,
This seems very frustuating.
I have been facing this issue since a year,i think.More than two time we have communicated regarding the same issue??
But ,you were not ready to approve this as from the plugin side,always pointed out the conflict in website!!.And always test in your own environment ??
I recall a message https://prnt.sc/4xOXATzLJDyF
I really,stucked a longer time on this,and changed the discounting method,by using another plugin.
Atleast,try to to have a patience to test your own plugin ??.
Heard a say:
Code Is Never “Perfect”, Code Is Only Ever “Good Enough”???♂?
Thanks
PranavHi @cybr ,
Thanks for the Info!
Hi
Any update on this
Thanks