Update Workflow toggle styling: - Match RankMath-style toggle switches - Remove old toggle switch styles - Consistent styling across all tabs

This commit is contained in:
Marcus Quinn
2025-03-15 02:14:12 +00:00
parent 73015b7a1a
commit 8bfb96b016
2 changed files with 23 additions and 49 deletions

View File

@ -842,15 +842,20 @@ function wpa_superstar_auto_upload_images_callback() {
'auto_upload_images' => false
));
?>
<label class="switch">
<input type="checkbox" name="wpa_superstar_workflow_options[auto_upload_images]"
<?php checked($options['auto_upload_images'], true); ?>>
<span class="slider round"></span>
</label>
<p class="description">
Import images that have external URLs into your Media Library when saving.
Consider disabling during large data imports with many external image URLs.
</p>
<div class="wpa-superstar-toggle">
<label>
<div class="wpa-toggle-switch">
<input type="checkbox"
name="wpa_superstar_workflow_options[auto_upload_images]"
<?php checked($options['auto_upload_images'], true); ?>>
<span class="wpa-toggle-slider"></span>
</div>
<?php esc_html_e('Enable Auto Upload Images', 'wpa-superstar'); ?>
</label>
<p class="description">
<?php esc_html_e('Import images that have external URLs into your Media Library when saving. Consider disabling during large data imports with many external image URLs.', 'wpa-superstar'); ?>
</p>
</div>
<?php
}