FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
views
/
layouts
/
partials
Edit File: admin-settings-notices.php
<?php if ( ! empty( $status ) ) : ?> <style> .notice { margin-left: 0; margin-right: 0; } </style> <?php if ( 'unauthorized' === $status ) : ?> <div class="notice notice-error is-dismissible"> <p><?php esc_html_e( 'Your API key is incorrect. Please double-check it is correct and update it.', 'surecart' ); ?></p> </div> <?php endif; ?> <?php if ( 'saved' === $status ) : ?> <div class="notice notice-success is-dismissible"> <p><?php esc_html_e( 'Saved.', 'surecart' ); ?></p> </div> <?php endif; ?> <?php if ( 'missing' === $status ) : ?> <div class="notice notice-error is-dismissible"> <p><?php esc_html_e( 'Please enter an API key.', 'surecart' ); ?></p> </div> <?php endif; ?> <?php endif; ?>
Save
Back