Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #240459

    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?

    #240460
    This reply has been marked as private.
    #241060

    Hi!

    Please update to Enfold 2.6.2. This issue should be fixed since version 2.6.

    Regards,
    Peter

    #241078

    I am already updated to Enfold 2.6.2. I’m pretty sure it the problem only started after updating to 2.6.2

    #241944

    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

    #242014

    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

    #242017

    This worked though

    $current_post[‘content’] = preg_replace(‘/$link/’, “”, $current_post[‘content’], 1);

    #242019

    thanks for pointing me in the right direction…

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘BUG: with recent update Post Format Link.’ is closed to new replies.