wpgenie2
Forum Replies Created
-
Forum: Plugins
In reply to: [Last Users Order Column for WooCommerce] Last user order data meta fieldHi,
no, plugin gets that info from orders storage via query (which returns just most recent order) so we do not use additional meta field for that. If you want we can custom code you tool which saves that info to user’s custom meta field.
- This reply was modified 3 months, 1 week ago by wpgenie2.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Fatal Error with latest updateHi,
update has been released, thanks for reporting!
best regards
Forum: Plugins
In reply to: [Bulk Delete Users by Email] Failing on one blogNew version with better error message has been published.
Glad you like this utility! 🙂
Forum: Plugins
In reply to: [Bulk Delete Users by Email] Failing on one blogHello,
we have taken over plugin and we are replying now in day or two.
If you want us to check the problem we can do that, you will need to send us access for the site and steps how to reprocude the problem. Since you contacted us via email, best would be to continue there.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] “Self exclude permanently” Does not workHello, thanks for reporting, new version has been published.
Forum: Plugins
In reply to: [OnSale Page for WooCommerce] How to target CSSHello,
for that you can add to your child-theme/functions.php following code snippet:
function wpgenie_add_custom_body_class( $classes ) {
global $wp_query;
if ( $wp_query->is_sale_page ) {
$classes[] = 'my-on-sale-page-class';
}
return $classes;
}
add_filter( 'body_class', 'wpgenie_add_custom_body_class' );Save and in child-theme/style.css add:
.my-on-sale-page-class li.product.type-product {
background: red;
}This CSS is just to verify that class has been added and working. Hope this helps a bit!
regardsForum: Plugins
In reply to: [Spending Limits for WooCommerce] Critical error on day, week etc spend limitHuh, thanks again and update has been published!
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Critical error on day, week etc spend limit…
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Critical error on day, week etc spend limitHi, found the problem, new version has been published, thanks for reporting.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Critical error on day, week etc spend limitAlso can you explain how did you test it? We are not able to reproduce the issue.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Critical error on day, week etc spend limitHi,
are you using latest version because on line 189 is not that function in most recent version of plugin.
Hello, this is PRO feature so maybe that’s the issue if you don’t have PRO version active.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Change the length of timeNew version with this feature has been released. Feature is in PRO version.
Forum: Plugins
In reply to: [Spending Limits for WooCommerce] Change the length of timeHi, right now no, but I have added this on our TODO so keep an eye on updates.
Forum: Plugins
In reply to: [Drop Prices for WooCommerce] Price increase/drop per salesHello, I guess we could do something like that. Keep an eye on the updates.