-
Notifications
You must be signed in to change notification settings - Fork 206
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
🚀 enhance: StoreGrowth listed to the admin setup wizard recommendation plugins #2512
Open
devAsadNur
wants to merge
6
commits into
develop
Choose a base branch
from
enhance/storegrowth-to-the-admin-setup-wizard
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
64e6bf0
enhance: StoreGrowth added to the admin setup wizard recommendation p…
devAsadNur 2478c22
Merge branch 'develop' into enhance/storegrowth-to-the-admin-setup-wi…
devAsadNur 7064e07
refactor: Recommendation plugins listing display on admin setup wizar…
devAsadNur 705eb76
fix: Removed error log on RecommendedPlugins class
devAsadNur 3ae552a
fix: Black recommended plugins page in case all of the recommended pa…
devAsadNur 8605cc3
refactor: Recommended plugins installation based on user input
devAsadNur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -699,18 +699,18 @@ public function dokan_setup_recommended() { | |
<ul class="recommended-step"> | ||
<?php | ||
if ( $this->user_can_install_plugin() ) { | ||
if ( ! $this->is_wc_conversion_tracking_active() ) { | ||
if ( ! $this->is_store_growth_active() ) { | ||
$this->display_recommended_item( | ||
[ | ||
'type' => 'wc_conversion_tracking', | ||
'title' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), | ||
'description' => __( 'Track conversions on your WooCommerce store like a pro!', 'dokan-lite' ), | ||
'img_url' => DOKAN_PLUGIN_ASSEST . '/images/wc-conversion-tracking-logo.png', | ||
'img_alt' => __( 'WooCommerce Conversion Tracking logo', 'dokan-lite' ), | ||
'type' => 'store_growth', | ||
'title' => __( 'StoreGrowth', 'dokan-lite' ), | ||
'description' => __( 'Best WooCommerce Marketing Solution!', 'dokan-lite' ), | ||
'img_url' => DOKAN_PLUGIN_ASSEST . '/images/store-growth-logo.png', | ||
'img_alt' => __( 'StoreGrowth logo', 'dokan-lite' ), | ||
'plugins' => [ | ||
[ | ||
'name' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), | ||
'slug' => 'woocommerce-conversion-tracking', | ||
'name' => __( 'StoreGrowth', 'dokan-lite' ), | ||
'slug' => 'storegrowth-sales-booster', | ||
], | ||
], | ||
] | ||
|
@@ -735,12 +735,30 @@ public function dokan_setup_recommended() { | |
); | ||
} | ||
|
||
if ( ! $this->is_wc_conversion_tracking_active() ) { | ||
$this->display_recommended_item( | ||
[ | ||
'type' => 'wc_conversion_tracking', | ||
'title' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), | ||
'description' => __( 'Track conversions on your WooCommerce store like a pro!', 'dokan-lite' ), | ||
'img_url' => DOKAN_PLUGIN_ASSEST . '/images/wc-conversion-tracking-logo.png', | ||
'img_alt' => __( 'WooCommerce Conversion Tracking logo', 'dokan-lite' ), | ||
'plugins' => [ | ||
[ | ||
'name' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), | ||
'slug' => 'woocommerce-conversion-tracking', | ||
], | ||
], | ||
] | ||
); | ||
} | ||
|
||
if ( ! $this->is_texty_active() ) { | ||
$this->display_recommended_item( | ||
[ | ||
'type' => 'texty', | ||
'title' => __( 'Texty', 'dokan-lite' ), | ||
'description' => __( 'SMS Notification for WordPress, WooCommerce, Dokan and more', 'dokan-lite' ), | ||
'description' => __( 'SMS Notification for WordPress, WooCommerce, Dokan and more!', 'dokan-lite' ), | ||
'img_url' => DOKAN_PLUGIN_ASSEST . '/images/texty-logo.png', | ||
'img_alt' => __( 'Texty logo', 'dokan-lite' ), | ||
'plugins' => [ | ||
|
@@ -774,10 +792,22 @@ public function dokan_setup_recommended() { | |
public function dokan_setup_recommended_save() { | ||
check_admin_referer( 'dokan-setup' ); | ||
|
||
$setup_store_growth = isset( $_POST['setup_store_growth'] ) && 'yes' === sanitize_text_field( wp_unslash( $_POST['setup_store_growth'] ) ); | ||
$setup_wc_conversion_tracking = isset( $_POST['setup_wc_conversion_tracking'] ) && 'yes' === sanitize_text_field( wp_unslash( $_POST['setup_wc_conversion_tracking'] ) ); | ||
$setup_wemail = isset( $_POST['setup_wemail'] ) && 'yes' === sanitize_text_field( wp_unslash( $_POST['setup_wemail'] ) ); | ||
$setup_texty = isset( $_POST['setup_texty'] ) && 'yes' === sanitize_text_field( wp_unslash( $_POST['setup_texty'] ) ); | ||
|
||
if ( $setup_store_growth && ! $this->is_store_growth_active() ) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
$this->install_plugin( | ||
'storegrowth-sales-booster', | ||
[ | ||
'name' => __( 'StoreGrowth', 'dokan-lite' ), | ||
'repo-slug' => 'storegrowth-sales-booster', | ||
'file' => 'storegrowth-sales-booster.php', | ||
] | ||
); | ||
} | ||
|
||
if ( $setup_wc_conversion_tracking && ! $this->is_wc_conversion_tracking_active() ) { | ||
$this->install_plugin( | ||
'woocommerce-conversion-tracking', | ||
|
@@ -891,6 +921,10 @@ protected function should_show_recommended_step() { | |
return false; | ||
} | ||
|
||
if ( $this->is_store_growth_active() ) { | ||
return false; | ||
} | ||
|
||
if ( $this->is_wc_conversion_tracking_active() ) { | ||
return false; | ||
} | ||
|
@@ -906,6 +940,17 @@ protected function should_show_recommended_step() { | |
return true; | ||
} | ||
|
||
/** | ||
* Check if StoreGrowth is active or not. | ||
* | ||
* @since DOKAN_SINCE | ||
* | ||
* @return bool | ||
*/ | ||
protected function is_store_growth_active() { | ||
return is_plugin_active( 'storegrowth-sales-booster/storegrowth-sales-booster.php' ); | ||
} | ||
|
||
/** | ||
* Check if WC Conversion Tracking is active or not | ||
* | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RecommendedPlugins
and theget
&is_active( string $plugin_basename )
method will return the recommended plugins.