pranavmtn
Forum Replies Created
-
Hi @cengoguven ππ»,
Thanks for the honest review,it is super encouraging! π₯°
Sorry about the confusion with the setting. I had two reasons for doing it this way.
At first, I built the plugin without any toggle β you just entered the password and hint, and the protection would start right away.
Later, I decided to add a toggle. Without it, if users wanted to disable the protection, they had to either deactivate the plugin or manually remove the password β which isnβt very user-friendly. So a toggle made more senseπ
But there was a problem: the plugin already had 800+ installations, and many of those sites were already protected with a password. If I introduced a toggle that was off by default, those sites would suddenly lose their protection, and users would have to go back into the settings and turn it on again. I didnβt want to frustrate anyone or break their setup.π€
So I added the toggle, but made it enabled by default. This way, protection stays active for existing users, and only people who want to disable it need to switch the toggle off.π
Plus, it technically saves about 1.3 seconds of setup timeβ¦ haha π
Anyway, thanks for taking the time to review it β Iβm always open to suggestions.
Glad that Hide My Website helped your site.Good Day!
PranavHi @robin-w,
Apologies for the delay in getting back to you.
Could you please update to the latest version 1.5.4 and let me know if you still face the issue?
Previously, there was a caching issue that caused the login to redirect back to the login page even after a successful entry. This has now been addressed in the new release.
Looking forward to your reply.
Best regards,
PranavMany thanks @jafarmvz π
Thanks so much for the review and your timeπ@bormotolog
- This reply was modified 10 months ago by pranavmtn.
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$slugand$conditionwithout 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
Hi,
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 emails