Skip to content

Commit

Permalink
fix: store link on SDK notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel committed Jul 17, 2024
1 parent a9a1856 commit 43f4569
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion includes/class-rop.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ private function define_admin_hooks() {
add_filter(
'tweet_old_post_pro_lc_no_valid_string',
function ( $message ) {
return str_replace( '<a href="%s">', '<a href="' . admin_url( 'admin.php?page=TweetOldPost' ) . '">', $message );
$message = str_replace( '<a href="%s" target', '<a href="https://store.themeisle.com/" target', $message );
$message = str_replace( '<a href="%s">', '<a href="' . admin_url( 'admin.php?page=TweetOldPost' ) . '">', $message );
return $message;
}
);

Expand Down

0 comments on commit 43f4569

Please sign in to comment.