diff --git a/assets/styles/coming-soon.css b/assets/styles/coming-soon.css index d77af8042..b9b961959 100644 --- a/assets/styles/coming-soon.css +++ b/assets/styles/coming-soon.css @@ -301,4 +301,14 @@ footer p a:hover { .btn { margin-top: 40px; } +} + +.comingsoon_links { + font-size:13px; + } + +.comingsoon_links a { + text-decoration: none; + line-height: 18px; + color: #1555b3; } \ No newline at end of file diff --git a/bootstrap.php b/bootstrap.php index 691e68fb3..84013603e 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -59,6 +59,10 @@ function () { // properly get branding links depending on market $wordpress_hosting_page = ( get_option( 'mm_brand' ) === 'Bluehost_India' ) ? 'https://www.bluehost.in?utm_source=coming-soon-template&utm_medium=bluehost_plugin' : 'https://bluehost.com?utm_source=coming-soon-template&utm_medium=bluehost_plugin'; $my_panel = ( get_option( 'mm_brand' ) === 'Bluehost_India' ) ? 'https://my.bluehost.in/web-hosting/cplogin' : 'https://my.bluehost.com/web-hosting/cplogin'; +$website_guide_link = 'https://www.bluehost.com/blog/how-to-create-a-website-guide/'; +$migrate_link = 'https://www.bluehost.com/blog/how-to-migrate-a-wordpress-website-to-a-new-server/'; +$hosting_link = 'https://www.bluehost.com/hosting/shared'; + // Set coming soon values $bluehost_module_container->set( 'comingsoon', @@ -66,6 +70,16 @@ function () { 'admin_app_url' => admin_url( 'admin.php?page=bluehost#/home' ), 'template_h1' => __( 'Coming Soon!', 'wp-plugin-bluehost' ), 'template_h2' => __( 'A New WordPress Site', 'wp-plugin-bluehost' ), + 'template_coming_soon_links' => sprintf( + /* translators: %1$s is replaced with opening link tag taking you to bluehost.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to my.bluehost.com, %6$s is replaced with closing link tag */ + esc_html__( ' %1$sHow to Build a Website: A Practical Guide to WordPress on Bluehost%2$s %3$sHow to Migrate a Website to Bluehost?%4$s %5$sWhy choose Bluehost for WordPress?%6$s.', 'wp-plugin-bluehost' ) . ' ', + '', + '
', + '', + '
', + '', + '
' + ), 'template_footer_t' => sprintf( /* translators: %1$s is replaced with opening link tag taking you to bluehost.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to my.bluehost.com, %6$s is replaced with closing link tag */ esc_html__( 'A %1$sBluehost%2$s powered website. Is this your website? Log in to %3$sWordPress%4$s or %5$sBluehost%6$s.', 'wp-plugin-bluehost' ) . ' ',