Hello I want not only the subject line put also the preheader text on my archive page
On the plugin.php I add the following code on line 150
$buffer .= esc_html($this->replace($preheader_text)).;
So I get
if (empty($this->options[‘show’])) {
$url = NewsletterModule::add_qs($base_url, ’email_id=’ . $email->id);
$buffer .= ‘‘ . esc_html($this->replace($subject, $preheader_text, $email)) . ‘<br/>’;
$buffer .= esc_html($this->replace($preheader_text)).;
}
But doesn’t work have somebody any suggestions?