Tagged: slider
- This topic has 6 replies, 3 voices, and was last updated 9 years, 6 months ago by Sakin.
-
AuthorPosts
-
April 17, 2015 at 7:36 pm #56003leslieMember
When French is chosen, slider text remains in English.
April 17, 2015 at 10:04 pm #56016SakinKeymaster@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' );
April 18, 2015 at 12:46 am #56046leslieMemberThank you!
April 27, 2015 at 7:47 pm #56677RobertoParticipantI’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.May 2, 2015 at 10:26 pm #57010SakinKeymaster@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' );
May 4, 2015 at 9:49 pm #57115RobertoParticipantHello 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 regardsMay 7, 2015 at 9:41 pm #57341 -
AuthorPosts
- The topic ‘Second Language in Featured Slider’ is closed to new replies.