The title heading is linking as it should – but links within content are not.
I have my site in maintenance mode – as it isn’t launched yet. can I send you login details in private?
Hi!
Please update to Enfold 2.6.2. This issue should be fixed since version 2.6.
Regards,
Peter
I am already updated to Enfold 2.6.2. I’m pretty sure it the problem only started after updating to 2.6.2
Hey Karmen,
Try the following, open /includes/helper-post-format.php and look for the occurrences (line 231 and 239) of:
$current_post['content'] = str_replace($link, "", $current_post['content']);
Replace them by:
$current_post['content'] = preg_replace("
$link`”, “”, $current_post[‘content’], 1);
`
Best regards,
Josue
When using that code I get this error
Warning: preg_replace() [function.preg-replace]: Delimiter must not be alphanumeric or backslash in /clientdata/apache-www/f/o/focuseyecentre.com.au/www/wp-content/themes/enfold/includes/helper-post-format.php on line 230
This worked though
$current_post[‘content’] = preg_replace(‘/$link/’, “”, $current_post[‘content’], 1);
thanks for pointing me in the right direction…