How would I go about customizing the text displayed while our site is still in “stealth mode”? For example, I’d like to add the date we plan to launch, and a link to more info.
ebell
November 1, 2023, 2:47pm
2
You would need to edit the rl_homepage_stealthmode()
function:
function rl_homepage_stealthmode($html = null)
{
$html .= link_to_home_page(rl_the_logo(), array('class'=>'wiggle', 'aria-label'=>'Logo'));
$html .= '<h3 class="query-header">'.__("Check Back Soon").'</h3>';
$html .= '<div class="stealth-main">';
$html .= '<div class="stealth-text">';
$html .= '<p>'.__('%s is temporarily unavailable.','<strong>'.option('site_title').'</strong>').'</p>';
$html .= '</div>';
$html .= '</div>';
return '<section id="home-stealth" class="inner-padding">'.$html.'</section>';
}
1 Like