Topic Resolution: Resolved
  • Closed
  • Pako Moritz
    Spectator
    27.07.2015 at 19:25 #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
    28.07.2015 at 06:04 #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
    28.07.2015 at 07:37 #19246

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