Add AI category and Pro Plugins tab with premium plugin listings
This commit is contained in:
@ -51,8 +51,10 @@ function wp_allstars_get_recommended_plugins() {
|
||||
'mainwp-child-reports',
|
||||
'magic-login',
|
||||
'manage-notification-emails',
|
||||
'plugin-groups',
|
||||
'plugin-toggle'
|
||||
),
|
||||
'ai' => array(),
|
||||
'cms' => array(
|
||||
'auto-post-scheduler',
|
||||
'block-options',
|
||||
@ -62,6 +64,7 @@ function wp_allstars_get_recommended_plugins() {
|
||||
'bulk-edit-categories-tags',
|
||||
'bulk-edit-user-profiles-in-spreadsheet',
|
||||
'carbon-copy',
|
||||
'code-block-pro',
|
||||
'iframe-block',
|
||||
'ics-calendar',
|
||||
'mammoth-docx-converter',
|
||||
@ -124,7 +127,11 @@ function wp_allstars_get_recommended_plugins() {
|
||||
'kadence-starter-templates',
|
||||
'wordpress-importer'
|
||||
),
|
||||
'social' => array(),
|
||||
'social' => array(
|
||||
'easy-video-reviews',
|
||||
'social-engine',
|
||||
'wp-social-reviews'
|
||||
),
|
||||
'speed' => array(
|
||||
'disable-wordpress-updates',
|
||||
'flying-analytics',
|
||||
@ -147,18 +154,14 @@ function wp_allstars_get_recommended_plugins() {
|
||||
'advanced-custom-fields',
|
||||
'ai-engine',
|
||||
'code-snippets',
|
||||
'easy-video-reviews',
|
||||
'favorites',
|
||||
'remove-cpt-base',
|
||||
'remove-old-slugspermalinks',
|
||||
'social-engine',
|
||||
'wp-social-reviews',
|
||||
'yellow-pencil-visual-theme-customizer'
|
||||
),
|
||||
'debug' => array(
|
||||
'debug-log-manager',
|
||||
'gotmls',
|
||||
'plugin-groups',
|
||||
'query-monitor',
|
||||
'string-locator',
|
||||
'user-switching',
|
||||
@ -603,6 +606,9 @@ function wp_allstars_settings_page() {
|
||||
<a href="?page=wp-allstars&tab=recommended" class="nav-tab <?php echo $active_tab == 'recommended' ? 'nav-tab-active' : ''; ?>">
|
||||
<?php esc_html_e('Free Plugins', 'wp-allstars'); ?>
|
||||
</a>
|
||||
<a href="?page=wp-allstars&tab=pro" class="nav-tab <?php echo $active_tab == 'pro' ? 'nav-tab-active' : ''; ?>">
|
||||
<?php esc_html_e('Pro Plugins', 'wp-allstars'); ?>
|
||||
</a>
|
||||
<a href="?page=wp-allstars&tab=theme" class="nav-tab <?php echo $active_tab == 'theme' ? 'nav-tab-active' : ''; ?>">
|
||||
<?php esc_html_e('Theme', 'wp-allstars'); ?>
|
||||
</a>
|
||||
@ -864,6 +870,10 @@ function wp_allstars_settings_page() {
|
||||
class="button <?php echo $active_category == 'admin' ? 'button-primary' : ''; ?>">
|
||||
<?php esc_html_e('Admin', 'wp-allstars'); ?>
|
||||
</a>
|
||||
<a href="?page=wp-allstars&tab=recommended&category=ai"
|
||||
class="button <?php echo $active_category == 'ai' ? 'button-primary' : ''; ?>">
|
||||
<?php esc_html_e('AI', 'wp-allstars'); ?>
|
||||
</a>
|
||||
<a href="?page=wp-allstars&tab=recommended&category=cms"
|
||||
class="button <?php echo $active_category == 'cms' ? 'button-primary' : ''; ?>">
|
||||
<?php esc_html_e('CMS', 'wp-allstars'); ?>
|
||||
@ -1008,6 +1018,206 @@ function wp_allstars_settings_page() {
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php elseif ($active_tab == 'pro'): ?>
|
||||
<div class="wpa-pro-plugins">
|
||||
<style>
|
||||
.wpa-pro-plugins {
|
||||
padding: 20px;
|
||||
}
|
||||
.wpa-pro-plugin {
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
padding: 20px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.wpa-pro-plugin h3 {
|
||||
margin: 0 0 10px;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
.wpa-pro-plugin p {
|
||||
margin: 0 0 15px;
|
||||
color: #666;
|
||||
}
|
||||
.wpa-pro-plugin .button {
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Admin Columns Pro</h3>
|
||||
<p>Advanced admin columns management with sorting, filtering, and editing capabilities.</p>
|
||||
<a href="https://www.admincolumns.com" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Admin Menu Editor Pro</h3>
|
||||
<p>Customize the WordPress admin menu with advanced features and role management.</p>
|
||||
<a href="https://adminmenueditor.com/upgrade-to-pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Advanced Custom Fields PRO</h3>
|
||||
<p>Create custom fields and content types with advanced features and options.</p>
|
||||
<a href="https://www.advancedcustomfields.com/pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Advanced Database Cleaner PRO</h3>
|
||||
<p>Clean and optimize your WordPress database with advanced tools and automation.</p>
|
||||
<a href="https://sigmaplugin.com/downloads/wordpress-advanced-database-cleaner" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>AI Engine (Pro)</h3>
|
||||
<p>Enhanced AI capabilities for content generation, analysis, and automation.</p>
|
||||
<a href="https://meowapps.com/plugin/ai-engine/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Code Profiler Pro</h3>
|
||||
<p>Advanced performance monitoring and debugging tools for WordPress.</p>
|
||||
<a href="https://codeprofiler.io/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Code Snippets Pro</h3>
|
||||
<p>Add and manage custom code snippets with advanced features and management tools.</p>
|
||||
<a href="https://codesnippets.pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Comment Goblin</h3>
|
||||
<p>Advanced comment management and spam protection system.</p>
|
||||
<a href="https://commentgoblin.com/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Complianz Privacy Suite</h3>
|
||||
<p>Complete GDPR/CCPA compliance solution with advanced features.</p>
|
||||
<a href="https://complianz.io/pricing/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Disable Bloat PRO</h3>
|
||||
<p>Advanced optimization for WordPress & WooCommerce with premium features.</p>
|
||||
<a href="https://disablebloat.com/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Fluent Suite Pro</h3>
|
||||
<p>Premium extensions for Fluent Forms, CRM, Support, and Booking.</p>
|
||||
<div class="button-group">
|
||||
<a href="https://fluentboards.com/pricing/" target="_blank" class="button">Fluent Boards Pro</a>
|
||||
<a href="https://fluentforms.com/pricing/" target="_blank" class="button">Fluent Forms Pro</a>
|
||||
<a href="https://fluentforms.com/docs/fluent-forms-signature-add-on/" target="_blank" class="button">Signature Addon</a>
|
||||
<a href="https://fluentcrm.com/pricing/" target="_blank" class="button">FluentCRM Pro</a>
|
||||
<a href="https://fluentsupport.com/pricing/" target="_blank" class="button">Fluent Support Pro</a>
|
||||
<a href="https://fluentbooking.com/" target="_blank" class="button">FluentBooking Pro</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Freesoul Deactivate Plugins PRO</h3>
|
||||
<p>Advanced plugin management with conditional loading and optimization.</p>
|
||||
<a href="https://freesoul-deactivate-plugins.com/pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Kadence Suite</h3>
|
||||
<p>Premium Kadence products for enhanced design and functionality.</p>
|
||||
<div class="button-group">
|
||||
<a href="https://www.kadencewp.com/kadence-blocks/pro/" target="_blank" class="button">Kadence Blocks Pro</a>
|
||||
<a href="https://www.kadencewp.com/child-theme-builder/" target="_blank" class="button">Child Theme Builder</a>
|
||||
<a href="https://www.kadencewp.com/kadence-conversions/" target="_blank" class="button">Conversions</a>
|
||||
<a href="https://www.kadencewp.com/pattern-hub/" target="_blank" class="button">Pattern Hub</a>
|
||||
<a href="https://www.kadencewp.com/kadence-theme/pro/" target="_blank" class="button">Kadence Pro</a>
|
||||
<a href="https://www.kadencewp.com/kadence-shop-kit/" target="_blank" class="button">Shop Kit</a>
|
||||
<a href="https://www.kadencewp.com/kadence-simple-share/" target="_blank" class="button">Simple Share</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Link Whisper</h3>
|
||||
<p>AI-powered internal linking suggestions and management.</p>
|
||||
<a href="https://linkwhisper.com/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Media File Renamer Pro</h3>
|
||||
<p>AI-Powered media file renaming for better SEO.</p>
|
||||
<a href="https://meowapps.com/plugin/media-file-renamer/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Ninja Tables Pro</h3>
|
||||
<p>Advanced table creation and management with premium features.</p>
|
||||
<a href="https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Rank Math SEO PRO</h3>
|
||||
<p>Advanced SEO tools and features for better search engine optimization.</p>
|
||||
<a href="https://rankmath.com/pricing/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Really Simple SSL Pro</h3>
|
||||
<p>Advanced SSL management and security features.</p>
|
||||
<a href="https://really-simple-ssl.com/pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Scalability Pro</h3>
|
||||
<p>Advanced performance optimization and scaling tools.</p>
|
||||
<a href="https://scalability.pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Social Engine Pro</h3>
|
||||
<p>Advanced social media scheduling and management.</p>
|
||||
<a href="https://meowapps.com/plugin/social-engine/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>TaxoPress Pro</h3>
|
||||
<p>Advanced taxonomy and tag management tools.</p>
|
||||
<a href="https://taxopress.com/pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>Tutor LMS Pro Suite</h3>
|
||||
<p>Premium LMS features including certificate builder.</p>
|
||||
<div class="button-group">
|
||||
<a href="https://www.themeum.com/product/tutor-lms/" target="_blank" class="button">Tutor LMS Pro</a>
|
||||
<a href="https://www.themeum.com/product/certificate-builder/" target="_blank" class="button">Certificate Builder</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>WP Migrate</h3>
|
||||
<p>Professional WordPress migration and backup solution.</p>
|
||||
<a href="https://deliciousbrains.com/wp-migrate-db-pro/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>WP Social Ninja Pro</h3>
|
||||
<p>Advanced social media integration and management tools.</p>
|
||||
<a href="https://wpsocialninja.com/pricing/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>WP Ultimo</h3>
|
||||
<p>Complete solution for creating WordPress multisite networks.</p>
|
||||
<a href="https://wpultimo.com/pricing/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
|
||||
<div class="wpa-pro-plugin">
|
||||
<h3>YellowPencil Pro</h3>
|
||||
<p>Advanced visual CSS style editor and customization tool.</p>
|
||||
<a href="https://yellowpencil.waspthemes.com/" target="_blank" class="button button-primary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
<?php elseif ($active_tab == 'general'): ?>
|
||||
<div class="wp-allstars-toggle">
|
||||
<label for="wp_allstars_lazy_load">
|
||||
|
Reference in New Issue
Block a user