<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: WPML Ajax porfolio item opening issue and Widget title</title>
		<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title</link>
		<description>Support Forum - Topic: WPML Ajax porfolio item opening issue and Widget title</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 16:45:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title" rel="self" type="application/rss+xml" />

		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72773</link>
			<pubDate>Fri, 24 Aug 2012 21:43:45 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72773@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;One more filter added for image right url, to the post above:&#60;br /&#62;
&#60;code&#62;add_filter ('wp_get_attachment_url', 'wpcs_correct_domain_in_url');&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72759</link>
			<pubDate>Fri, 24 Aug 2012 20:01:38 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72759@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Problem 1 is fully fixed and solution could be added to the theme update with Kriesi additional filters, so the all images and content has an appropriate domain name. What I mean additional filter, you can read from here: &#60;a href=&#34;http://www.wp-code.com/wordpress-snippets/how-to-make-sure-the-correct-domain-is-used-in-wpml/&#34; rel=&#34;nofollow&#34;&#62;http://www.wp-code.com/wordpress-snippets/how-to-make-sure-the-correct-domain-is-used-in-wpml/&#60;/a&#62; so every content has an appropriate domain name.&#60;/p&#62;
&#60;p&#62;So using multi domain site with &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; there should be added function and filters to functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;br /&#38;gt;
//Add all the necessary filters. There are a LOT of WordPress functions, and you may need to add more filters for your site.&#38;lt;br /&#38;gt;
add_filter (&#38;#39;site_url&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;get_option_siteurl&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;stylesheet_directory_uri&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;template_directory_uri&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;post_thumbnail_html&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;plugins_url&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;admin_url&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
add_filter (&#38;#39;fullsize&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#38;lt;br /&#38;gt;
//Changes the domain for a URL so it has the correct domain for the current language&#38;lt;br /&#38;gt;
//Designed to be used by various filters&#38;lt;br /&#38;gt;
//@param string $url&#38;lt;br /&#38;gt;
//@return string&#38;lt;br /&#38;gt;
function wpcs_correct_domain_in_url($url){&#38;lt;br /&#38;gt;
    if (function_exists(&#38;#39;icl_get_home_url&#38;#39;)) {&#38;lt;br /&#38;gt;
        // Use the language switcher object, because that contains WPML settings, and it&#38;#39;s available globally&#38;lt;br /&#38;gt;
        global $icl_language_switcher;&#38;lt;br /&#38;gt;
        // Only make the change if we&#38;#39;re using the languages-per-domain option&#38;lt;br /&#38;gt;
        if (isset($icl_language_switcher-&#38;gt;settings[&#38;#39;language_negotiation_type&#38;#39;]) &#38;amp;&#38;amp; $icl_language_switcher-&#38;gt;settings[&#38;#39;language_negotiation_type&#38;#39;] == 2)&#38;lt;br /&#38;gt;
            return str_replace(untrailingslashit(get_option(&#38;#39;home&#38;#39;)), untrailingslashit(icl_get_home_url()), $url);&#38;lt;br /&#38;gt;
    }&#38;lt;br /&#38;gt;
    return $url;&#38;lt;br /&#38;gt;
}&#38;lt;br /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Actually this filter fixes the problem with AJAX portfolio opening:&#60;br /&#62;
&#60;code&#62;add_filter (&#38;#39;admin_url&#38;#39;, &#38;#39;wpcs_correct_domain_in_url&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72709</link>
			<pubDate>Fri, 24 Aug 2012 17:44:14 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Problem 2 fixed also, regarding cross domain font-face rendering in firefox by adding this to .htaccess:&#60;br /&#62;
AddType application/vnd.ms-fontobject .eot&#60;br /&#62;
AddType font/ttf .ttf&#60;br /&#62;
AddType font/otf .otf&#60;br /&#62;
&#38;lt;FilesMatch &#34;\.(ttf&#124;otf&#124;eot)$&#34;&#38;gt;&#60;br /&#62;
&#38;lt;IfModule mod_headers.c&#38;gt;&#60;br /&#62;
Header set Access-Control-Allow-Origin &#34;*&#34;&#60;br /&#62;
&#38;lt;/IfModule&#38;gt;&#60;br /&#62;
&#38;lt;/FilesMatch&#38;gt;&#60;/p&#62;
&#60;p&#62;So the problem 3 only left! I think it's totally related to the theme, I also have no success to show Latest Portfolio widget content on second language. (remember, different domains per language)&#60;/p&#62;
&#60;p&#62;Hope you guys will find  solution!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72493</link>
			<pubDate>Thu, 23 Aug 2012 12:39:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">72493@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi nuforms,&#60;/p&#62;
&#60;p&#62;I apologize for not having a solution for the issue, I'll check with Kriesi to see if there have been any developments on our end since there hasn't been a response here on it.&#60;/p&#62;
&#60;p&#62;It definitely isn't our intention to have the customer bug fix themselves but as I'm sure you have found going into the issue and code it can be quite complicated to fix sometimes. &#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72147</link>
			<pubDate>Tue, 21 Aug 2012 19:02:32 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72147@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;1st problem partly fixed.&#60;br /&#62;
I did it with hard coded link for second language, but it's not a good solution, in file class-superobect.php find this function function set_javascript_framework_url() and replace with below:&#60;/p&#62;
&#60;p&#62;function set_javascript_framework_url()&#60;br /&#62;
		{&#60;br /&#62;
			if ( ICL_LANGUAGE_CODE == 'en' ) {&#60;/p&#62;
&#60;p&#62;				echo &#34;\n &#38;lt;script type='text/javascript'&#38;gt;\n /* &#38;lt;![CDATA[ */  \n&#34;;&#60;br /&#62;
				echo &#34;var avia_framework_globals = {\n \tframeworkUrl: '&#34;.AVIA_FW_URL.&#34;', \n \tinstalledAt: '&#34;.AVIA_BASE_URL.&#34;', \n \tajaxurl: '&#34;.home_url( '/wp-admin/admin-ajax.php' ).&#34;'\n \t}; \n /* ]]&#38;gt; */ \n &#34;;&#60;br /&#62;
				echo &#34;&#38;lt;/script&#38;gt;\n \n &#34;;&#60;/p&#62;
&#60;p&#62;			} if ( ICL_LANGUAGE_CODE == 'ru' ) {&#60;br /&#62;
				echo &#34;\n &#38;lt;script type='text/javascript'&#38;gt;\n /* &#38;lt;![CDATA[ */  \n&#34;;&#60;br /&#62;
				echo &#34;var avia_framework_globals = {\n \tframeworkUrl: '&#34;.AVIA_FW_URL.&#34;', \n \tinstalledAt: '&#34;.AVIA_BASE_URL.&#34;', \n \tajaxurl: 'http://nuforms.ru/wp-admin/admin-ajax.php'\n \t}; \n /* ]]&#38;gt; */ \n &#34;;&#60;br /&#62;
				echo &#34;&#38;lt;/script&#38;gt;\n \n &#34;;&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;		}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72138</link>
			<pubDate>Tue, 21 Aug 2012 18:04:58 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72138@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;For some reason it stopped work, but solution is somewhere near for first problem, please check code.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-72055</link>
			<pubDate>Tue, 21 Aug 2012 09:01:25 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">72055@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I found a bug place for first problem:&#60;/p&#62;
&#60;p&#62;avia.js line 372:&#60;br /&#62;
url: avia_framework_globals.ajaxurl,&#60;/p&#62;
&#60;p&#62;If I put direct link there like&#60;br /&#62;
url: &#34;http://nuforms.com/wp-admin/admin-ajax.php&#34;, - this works on English .com site&#60;br /&#62;
url: &#34;http://nuforms.ru/wp-admin/admin-ajax.php&#34;, - this works on Russian .ru site&#60;/p&#62;
&#60;p&#62;So to fix it, here what I did:&#60;/p&#62;
&#60;p&#62;in file class-superobect.php find this function function set_javascript_framework_url() and replace with below:&#60;/p&#62;
&#60;p&#62;		function set_javascript_framework_url()&#60;br /&#62;
		{&#60;/p&#62;
&#60;p&#62;			if ( is_language( 'en' ) ) {&#60;/p&#62;
&#60;p&#62;				echo &#34;\n &#38;lt;script type='text/javascript'&#38;gt;\n /* &#38;lt;![CDATA[ */  \n&#34;;&#60;br /&#62;
				echo &#34;var avia_framework_globals = {\n \tframeworkUrl: '&#34;.AVIA_FW_URL.&#34;', \n \tinstalledAt: '&#34;.AVIA_BASE_URL.&#34;', \n \tajaxurl: '&#34;.admin_url( 'admin-ajax.php' ).&#34;'\n \t}; \n /* ]]&#38;gt; */ \n &#34;;&#60;br /&#62;
				echo &#34;&#38;lt;/script&#38;gt;\n \n &#34;;&#60;/p&#62;
&#60;p&#62;			} elseif ( is_language( 'ru' ) ) {&#60;br /&#62;
				echo &#34;\n &#38;lt;script type='text/javascript'&#38;gt;\n /* &#38;lt;![CDATA[ */  \n&#34;;&#60;br /&#62;
				echo &#34;var avia_framework_globals = {\n \tframeworkUrl: '&#34;.AVIA_FW_URL.&#34;', \n \tinstalledAt: '&#34;.AVIA_BASE_URL.&#34;', \n \tajaxurl: '&#34;.home_url( 'wp-admin/admin-ajax.php' ).&#34;'\n \t}; \n /* ]]&#38;gt; */ \n &#34;;&#60;br /&#62;
				echo &#34;&#38;lt;/script&#38;gt;\n \n &#34;;&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;		}&#60;/p&#62;
&#60;p&#62;Also to functions php add this function:&#60;br /&#62;
function is_language( $current_lang ) {&#60;/p&#62;
&#60;p&#62;	global $sitepress;&#60;/p&#62;
&#60;p&#62;	if ( $current_lang == $sitepress-&#38;gt;get_current_language() ) {&#60;br /&#62;
		return true;&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;-------------------------------------------&#60;br /&#62;
While I was waiting for support I did this fix by my own, regardless my weak php skills!!! Its very strange that customer should fix theme problems by himself while there are a lot of support team members.... is that good support? I dont want to complain, jsut saying that if noone DON'T WANT TO HELP, do it by yourself! Hope this fix help someone with same problem.&#60;/p&#62;
&#60;p&#62;----------------&#60;br /&#62;
SUPPORT TEAM! PLEASE HELP ME WITH OTHER PROBLEMS!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-71204</link>
			<pubDate>Wed, 15 Aug 2012 16:42:56 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">71204@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Aleksandr,&#60;/p&#62;
&#60;p&#62;I'm not aware of any news yet but we'll hopefully have an update very soon.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-70774</link>
			<pubDate>Mon, 13 Aug 2012 10:58:44 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">70774@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62;-Team,&#60;/p&#62;
&#60;p&#62;Any news on this?&#60;br /&#62;
I've put 1.5 Choices version and no fix to portfolio and widget title translate still..&#60;br /&#62;
Also there is no FEEDBACK button on the left side on second language with A different domain per language -&#38;gt; ON.&#60;/p&#62;
&#60;p&#62;Thanks in support, &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62;-Team please provide any status information.&#60;/p&#62;
&#60;p&#62;BR,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-69885</link>
			<pubDate>Tue, 07 Aug 2012 21:21:33 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">69885@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; I have sent the files to david, hopefully he can help us with this issue :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Kriesi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WPML-Team on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-69579</link>
			<pubDate>Mon, 06 Aug 2012 10:12:47 +0000</pubDate>
			<dc:creator>WPML-Team</dc:creator>
			<guid isPermaLink="false">69579@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Aleksandr,&#60;/p&#62;
&#60;p&#62;Let me contact Kriesi for an updated version of the theme to get it fixed. &#60;/p&#62;
&#60;p&#62;I have the idea that using the home url instead of the site url for ajax, requests should work.&#60;/p&#62;
&#60;p&#62;Sorry about the late reply, I wasnt notified of your message. Ill make sure I set it up to get notified from now.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-69019</link>
			<pubDate>Thu, 02 Aug 2012 17:55:05 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">69019@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Aleksandr,&#60;/p&#62;
&#60;p&#62;I'll have to ask Kriesi to take a look as I am familiar enough with the &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; implementation and how the AJAX portfolio might effect its use.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-68497</link>
			<pubDate>Tue, 31 Jul 2012 11:54:07 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">68497@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;bump!&#60;/p&#62;
&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Please give me some answer, will these issues be fixed or not?&#60;/p&#62;
&#60;p&#62;Sorry David, but your answer doesn't give any hope that it will be fixed.&#60;/p&#62;
&#60;p&#62;You said it's my problem with domain name, I think it's not my problem, it's templates problem since it's should work with &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; as said in description, otherwise I could buy any template and make WP Multilingual site with WP Multisite option. But I really like Kriesi templates and bought one because of &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; support! &#60;/p&#62;
&#60;p&#62;Regarding third problem, as you can see I did your suggestion in the first post! I don't know, is it some kind of solving problem write to me that I've already done..&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-67753</link>
			<pubDate>Thu, 26 Jul 2012 11:58:17 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">67753@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi David,&#60;/p&#62;
&#60;p&#62;Thanks for reply!&#60;/p&#62;
&#60;p&#62;1) I think it's possible to point, since &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; has ability to work with different domain names and has functionality for that. Hope it will be fixed soon. Please let me know about it's progress, because I need two sites running soon and in worst case if it is dead end probably I can try something different.&#60;/p&#62;
&#60;p&#62;2) Its a page title, portfolio title and more, please below.&#60;/p&#62;
&#60;p&#62;Here is css style for the font:&#60;br /&#62;
h1, h2, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {&#60;br /&#62;
   font-family: 'MyriadProLightRegular';&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;It's really strange that it doesn't work:&#60;br /&#62;
Firefox, IE9 and &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; 2 domains option&#60;/p&#62;
&#60;p&#62;Works:&#60;br /&#62;
Chrome, Opera&#60;/p&#62;
&#60;p&#62;If I put &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; to use &#34;Different languages in directories&#34;, then it works in every browser.&#60;/p&#62;
&#60;p&#62;3) Yes, I did it in String translation in &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; in 'Widgets' context and it didn't appear on site. Before I had experience with String translation and to me it also looks strange, I even checked Choices widget title php code, and &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; filter is applied there..&#60;/p&#62;
&#60;p&#62;If you need more information, please let me know. Login or something?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WPML-Team on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-67736</link>
			<pubDate>Thu, 26 Jul 2012 08:50:41 +0000</pubDate>
			<dc:creator>WPML-Team</dc:creator>
			<guid isPermaLink="false">67736@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Aleksandr,&#60;/p&#62;
&#60;p&#62;I work at &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; support and would like to try and help out here.&#60;/p&#62;
&#60;p&#62;1) Your first problem is due to AJAX not being allowed to perform cross-domain requests. I think its the Avia Framework that sets the ajaxurl, but my version must be older and I dont have it. If we could point that to the translated url we should be able to fix it.&#60;/p&#62;
&#60;p&#62;2) Can you show me where you are using that font?&#60;/p&#62;
&#60;p&#62;3) You should find widget titles by going to String Translator and selecting the 'Widgets' context. Is that where you translated them?&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nuforms on "WPML Ajax porfolio item opening issue and Widget title"</title>
			<link>http://www.kriesi.at/support/topic/wpml-ajax-porfolio-item-opening-issue-and-widget-title#post-67559</link>
			<pubDate>Wed, 25 Jul 2012 11:08:03 +0000</pubDate>
			<dc:creator>nuforms</dc:creator>
			<guid isPermaLink="false">67559@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi everyone,&#60;/p&#62;
&#60;p&#62;Thanks to Kriesi for such a good theme Choices.&#60;/p&#62;
&#60;p&#62;INFORMATION:&#60;/p&#62;
&#60;p&#62;Site: &#60;a href=&#34;http://www.nuforms.com&#34; rel=&#34;nofollow&#34;&#62;http://www.nuforms.com&#60;/a&#62;&#60;br /&#62;
Wordpress: 3.4&#60;br /&#62;
Choices: 1.4&#60;br /&#62;
&#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62;: 2.5.2&#60;br /&#62;
Browser: Firefox 14,15&#60;/p&#62;
&#60;p&#62;PROBLEMS:&#60;/p&#62;
&#60;p&#62;---------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;PROBLEM 1&#60;/strong&#62;&#60;br /&#62;
On second language ajax portfolio doesn't open item, just showing loading animation for a second and nothing happens. Main language works ok.&#60;/p&#62;
&#60;p&#62;First problem depend from &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; settings, please check below: &#60;/p&#62;
&#60;p&#62;GOOD &#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#60;br /&#62;
&#60;u&#62;&#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; Settings:&#60;/u&#62;&#60;/p&#62;
&#60;p&#62;Language URL format&#60;br /&#62;
Choose how to determine which language visitors see contents in&#60;/p&#62;
&#60;p&#62;V...Different languages in directories (&#60;a href=&#34;http://nuforms.com/&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com/&#60;/a&#62; - English, &#60;a href=&#34;http://nuforms.com/ru/&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com/ru/&#60;/a&#62; - Russian, etc.)&#60;br /&#62;
......A different domain per language&#60;br /&#62;
V...Language name added as a parameter (&#60;a href=&#34;http://nuforms.com?lang=ru&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com?lang=ru&#60;/a&#62; - Russian)&#60;/p&#62;
&#60;p&#62;BAD &#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#60;br /&#62;
&#60;u&#62;&#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; Settings:&#60;/u&#62;&#60;/p&#62;
&#60;p&#62;Language URL format&#60;br /&#62;
Choose how to determine which language visitors see contents in&#60;/p&#62;
&#60;p&#62;......Different languages in directories (&#60;a href=&#34;http://nuforms.com/&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com/&#60;/a&#62; - English, &#60;a href=&#34;http://nuforms.com/ru/&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com/ru/&#60;/a&#62; - Russian, etc.)&#60;br /&#62;
V...A different domain per language&#60;br /&#62;
......Language name added as a parameter (&#60;a href=&#34;http://nuforms.com?lang=ru&#34; rel=&#34;nofollow&#34;&#62;http://nuforms.com?lang=ru&#60;/a&#62; - Russian)&#60;/p&#62;
&#60;p&#62;---------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;PROBLEM 2&#60;/strong&#62;&#60;br /&#62;
I'm using custom font with @font-face and it doesnt work on different domain(Russian), site's second language. (Browser Firefox 14,15)&#60;br /&#62;
There is something wrong with the styles or URL.&#60;br /&#62;
Seems it's related to the AJAX portfolio item opening bug, because it's also depends from the same &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; settings that I wrote above.&#60;/p&#62;
&#60;p&#62;---------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;PROBLEM 3&#60;/strong&#62;&#60;br /&#62;
I know this theme is prepared for tranlating with &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; and Widget titles as well, but for some reason I can successfully translate Twitter widget title with &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; String translation.&#60;br /&#62;
For example:&#60;/p&#62;
&#60;p&#62;&#38;lt;span class='widget_first'&#38;gt;Latest&#38;lt;/span&#38;gt; Tweets&#60;br /&#62;
to&#60;br /&#62;
&#38;lt;span class='widget_first'&#38;gt;Последние&#38;lt;/span&#38;gt; Твиты&#60;/p&#62;
&#60;p&#62;And translation doesn't appear on the page.&#60;/p&#62;
&#60;p&#62;---------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;Hope you will help me!&#60;br /&#62;
If you require additional information, please tell me, I can provide login to the site.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Aleksandr
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
