Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak - Coupon into module #1341

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion assets/extensions-json/sections/all_extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,23 @@
}
],
"features": [
{
"title": "Coupons",
"slug": "everest-forms-coupons",
"name": "Everest Forms Coupons",
"image": "extensions-json/sections/images/coupons.png",
"excerpt": "With the Everest Forms Coupon add-on, you can quickly create or add a coupon code on a form to encourage users to purchase the products.",
"link": "https://docs.everestforms.net/docs/coupons/?utm_source=dashboard-all-feature&utm_medium=card-documentation-link",
"released_date": "23/09/2020",
"plan": [
"personal",
"agency",
"themegrill agency"
],
"setting_url": "",
"demo_video_url": "GSYQIiyntW0",
"popular_rank": 24
},
{
"title": "Trello",
"slug": "everest-forms-trello",
Expand Down Expand Up @@ -982,6 +999,23 @@
],
"setting_url": "admin.php?page=evf-settings&tab=integration&section=cleverreach",
"demo_video_url": ""
}
},
{
"title": "Coupons",
"slug": "everest-forms-coupons",
"name": "Everest Forms Coupons",
"image": "extensions-json/sections/images/coupons.png",
"excerpt": "With the Everest Forms Coupon add-on, you can quickly create or add a coupon code on a form to encourage users to purchase the products.",
"link": "https://docs.everestforms.net/docs/coupons/?utm_source=dashboard-all-feature&utm_medium=card-documentation-link",
"released_date": "23/09/2020",
"plan": [
"personal",
"agency",
"themegrill agency"
],
"setting_url": "",
"demo_video_url": "GSYQIiyntW0",
"popular_rank": 24
}
]
}
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Feature - Bricks builder integration.
* Feature - Divi Builder Compatibility.
* Feature - Oxygen builder integration.
* Tweak - Coupon into module.
* Tweak - Move active campaign to module.
* Tweak - Track module activation in TG User Tracking.
* Fix - Tooltips does not work on mobile.
Expand Down
4 changes: 2 additions & 2 deletions includes/fields/class-evf-field-payment-coupon.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ class EVF_Field_Payment_Coupon extends EVF_Form_Fields {
* Constructor.
*/
public function __construct() {
$this->name = esc_html__( 'Coupon', 'everest-forms' );
$this->name = esc_html__( 'Coupons', 'everest-forms' );
$this->type = 'payment-coupon';
$this->icon = 'evf-icon evf-icon-coupon';
$this->order = 17;
$this->order = 16;
$this->group = 'payment';
$this->is_pro = true;
$this->plan = 'personal agency themegrill-agency';
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/eve
* Feature - Divi Builder Compatibility.
* Feature - Oxygen builder integration.
* Feature - Beaver Builder Compatibility.
* Tweak - Coupon into module.
* Tweak - Move active campaign to module.
* Tweak - Track module activation in TG User Tracking.
* Fix - Tooltips does not work on mobile.
Expand Down
Loading