GravityWP
Forum Replies Created
-
Forum: Plugins
In reply to: [GravityWP - Count] GravityWP – Count-DOWNNo, this is currently not possible with the plugin. You have to script something yourself to use the outcome of the plugin to subtract from 100. Or, you could try the GFCharts plugin.
Good luck!
Forum: Plugins
In reply to: [GravityWP - Count] Basic CountingWhat your filter is doing now is searching for entries that are both man and woman. Since this is not possible, you can just use
[gravitywp_count formid=”1″]
This will show the total number of entries, wether man or woman.
Forum: Plugins
In reply to: [GravityWP - Count] Count entries from multiple formsHi @fcvolunteer,
If you don’t use the number field and leave the form id empty, it will show the total number of entries.
If you want to automatically count all the number fields for all the entries of all forms, you’ll need another script. Since the number field you want to count will most probably differ per individual form, I think the solution is too much. I think you should look at making something that looks for a specific css code or something.
Forum: Plugins
In reply to: [GravityWP - Merge Tags] HTML Fields SupportWe will have a look if we can add it in a future update. But as said, the main goal is quickly access the right merge tag. But we agree with you that it can be handy to have a tab where the HTML fields are available as well / make this optional.
Thanks for the suggestion.
Forum: Plugins
In reply to: [GravityWP - Count] SumSolved it seems. Please share how you solved it.
Forum: Plugins
In reply to: [GravityWP - Count] SumCan you provide us with a link, because we can’t reproduce this error on our environments.
Hi reVwow,
This is a problem you should solve with the “Gravity Forms List Field Calculations Add-On”. I know about that error since I also experienced it using the same add-on. But it has nothing to do with the GravityWP – Count plugin.
Kind regards,
Erik
Hi reVwow,
you should create a new number field (apart from the list) and put the mergetag for SOUS-TOTAL in that new number field. If you do that, you can use GravityWP Count to calculate to total for multiple entries using this newly created number field.
I have the same problem after updating to PHP 7.2
Deprecated: Function create_function() is deprecated in ..\plugins\gravity-forms-wcag-20-form-fields\gravity_forms_wcag20_form_fields_plugin.php on line 61
When using
add_filter( 'gform_tabindex', '__return_false' ); //disable tab-index(thanx Doug) it doesn’t show the error and seems to work fine.I don’t understand completely what you want. Can you send a link to a test form?
Forum: Plugins
In reply to: [GravityWP - Merge Tags] HTML Fields SupportHi Janolima,
HTML fields don’t have merge tags, so it’s not included in this plugin.
Could you explain more detailed how you want to use it?
Hi! That is not a bug, mergetags come available to a newly added field after saving the form.
As for your question. Did you add a number field and add the mergetag for total to the calculation? Is this field filled / saved when submitting the entry. If not, than the GravityWP Count plugin has nothing to count.
Forum: Plugins
In reply to: [GravityWP - Count] Shortcode in JSHi Nitrat,
You can use the shortcode on the frontpage without using do_shortcode. If you use it on a php page, than you use do_shortcode. I have no idea what you want to accomplish where, but this is not the way to do it. Start by reading the docs here.
You’re question has nothing to do with the working of this plugin (the plugin does what it has to do). If you need help with custom code, please ask help from an expert on Codeable.
Kind regards and good luck with your project,
Erik
Forum: Plugins
In reply to: [GravityWP - Count] Shortcode in JSI have no idea if you can use js inside a HTML field. But if it’s possible, don’t use
do_shortcode. You really only use that in php.Forum: Plugins
In reply to: [GravityWP - Count] Shortcode in JSHi Nitrat,
You are mixing php and js I think.
do_shortcodeis php. Try it without if the js is running in the content of the page (not in a separate js file) or close and open php before and after if it’s in a php file.Let us know if this helps.