Allow translation via WPML plugin Page 2 All in One SEO Pack Feature Requests Forum

The support forums have a new home! Please visit All in One SEO Pack's new residence at Semper Plugins to purchase a support plan.

Please consider registering
guest

Log In

Lost password?
Advanced Search:

— Forum Scope —



— Match —



— Forum Options —




Wildcard usage:
*  matches any number of characters    %  matches exactly one character

Minimum search word length is 4 characters - maximum search word length is 84 characters

Topic RSS
Allow translation via WPML plugin
September 2, 2009
6:50 am
Miketee
New Member
Forum Posts: 3
Member Since:
September 2, 2009
Offline
21

I don't want to minimize things, but this "cooperation" would probably involve very little time investment. I pledge to donate if they find the time !!!

cheers

Mike

September 2, 2009
7:16 am
senlin
New Member
Forum Posts: 6
Member Since:
July 15, 2009
Offline
22

Yeah, Amir has offered his help, ideas and assistance to make AIOSEO with multilingual support more than once already.

He has explained that it doesn't take hours of recoding, instead it can be done by adding 2 calls and he even has offered his help to code it all together!

Just because you don't hear them, doesn't necessarily mean that there are thousands of developers out there that program their sites in a multilingual environment. I already posted once about it…

Since WPML is out we are embracing it! This embrace goes further than just WPML, we also embrace the plugin developers that understand the necessity of enabling their plugin(s) to be able to handle a multi-lingual environment. No matter if we have been using a particular plugin for years, if there is another that integrates seamlessly with WPML, the switch is easily made.

Of course you can't and won't be bothered that I have stopped using your plugin alltogether and use Add Meta Tags instead, but that is hardly the point.

The point is that people with multilingual websites will always choose multilingual functionality over anything else…

So please add those few lines of code to the AIOSEO plugin so we can have multilingual functionality combined with great SEO functionality!

Thanks,
Piet

September 2, 2009
3:36 pm
hallsofmontezuma
Admin
Forum Posts: 202
Member Since:
June 8, 2009
Offline
23

You must be a subscriber to view administrator posts. Click here to purchase a support subscription.

For what shall it profit a man, if he shall gain the whole world, and lose his own soul?
September 2, 2009
5:28 pm
Amir
New Member
Forum Posts: 8
Member Since:
July 15, 2009
Offline
24

It would be very difficult to use. I realize you don't want to make changes to AIOSEOP for each tiny plugin, but I don't think it's the case here.

Can I show you an example for a single field on how to let WPML translate it? Then, you can see if you like it and can apply to the rest of the plugin's fields. This way, the texts that users enter in the AIOSEOP's admin page would appear for translation in WPML's string translation panel and the translations would display for different languages. It works very well now and have zero impact on speed.

When WPML isn't running, AIOSEOP will run normally, just as it runs right now.

It would take me a few minutes to do this change and document it in the PHP. I can send that to your for review and you decide if it's OK to include in the plugin. Would that be OK?

September 2, 2009
5:31 pm
hallsofmontezuma
Admin
Forum Posts: 202
Member Since:
June 8, 2009
Offline
25

You must be a subscriber to view administrator posts. Click here to purchase a support subscription.

For what shall it profit a man, if he shall gain the whole world, and lose his own soul?
September 2, 2009
5:36 pm
senlin
New Member
Forum Posts: 6
Member Since:
July 15, 2009
Offline
26

admin, have you ever even taken 2 mins of your time to look at what WPML is actually doing?

and the funniest thing is tht every time Amir offers you sth concrete, we don't hear from you for another couple of weeks…

Please, just say yes to Amir's offer above. Looking doesn't hurt and it certainly doesn't kill you, right?

September 12, 2009
6:20 pm
igabc
New Member
Forum Posts: 1
Member Since:
September 12, 2009
Offline
27

Michael…

Pls man… this is going to be the best plugin partnership EVER for WP! Just do it guys!

selin AND/OR Amir…

add-meta-tags-1.6 is installed in my WP (while waiting to have this "joint-venture" between Michael and Amir done) but I can't see the strings to be translated in the WPML strin translation page. Is there something else we should do beside installing the plugin?

Amir…

Since you've made the changes to your website to have the title in the different languages, could explain how to do it?

I am not a programmer so I would need somethig like "find this and add/replace this…" and so on. :)

PS: I have 3 sites that must be ran multilingual. I am going for WPML and have the translatio made by them as well. I don't think it will ever happen if I won't be able to work with AIOSEO (I will stick with multi WP installations wich is a pain in the …!)

Thanks a lot!

Gabriele

February 23, 2010
4:41 pm
beleriton
New Member
Forum Posts: 1
Member Since:
February 23, 2010
Offline
28

Hello Guys,

I think this would be one of the most important plugins that ever has been created for Wordpress.

I have a Norwegian blog today where im writing about snowboarding and snowboard trips. eks. The Alps.

For some time now i have got some comments that are in english that says something like this: "Great pictures and great blog, but i cant understand anything of what youre writing".

So the WPML would be a perfect match for my desire, but i also want people thats searching for snowboarding in Chamonix are able to find my blog and not only the norwegian people that use Google.

I really hope you could come to a term and create this plugin =)

nnBest RegardsnThomas
May 21, 2010
5:17 pm
sahar
New Member
Forum Posts: 2
Member Since:
May 21, 2010
Offline
29

I must say it's sad sad news the best seo plugin for worpress doesn't support the best multilanguage plugin for wordpress. now the only option i've got is to switch to headspace2.

August 12, 2010
3:32 am
ircf
New Member
Forum Posts: 1
Member Since:
August 12, 2010
Offline
30

Hi,

First, thank you for your great for AIOSEO developpers !

We found a solution to translate the home page title and metas (sorry for code readability but couldn't find a code tag). You just have to paste this in your theme functions.php or even create a plugin "aioseo-fix" :

/* AIOSEO hack : If using a static front page then use title, description and keywords from page meta instead of AIOSEO config */
/* Please AIOSEO developpers, could you modify the plugin so that this dirty hack would be useless ? */
function custom_aioseop_home_page_title($home_title){
global $post,$aiosp;
if ($aiosp->is_static_front_page() && $aiosp->internationalize(get_post_meta($post->ID, "_aioseop_title", true))){
$home_title = $aiosp->internationalize(get_post_meta($post->ID, "_aioseop_title", true));
}
return $home_title;
}
function custom_aioseop_description($description){
global $post,$aiosp;
if ($aiosp->is_static_front_page() && $aiosp->get_post_description($post)){
$description = $aiosp->get_post_description($post);
}
return $description;
}
function custom_aioseop_keywords($keywords){
global $post,$aiosp;
if ($aiosp->is_static_front_page() && $aiosp->internationalize(get_post_meta($post->ID, "_aioseop_keywords", true))){
$keywords = $aiosp->internationalize(get_post_meta($post->ID, "_aioseop_keywords", true));
}
return $keywords;
}
add_filter('aioseop_home_page_title','custom_aioseop_home_page_title');
add_filter('aioseop_description','custom_aioseop_description');
add_filter('aioseop_keywords','custom_aioseop_keywords');

Like said in the comments : this will make AIOSEO use the page meta instead of AIOSEO config when a static front page is used. Besides of allowing home page translations, this behaviour is more intuitive…

Please is it possible to integrate this behaviour in your nice plugin ? :)

Thank you again.

September 1, 2010
10:04 am
JorgeS
New Member
Forum Posts: 1
Member Since:
September 1, 2010
Offline
31

Hi guys,

It's a pity that this thread was open in July 2009 and sadly there's no really a solution yet :/ I wonder why, is there any special reason??

It'd so nice to see both plugins working toguether!

Cheers,
Jorge.

August 1, 2011
6:10 am
ab-tools
New Member
Forum Posts: 1
Member Since:
August 1, 2011
Offline
32
Awaiting Moderation

Forum Timezone: America/New_York

Most Users Ever Online: 205

Currently Online:
51 Guest(s)

Currently Browsing this Page:
2 Guest(s)

Top Posters:

romiojuliat: 102

yaoming987: 50

jintuy: 50

miki1986: 33

newshow: 28

karen1234: 27

Member Stats:

Guest Posters: 0

Members: 6356

Moderators: 3

Admins: 4

Forum Stats:

Groups: 5

Forums: 23

Topics: 1546

Posts: 3450

Newest Members: carofern@cisco.com, pronto, jessie, pbaylies, ninaeast, freda

Moderators: davecashmore (2), aaron (5), tempadmin (0)

Administrators: WordPress Professional (442), hallsofmontezuma (202), onefinejay (10), stevemortiboy (4)