• Hi all,

    I’m having this issue with my website where the translated page does not have the menu buttons. They completely disappear as well as news articles that are on the original page. I have enabled Fix missing dynamic content and Disable dynamic translation but still no luck. Any help will be greatly appreciated.

    This is the original page in spanish

    https://ibb.co/WP6p8kx

    And when I go to translate the page, the buttons are missing

    https://ibb.co/p1pbgvD

    Another example below of the original page with the news articles

    https://ibb.co/0DSc0H3

    And when I see the translated page

    https://ibb.co/NjQjgnb

    • This topic was modified 2 weeks, 2 days ago by javierabdor.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Alex

    (@alexcozmoslabs)

    Hi,

    Right now seems you don’t have our plugin active on the website. Could you please enable it in order to investigate?
    What you can do is to try enabling a default WP theme and see if the menu items are displayed correctly in additional language.

    Best Regards,

    Thread Starter javierabdor

    (@javierabdor)

    Hi,

    Thank you for your prompt response.

    I activated the plugin on the website. Could the theme cause an issue with translate press?

    Best regards,

    Plugin Support Alex

    (@alexcozmoslabs)

    Hi,

    You can try to disable it and set up a WP default theme, like twenty-twenty for example.

    If the issue persists, do you have JetSearch? Because it seams like JetSearch added some compatibility with TranslatePress and applied a filter

    //Translatepress Compatibility
    if ( class_exists( ‘TRP_Translate_Press’ ) ) {
    add_filter( ‘trp_force_search’, ‘__return_true’ );
    }

    This applies this filter on ALL queries basically braking queries entirely.

    The only posts that worked, were the posts that we indexed for search, basically posts that were accessed in a secondary language before installing JetSearch.

    To fix this

    • Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db
    • Add the following code to the end of it:
      add_filter( ‘trp_force_search’, ‘__return_false’, 99 );
    • Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality

    And if possible contact JetSearch via their support and ask they remove the filter as it completely brakes queries in secondary languages.

    Kind Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.