• Resolved lucioparr

    (@lucioparr)


    I’m using Bogo in English/Italian. Posts written in English show the navigation arrow only on the left side, while those in Italian show it only on the right side. It seems that the navigation is split between the two versions. Any suggestion how to fix this?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Takayuki Miyoshi

    (@takayukister)

    The linked page is in 404. Is it by intention? I don’t get what problems you’re facing.

    Thread Starter lucioparr

    (@lucioparr)

    The correct link is https://luciophoto.com/street-photography/. Please have a look now.

    Plugin Author Takayuki Miyoshi

    (@takayukister)

    OK. I can view the page now. But I can’t find any Bogo-related navigation on it.

    Thread Starter lucioparr

    (@lucioparr)

    I found a solution assigning tags to posts for english and italian and adding this to function file

    add_filter( ‘get_next_post_excluded_terms’, ‘tu_exclude_terms’ );
    add_filter( ‘get_previous_post_excluded_terms’, ‘tu_exclude_terms’ );
    function tu_exclude_terms() {
    if (! has_tag(’69’)) {
    return array( ’69’ );
    }else{
    return array( ’70’ );
    }
    }

    Thank you anyhow

Viewing 4 replies - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.