pilart
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] How to translate the Homepage using PolylangI found a file for an other theme and modified it to mine (Full Frame Pro). After that I implemented it in the child folder.
The way I have it now does not work, I get a white screen. I think it is the php function,
Below is the functions.php code and the wpml-confic.xml code.
Any help would be very appreciated.
Thanks<?php /** * Child Theme functions and definitions * */ /** * Loading Parent theme stylesheet * */ add_action( 'wp_enqueue_scripts', 'fullframe_child_enqueue_styles' ); function fullframe_child_enqueue_styles() { wp_enqueue_style( 'fullframe-parent-style', get_template_directory_uri() . '/style.css' ); } /** * Template for Clearing WPML Invalid Cache * * To override this in a child theme * simply create your own fullframe_wpml_invalidcache(), and that function will be used instead. * * @since Full Frame */ function fullframe_wpml_invalidcache() { delete_transient( ‘fullframe_featured_content' ); } // fullframe_wpml_invalidcache /* endif; */ add_action( 'after_setup_theme', ‘fullframe_wpml_invalidcache' );:
and this is the wpml-config.xml code:
<wpml-config> <admin-texts> <key name=“fullframe_options"> <key name="featured_header_image_alt"/> <key name="featured_header_image_url"/> <key name="search_text"/> <key name="excerpt_more_text"/> <key name="footer_left_content"/> <key name="footer_right_content"/> <key name="promotion_headline"/> <key name="promotion_subheadline"/> <key name="promotion_headline_button"/> <key name="promotion_headline_url"/> <key name="featured_content_headline"/> <key name="featured_content_subheadline"/> <key name="featured_content_link_1"/> <key name="featured_content_link_2"/> <key name="featured_content_link_3"/> <key name="featured_content_link_4"/> <key name="featured_content_link_5"/> <key name="featured_content_link_6"/> <key name="featured_content_link_7"/> <key name="featured_content_link_8"/> <key name="featured_content_link_9"/> <key name="featured_content_link_10"/> <key name="featured_content_title_1"/> <key name="featured_content_title_2"/> <key name="featured_content_title_3"/> <key name="featured_content_title_4"/> <key name="featured_content_title_5"/> <key name="featured_content_title_6"/> <key name="featured_content_title_7"/> <key name="featured_content_title_8"/> <key name="featured_content_title_9"/> <key name="featured_content_title_10"/> <key name="featured_content_content_1"/> <key name="featured_content_content_2"/> <key name="featured_content_content_3"/> <key name="featured_content_content_4"/> <key name="featured_content_content_5"/> <key name="featured_content_content_6"/> <key name="featured_content_content_7"/> <key name="featured_content_content_8"/> <key name="featured_content_content_9"/> <key name="featured_content_content_10"/> <key name="featured_link_1"/> <key name="featured_link_2"/> <key name="featured_link_3"/> <key name="featured_link_4"/> <key name="featured_link_5"/> <key name="featured_link_6"/> <key name="featured_link_7"/> <key name="featured_link_8"/> <key name="featured_link_9"/> <key name="featured_link_10"/> <key name="featured_title_1"/> <key name="featured_title_2"/> <key name="featured_title_3"/> <key name="featured_title_4"/> <key name="featured_title_5"/> <key name="featured_title_6"/> <key name="featured_title_7"/> <key name="featured_title_8"/> <key name="featured_title_9"/> <key name="featured_title_10"/> <key name="featured_content_1"/> <key name="featured_content_2"/> <key name="featured_content_3"/> <key name="featured_content_4"/> <key name="featured_content_5"/> <key name="featured_content_6"/> <key name="featured_content_7"/> <key name="featured_content_8"/> <key name="featured_content_9"/> <key name="featured_content_10"/> </key> </admin-texts> </wpml-config>
Forum: Plugins
In reply to: [Polylang] How to translate the Homepage using PolylangYes everything on my homepage is managed trough Appearance / Customize / Theme Options / Promotion Headline Options
In there I want to have the Promotion Headline Text, the Promotion Subheadline Text and the Promotion headline Butten Text in a second language.
Forum: Themes and Templates
In reply to: [Quality] Bilingual site using Quality themeHi
I have the same problem with my Full Frame Pro theme and I am also using Polylang plugin.
If possible I’d like to get step by step instructions to solve this issue.Any help is highly appreciate.
Thanks