Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #56003
    leslie
    Member

    When French is chosen, slider text remains in English.

    http://astergroup.ca/

    #56016
    Sakin
    Keymaster

    @leslie: I see that you are using qTranlsate X plugin and we haven’t made this theme compatible with that plugin. This theme is compatible with WPML and Polylang plugin. We are in the process of making it compatible with qTranlsate X plugin in next version update. For, now you need to build child theme. You can download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file.

    /**
     * Template for Clearing qtranslatex Invalid Cache
     */
    function catchkathmandu_qtranslatex_invalidcache() {
    	delete_transient( 'catchkathmandu_post_sliders' );
    	delete_transient( 'catchkathmandu_page_sliders' );
    	delete_transient( 'catchkathmandu_category_sliders' );
    	delete_transient( 'catchkathmandu_image_sliders' );
    	delete_transient( 'catchkathmandu_homepage_headline' );
    	delete_transient( 'catchkathmandu_featured_content' );
    	delete_transient( 'catchkathmandu_footer_content' );	
    	delete_transient( 'catchkathmandu_footercode' );
    	delete_transient( 'catchkathmandu_featured_image' );
    
    }
    
    add_action( 'after_setup_theme', 'catchkathmandu_qtranslatex_invalidcache' );
    #56046
    leslie
    Member

    Thank you!

    #56677
    Roberto
    Participant

    I’m using Catch Everest Pro with the translation plugin Ceceppa Multilingual and I have the same problem of Leslie.

    Could you please help me?
    Thank you and kind regards.

    #57010
    Sakin
    Keymaster

    @Roberto: It’s same for Catch Everest Pro theme as well. Just build child theme and then add the following code in your child theme functions.php file.

    /**
     * Template for Ceceppa Multilingua Invalid Cache
     */
    function catcheverest_ceceppa_invalidcache() {
    	delete_transient( 'catcheverest_post_sliders' );
    	delete_transient( 'catcheverest_page_sliders' );
    	delete_transient( 'catcheverest_category_sliders' );
    	delete_transient( 'catcheverest_image_sliders' );
    	delete_transient( 'catcheverest_homepage_featured_content' );
    	delete_transient( 'catcheverest_homepage_headline' );
    	delete_transient( 'catcheverest_footer_content_new' );
    }
    
    add_action( 'after_setup_theme', 'catcheverest_ceceppa_invalidcache' );
    #57115
    Roberto
    Participant

    Hello Sakin,
    I’ve done what you wrote, but I cannot find a way to insert the slider text in english…
    Could you help me?
    Thank you and kind regards

    #57341
    Sakin
    Keymaster

    @Roberto: Not sure about that. It working fine with WPML and Polylang through string translation where we have wpml-config.xml file. So, you can ask in plugin support forum.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Second Language in Featured Slider’ is closed to new replies.