shizumaruriya
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Buddypress with qTranslate-XThe Activity is a part of functions of BuddyPress(Social network plugin).
I thought you knew because the thread title, Sorry :p
Actually, This is complex to me.
So, I don’t know how to check with the proper method.
However, Thank you for your support.<3Forum: Plugins
In reply to: [qTranslate X] Buddypress with qTranslate-XThank you for your reply!
And sorry for my late reply due to the time zone difference.
I copy-paste your JSON code and it worked perfectly!
Good Job! Thank you very much!Forum: Plugins
In reply to: [qTranslate X] Buddypress with qTranslate-XThank you for your reply.
I modified the functions.php in child theme.
And added these:add_filter( ‘bp_get_activity_action’, ‘translate’ );
add_filter( ‘bp_get_activity_content_body’, ‘translate’ );
add_filter( ‘bp_get_activity_content’, ‘translate’ );And now it seems work to me.
Is this a correctly way to solve the problem?
Thanks a lot.Forum: Plugins
In reply to: [BP Portfolio] Too many redirect with qTranslate-XNervermind, It’s due to nginx setting.
I follow this post to fix the problem:
http://fontelearn.com/en/redirect-problem-with-qtranslate-x/Edit site in:
/etc/nginx/sites-available/And change:
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}to this:
location / {
try_files $uri $uri/ /index.php?$args;
}