Skip to content

Commit

Permalink
update footer link to use https
Browse files Browse the repository at this point in the history
  • Loading branch information
sksaju committed Mar 25, 2024
1 parent 0ed9e9a commit 83d161f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/classes/AdminCustomizations/Customizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function main_screen() {
?>
</div>

<a class="tenup-badge" href="http://10up.com" target="_blank"><span aria-label="<?php esc_attr_e( 'Link to 10up.com', 'tenup' ); ?>">10up.com</span></a>
<a class="tenup-badge" href="https://10up.com" target="_blank"><span aria-label="<?php esc_attr_e( 'Link to 10up.com', 'tenup' ); ?>">10up.com</span></a>

<div class="feature-section one-col">
<h2><?php esc_html_e( 'Thanks for working with team 10up!', 'tenup' ); ?></h2>
Expand Down Expand Up @@ -192,7 +192,7 @@ public function enqueue_scripts() {
* @return string
*/
public function filter_admin_footer_text() {
$new_text = sprintf( __( 'Thank you for creating with <a href="https://wordpress.org">WordPress</a> and <a href="http://10up.com">10up</a>.', 'tenup' ) );
$new_text = sprintf( __( 'Thank you for creating with <a href="https://wordpress.org">WordPress</a> and <a href="https://10up.com">10up</a>.', 'tenup' ) );
return $new_text;
}
}

0 comments on commit 83d161f

Please sign in to comment.