You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
now the unauthenticated messages are only shown on the settings page. T… (#254)
* now the unauthenicatd messages are only shown on the settings page. The notice of invalid API creds, doenst show is no keys entered, only if we have keys and they are wrong.
* Fix simple liniting issues
if ( ! Settings::has_valid_archive_api_credentials() ) {
637
644
return'<div id="invalid_api_creds"><p class="description">' . esc_html__( 'The Archive.org API keys are invalid. Please check your settings.', 'internet-archive-wayback-machine-link-fixer' ) . '</p></div>' .
638
645
'<div id="unchecked_api_creds" style="display: none;"><p class="description">' . esc_html__( 'API credentials will be verified when you save the settings.', 'internet-archive-wayback-machine-link-fixer' ) . '</p></div>';
Copy file name to clipboardExpand all lines: templates/admin/dashboard/widget.php
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,6 @@
22
22
?>
23
23
24
24
<div class="iawmlf_dashboard-wrapper">
25
-
<?phpif ( ! $iawmlf_api_configured ) : ?>
26
-
<div class="iawmlf_dashboard-warning">
27
-
<?phpesc_html_e( 'You are using Link Fixer in unauthenticated mode, which restricts you to 4000 new snapshots per day. To unlock higher limits, please enter your API credentials to authenticate with Archive.org.', 'internet-archive-wayback-machine-link-fixer' ); ?>
Copy file name to clipboardExpand all lines: templates/admin/wizard/step-1.php
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@
35
35
</div>
36
36
37
37
<div class="iawmlf-wizard__content__intro">
38
-
<p><?phpesc_html_e( 'To archive more than 4000 links from your site to the Wayback Machine per day, you\'ll need a free archive.org account. Once you have your account, enter the API Access Key and Secret Key below.', 'internet-archive-wayback-machine-link-fixer' ); ?>
38
+
<p><?phpesc_html_e( 'To archive more than 4000 links from your site to the Wayback Machine per day, you\'ll need a free archive.org account. Once you have your account, enter the API Access Key and Secret Key below. (Optional)', 'internet-archive-wayback-machine-link-fixer' ); ?>
39
39
<br /><a href="https://archive.org/account/s3.php" target="_blank"><?phpesc_html_e( 'Get your API keys here.', 'internet-archive-wayback-machine-link-fixer' ); ?></a></p>
0 commit comments