Topic Resolution: Resolved
  • Closed
  • Pako Moritz
    Spectator
    July 27, 2015 at 7:25 pm #19226

    Hi, i set the option show similar posts in settings to On: Same kategory, but its showing nothing. What have i to do, to see similar post options in a post?

    Denzel Chia
    Moderator
    Posts: 2656
    July 28, 2015 at 6:04 am #19238

    Hi,

    It’s a bug with the theme.

    Open up evolve-plus/library/functions/basic-functions.php go to line 423 and find the following line of codes.

    $evolve_similar_posts = get_option('evl_similar_posts','disable'); if ($evolve_similar_posts == "category") {

    Change to the following line of codes.

    $evolve_similar_posts = evolve_get_option('evl_similar_posts','disable'); if ($evolve_similar_posts == "category") {

    The function name used is wrong, it should be evolve_get_option and not get_option.

    Thanks!

    Pako Moritz
    Spectator
    Posts: 40
    July 28, 2015 at 7:37 am #19246

    Ah i see, is fixed now and working. Thank you.