GravityWP
Forum Replies Created
-
Forum: Plugins
In reply to: [GravityWP - Count] count price fieldI tested it with the form-export you emailed us, and it did work for me.
The productfield stores value + price in the database value, which is different from other fields. What you can do is look up how the values are stored in the entry_meta table and match these in the filter. If that doesn’t work I don’t have a quick solution, other than using another field type.
Forum: Plugins
In reply to: [GravityWP - Count] Entries from multiple formsHi Sina,
the plugin currently doesn’t support this, but we will consider it for a future release.
Thank you,
the GravityWP team.Forum: Plugins
In reply to: [GravityWP - Count] count price fieldHi @jeroenroelofsen,
Your observation about how the value is stored in the database is true and indeed also the cause of this problem as Count uses ‘is’ as search operator.
Examples of the value in the database:
2 Puppy klasse|2500
5 Open klasse|4500It is still possible to count them, like this:
[gravitywp_count formid='5' filter_field3="34" filter_value3="5 Open klasse|4500"] [gravitywp_count formid='5' filter_field3="34" filter_value3="2 Puppy klasse|2500"]Hope this helps, good luck!
Forum: Plugins
In reply to: [GravityWP - Count] count price fieldHi @jeroenroelofsen,
It needs some more investigation. Our first guess is that the filter_value3 has some characters that maybe cause the problem, but we’re not sure. You could try yourself defining a more clean value for the filter choice (this is always good practice).
Could you provide us with an export of the form (mail to [email protected] and add the link to this topic)? Than we can try it ourselves.
Forum: Plugins
In reply to: [GravityWP - Count] Count of single text field (Quantity)I noticed the quotes are being changed by this forum. Maybe this works better:
[gravitywp_count formid="24" number_field="18" filter_field2="11" filter_value2="B Product"]Otherwise be sure to change them when you copy/paste
Forum: Plugins
In reply to: [GravityWP - Count] Count of single text field (Quantity)Still not sure if I fully understand what you are trying to achieve, but this might be what you are looking for:
[gravitywp_count formid=”24″ number_field=”18″ filter_field2=”11″ filter_value2=”B Product”]The number_field parameter represents the field being totalled. It also works on text fields, but note that numbers with invalid format will be ignored. Better is to use a number field. The filter_field parameter enables you to select a subset of all entries.
Forum: Plugins
In reply to: [GravityWP - Count] Count of single text field (Quantity)Hi @cybokron
Do you have an example form for us to have a look. I see that in your shortcode you use filter_field2 en filter_value2 twice, so that won’t work.
Forum: Plugins
In reply to: [GravityWP - Count] Error Warning: A non-numeric value encounteredThis should be fixed now. Good luck!
Forum: Plugins
In reply to: [GravityWP - Count] Error Warning: A non-numeric value encounteredHi adihd,
This happens when one (or more) of the entries have a non-numeric value in that particular field (where empty is also non-numeric in this case). As a non-numeric value can’t be added this is a valid warning, but I agree we can improve how this is being handled. This will be scheduled for the next version, which most likely will be released within a few weeks.
Forum: Plugins
In reply to: [GravityWP - Count] Count Images UplaodedYour welcome!
Forum: Plugins
In reply to: [GravityWP - Count] Count Images UplaodedHi there,
This isn’t possible with this plugin. It can count entries or the total value of a number field over multiple entries.
Forum: Plugins
In reply to: [GravityWP - Count] Count data not updating on timeThanks for this update, @jassimp
Forum: Plugins
In reply to: [GravityWP - Count] Get count from dynamic fields (dropdown)That is something you can define in the Gravity forms field settings, see: https://docs.gravityforms.com/drop-down/
Forum: Plugins
In reply to: [GravityWP - Count] Get count from dynamic fields (dropdown)This plugin can only count entries which are already submitted. The count is executed when loading the page, so what you want is not possible I think.
Forum: Plugins
In reply to: [GravityWP - Count] Count data not updating on timeHi Jassimp,
There are no crons present in this plugin. You probably have some sort of caching plugin enabled for frontend users.