Skip to content

Commit

Permalink
Tweak: link to theme preview & install [TMZ-258] (#158)
Browse files Browse the repository at this point in the history
* Tweak: link to theme preview & install [TMZ-258]

* update link
  • Loading branch information
nuritsha authored Jan 9, 2025
1 parent 8553d18 commit 44205bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/theme/components/theme-dependency.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ public function activate() {
deactivate_plugins( HELLOPLUS_PLUGIN_BASE );

wp_die(
esc_html__( 'The Hello Plus plugin requires the Hello Biz theme to be installed and active.', 'hello-plus' ),
wp_kses( sprintf( __( 'The Hello Plus plugin requires the Hello Biz theme to be installed and active. <a href="%s">Check it out!</a>', 'hello-plus' ), admin_url( 'theme-install.php?theme=hello-biz' ) ),
[
'a' => [
'href' => [],
],
]
),
esc_html__( 'Plugin Activation Error', 'hello-plus' ),
[ 'back_link' => true ]
);
Expand Down

0 comments on commit 44205bd

Please sign in to comment.