cherry07
Forum Replies Created
-
Forum: Plugins
In reply to: [Pricing Deals for WooCommerce] maximum quantity a productDear Vark,
Thanks for your reply. You were right the problem message doesn’t come from your plugin.
It’s related to another one. Sorry, my fault ;pJust to clarify… I need to make such kind of discount rules:
$100 => 5%
$200 => 10%
$300 => 15%So I choose Deal Type “Bulk purchasing”
Count Currency
Count together as a groupIs it enough for the free version or I need to get pro for these features to make it work properly?
Thanks again for your feedback.
Hi all,
I assume not to create a new thread and write my question here…
So I registered 3 custom post types in my functions.php file for Subscribe2 by this way:// Custom post types Subscribe2 function my_post_types1($types) { $types[] = 'projects'; return $types; } function my_post_types2($types) { $types[] = 'publications'; return $types; } function my_post_types3($types) { $types[] = 'news'; return $types; } add_filter('s2_post_types', 'my_post_types1'); add_filter('s2_post_types', 'my_post_types2'); add_filter('s2_post_types', 'my_post_types3');
But there are some troubles:
1. When user subscribes to updates he doesn’t choose via checkboxes what post type he need and finally he gets email notifications from all the custom post types I registered above.
2. User doesn’t get a message about what post type he has subscribed and I have no idea how to paste the title into the body mail.I read faq and api pages but still can’t get how to solve these issues.
I enabled wp_debug and see some errors in wp admin:
1. Notice: Undefined index: menu_position in /var/www/vhosts/dev/wp-content/plugins/wp-comment-fields/classes/admin.class.php on line 128
2. Notice: Undefined variable: proFeatures in /var/www/vhosts/dev/wp-content/plugins/wp-comment-fields/templates/admin/options.php on line 16