### 3.9 | 2021-09-08
- Fixed an issue where the polls blocks enqueue breaks the Gutenberg editor in WordPress 5.8.x and later.
- Fixed an issue where the polls shortcode renders the form even when it is not active.
- Fixed markup errors when poll choices are randomized in Gravity Forms 2.5.
### 3.8 | 2021-04-29
- Added an icon for the form editor in Gravity Forms 2.5.
- Fixed an issue where script tags are being output above the document head element.
- Fixed an issue where the polls editor block generates error notices in the browser.
- Fixed compatibility issues with PHP 8.
### 3.7 | 2020-10-15
- Added security enhancements.
### 3.6 | 2020-09-30
- Added support for Gravity Forms 2.5.
- Fixed an issue where the label tag is corrupt when using Jetsloth image choices and enabling shuffle choices setting.
### 3.5 | 2020-05-13
- Added translations for Hebrew, Hindi, Japanese, and Turkish.
- Updated Javascript files, stylesheets to use minified versions.
- Fixed PHP notices which occur on the entry detail page with PHP 7.4.
- Fixed a PHP notice which can occur when a third-party add-on triggers the gform_entry_field_value filter without passing a field object.
- Fixed a compatibility issue with the Poll block and WPGraphQL Gutenberg.
### 3.4 | 2019-08-07
- Added security enhancements.
### 3.3 | 2019-06-13
- Added Poll block.
- Added the *[gform_polls_results_ajax_response](https://docs.gravityforms.com/gform_polls_results_ajax_response/)* filter, including form specific version, enabling the results Ajax response to be overridden.
- Fixed PHP notice after Gravity Form 2.4.7 adding tab capabilities check.
### 3.2 | 2019-03-22
- Fixed deprecation notices under Gravity Forms > 2.3.
- Fixed strings for translations.
- Fixed an issue with the locations the gform_merge_tags hook was being used to include the merge tags.
### 3.1 | 2016-08-31
- Updated field general settings label classes for consistency with GF2.0+.
- Fixed an issue with the "other" choice feature on the radio type field when saving the form.
- Fixed a layout issue in the form editor when the 'Randomize order of choices' setting is enabled.
### 3.0 | 2016-04-14
- Added support for Gravity Forms 2.0.0.
- Added GF_Field_Poll.
- Fixed an issue with the AWeber integration.
### 2.4 | 2015-10-08
- Updated minimum Gravity Forms version to 1.9.
- Fixed some PHP warnings which could appear when using the polls shortcode action with a form that doesn't have any poll fields.
- Fixed an issue with the calculation of results which can lead to inconsistent results being displayed in certain situations on sites with high volume. Props: Antonis Zachopoulos.
- Fixed a notice in WP4.3 with Widget constructor deprecation.
- Fixed an issue with the placeholder for the select type poll field.
- Fixed an issue which caused poll merge tags to be replaced during form render.
### 2.3 | 2015-04-20
- Added Spanish (es_ES) translation.
- Added support for rendering polls in admin pages. Requires Gravity Forms 1.9.
- Added support for the shortcode builder.
- Fixed issue where "Other" choice displayed twice in front-end poll results.
- Fixed a low severity security vulnerability.
- Fixed defaults for the shortcode builder.
- Fixed issue where confirmation text wasn't getting displayed on AJAX forms.
### 2.2 | 2014-10-16
- Added support for Gravity Forms 1.9 form editor drag and drop.
- Added function gf_polls to easily get a Poll instance.
- Added text domain/path to header.
- Updated protected functions to be public.
- Updated to have the file class-gf-polls.php and organized code into this file and polls.php.
- Updated version to use a variable.
- Fixed notices.
### 2.1 | 2014-09-24
- Fixed the field title in the Form Editor.
- Fixed a PHP warning when overriding a page redirect with the Poll results.
- Fixed an issue with the resending of notifications from the entry detail page where the choice values were being displayed instead of the choice text.
- Updated a few text strings so they may be translated.
- Updated POT file.
- Fixed translation text domain in several instances to be gravityformspolls.
### 2.0 | 2014-02-28
- Added integration with the Campaign Monitor Add-On, MailChimp Add-On, AWeber Add-On, and Zapier Add-On.
- Added Add-On Framework integration.
- Added support for the poll entries tab in the Contacts Add-On.
- Added the *gform_polls_percentage_precision* hook so the percentages on the front-end results can be rounded to a custom number of decimal digits.
- Updated label of some form settings items.
- Updated Drop Down Poll field to display the "Select one" option at the top of the list instead of the bottom.
- Updated GFPolls::merge_tag_filter() to public static.
- Fixed view results link for forms with no entries.
- Fixed an issue where poll merge tags would appear in the list of merge tags available during pre-submission.
- Fixed Strict notices under PHP 5.4.
- Fixed permissions for settings pages.
### 1.5 | 2013-06-06
- Requires Gravity Forms > 1.7.4.2
- Added a "Select one" option to the dropdown poll field
- Added the gform_polls_cron_schedule filter so the frequency of the cron job can be modified.
Notes: The wp_cron job will take over the calculation of the results if 5 seconds is not long enough at the time of form submission/update.
The default schedule is set to hourly to avoid heavy loads on the server but the frequency can be changed by using the *gform_polls_cron_schedule filter*.
The format follows the same format required by the [WordPress cron_schedules filter](http://codex.wordpress.org/Function_Reference/wp_get_schedules)
<strong>Important</strong>: the Polls Add-On must be deactivated and reactivated in order to reschedule the task.
Example usage:
add_filter( 'gform_polls_cron_schedule', 'cron_add_twice_hourly' );
function cron_add_twice_hourly() {
// Adds once weekly to the existing schedules.
$schedule['twicehourly'] = array(
'interval' => 1800, // number of seconds in the interval
'display' => __( 'Twice Hourly' )
);
return $schedule;
}
- Changed the calculation of the cookie expiration to take into account the browser's timezone if possible.
- Fixed an issue with results not being displayed when double quotes were inside field choices labels.
- Fixed an issue with results not being displayed in no conflict mode.
- Fixed an issue with poll submissions taking too long or timing out when there are already a large number of entries. When the results calculation takes more than 5 seconds then a cached version of the results will be displayed until the background process has finished calculating the new results.
- Fixed issue with repeat voting when the poll shortcode cookie attribute is not used.
- Removed some deprecated jQuery calls.
### 1.4 | 2013-04-30
- Added *gform_form_pre_results* filter so the form object can be manipulated before the results are calculated for the admin results page.
- Added *gform_polls_form_pre_results* so the form object can be manipulated before the results are calculated for the front and and entry detail page.
- Fixed poll form settings appearing on the form settings tab.
- Fixed poll results not appearing below the confirmation in ajax forms.
### 1.3 | 2013-04-23
- Changed confirmation behavior to ignore a confirmation redirect when "display results" is selected.
- Fixed a display issue with confirmation message for multipage and ajax enabled forms.
- Fixed display issues in the confirmation when the confirmation is empty.
- Fixed issue with boolean form settings in imported forms.
- Added form settings tab ready for 1.7.
- Added results page.
- Updated load_plugin_textdomain() call to be outside the is_admin() block so that front end strings can be translated.
- Chang
没有合适的资源?快使用搜索试试~ 我知道了~
【WordPress插件】2022年最新版完整功能demo+插件v3.9.zip
共82个文件
mo:25个
json:25个
js:10个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 25 浏览量
2022-04-07
05:27:48
上传
评论
收藏 203KB ZIP 举报
温馨提示
"【WordPress插件】2022年最新版完整功能demo+插件v3.9 Gravity Forms Polls Add-On 重力形成民意调查加载项" ---------- 泰森云每天更新发布最新WordPress主题、HTML主题、WordPress插件、shopify主题、opencart主题、PHP项目源码、安卓项目源码、ios项目源码,更有超10000个资源可供选择,如有需要请站内联系。
资源推荐
资源详情
资源评论
收起资源包目录
【WordPress插件】2022年最新版完整功能demo+插件v3.9.zip (82个子文件)
gravityformspolls
css
gpoll_form_editor.css 730B
gpoll_widget.min.css 109B
blocks.min.css.map 409B
gpoll_form_settings.css 71B
gpoll.css 7KB
gpoll_widget.css 137B
gpoll_form_settings.min.css 61B
gpoll.min.css 6KB
gpoll_form_editor.min.css 628B
blocks.min.css 220B
images
spinner.gif 2KB
tick.png 537B
remove.png 3KB
add.png 3KB
class-gf-polls.php 88KB
js
blocks.js.map 33KB
gpoll.min.js 8KB
gpoll.js 13KB
gpoll_form_settings.js 415B
blocks.js 23KB
gpoll_form_editor.min.js 1KB
gpoll_merge_tags.min.js 240B
blocks.min.js 13KB
gpoll_form_settings.min.js 270B
gpoll_form_editor.js 2KB
gpoll_merge_tags.js 712B
change_log.txt 10KB
languages
gravityformspolls-it_IT.mo 11KB
gravityformspolls-tr_TR-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-de_DE.mo 11KB
gravityformspolls-it_IT-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-es_ES-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-da_DK.mo 10KB
gravityformspolls-da_DK-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-fr_CA.mo 11KB
gravityformspolls-ja-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-de_DE_formal-4431109f2b52f456221198b68f96424a.json 963B
gravityformspolls-hu_HU.mo 455B
gravityformspolls-en_AU-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-sv_SE.mo 452B
gravityformspolls-en_GB-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-zh_CN.mo 1KB
gravityformspolls-fr_FR-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-ru_RU-4431109f2b52f456221198b68f96424a.json 4KB
gravityformspolls-pt_PT.mo 11KB
gravityformspolls-ja.mo 11KB
gravityformspolls-nl_NL.mo 11KB
gravityformspolls-he_IL.mo 12KB
gravityformspolls-en_GB.mo 10KB
gravityformspolls-hu_HU-4431109f2b52f456221198b68f96424a.json 966B
gravityformspolls-fi.mo 11KB
gravityformspolls-nl_BE-4431109f2b52f456221198b68f96424a.json 966B
gravityformspolls.pot 11KB
gravityformspolls-tr_TR.mo 11KB
gravityformspolls-ca.mo 2KB
gravityformspolls-hi_IN-4431109f2b52f456221198b68f96424a.json 4KB
gravityformspolls-nb_NO.mo 969B
gravityformspolls-ru_RU.mo 14KB
gravityformspolls-fi-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-he_IL-4431109f2b52f456221198b68f96424a.json 3KB
gravityformspolls-nl_BE.mo 451B
gravityformspolls-de_DE_formal.mo 865B
gravityformspolls-hi_IN.mo 16KB
gravityformspolls-fr_FR.mo 11KB
gravityformspolls-de_DE-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-ar-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-fr_CA-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-sv_SE-4431109f2b52f456221198b68f96424a.json 966B
gravityformspolls-en_AU.mo 10KB
gravityformspolls-zh_CN-4431109f2b52f456221198b68f96424a.json 1KB
gravityformspolls-nl_NL-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-ca-4431109f2b52f456221198b68f96424a.json 1007B
gravityformspolls-nb_NO-4431109f2b52f456221198b68f96424a.json 1001B
gravityformspolls-ar.mo 511B
gravityformspolls-pt_BR.mo 11KB
gravityformspolls-pt_BR-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-pt_PT-4431109f2b52f456221198b68f96424a.json 2KB
gravityformspolls-es_ES.mo 11KB
polls.php 2KB
includes
class-gf-field-poll.php 2KB
class-gf-block-polls.php 9KB
pollwidget.php 21KB
共 82 条
- 1
资源评论
Lee达森
- 粉丝: 1169
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于 Jsp+Sqlserver 实现的超市信息管理系统
- 傲梅轻松备份.exe xxxx
- 2001-2021年372个城市平均风速数据.dta
- 2001-2021年372个城市平均风速数据.xlsx
- 2023-04-06-项目笔记 - 第三百零七阶段 - 4.4.2.305全局变量的作用域-305 -2025.11.04
- TA-Lib-0.4.24-cp310-cp310-win-amd64.whl
- yolo算法-停车位数据集-7801张图像带标签-空的-已占用.zip
- 多表查询文件students.txt
- yolo算法-垃圾检测数据集-5659张图像带标签-金属-硬纸板-玻璃-塑料.zip
- yolo算法-安全帽-反光衣智慧工地数据集-7538张图像带标签-靴子-头盔-背心.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功