I currently am making a wordpress site where my customer can enter the title of a post and in my theme I want to translate the title of the post into Italian, but only the title, and I would like to do it in my theme. I tried using GTranslate, but my guess is that no longer works because Google now charges for that api.
Does anyone have any suggestions?
It's a shame Google Translate API is not free anymore but it's still the best I've used.
There are some free alternatives including Microsoft's translation service.
http://msdn.microsoft.com/en-us/library/ff512404.aspx
Related
Currently developing a theme for Wordpress site which needs to have two versions of every page. The case is that the pages should differ whether browsing as one type of customer(b2b) or another(b2c). This should be controlled by a url variable.
An example of what i am trying to achieve.
www.domain.com?version=b2b - b2b frontpage
www.domain.com?version=b2c - b2c frontpage
www.domain.com - Fallback b2b frontpage
In the admin area the best solution would be having those two different frontpages connected like when using WPML or other multilingual plugins (even though i am not searching for a language plugin).
I have tried to google this case with no luck and all i cand find is the language plugins.
Looking forward for your help. I am really stuck :)
I have a Invision Power Board forum
and I am seriously thinking to change it and convert it to a Wordpress blog/news site
since I have a lot of threads, and post replies my question is can I convert it too just Wordpress without adding bbpress plugin to Wordpress?
there I a paid service that could do teh conversion but into bbpress in Wordpress I just want the thread replies to appear in worpress as comments on each post
My website is multilingual(En,fr,rs) having woocommerce created by using the qTranslate plugin. But the problem is that, I am unable to translate woocommerce message (cart, checkout, email contents) but fortunately achieved with jQuery except email notification and thank you order page.
At the last WPML paid plugin purchased but how to use it only for woocommerce(cart, checkout, email contents etc) pages and I don't want WPML functionality over all the site.
Is there any setting to disable WPML for the site where enable only for woocommerce section only, because I have already achieved my task as I want with qTranslate?
One more thing don't suggest "qTranslate to WPML importer" plugin which is useless for my site. Your help will be very appreciable.
You'll need WPML String Translation and Woo Multilingual Plugin by WPML to translate those items.
On other hand, if your website is made in 1 language, you can use PO files to translate such staff. Don;t forget about special software for proper editing.
Cheers
#oliver is right but WPML is one of the Worst multilingual plugin for WordPress as it down the site and by which it hammers the SEO and speed of site.
I have used WPML on 4 sites and its a average rating.
How can I pull the posts of one blogger(written on his wordpress blog) to my site without installing the wordpress on my site? What are requirements and limitations of doing that?
There are a couple ways to use wordpress as a CMS only, without actually using it as your site or to expose content for use on another site.
RSS feeds as noted in another answer is good for read-only access to posts. To interact with content you'll need another solution.
You can enable XML-RPC in wordpress and use a library like php xmlrpc to connect and pull post data. However, XML-RPC is limited out of the box and mostly geared towards publishing to wordpress, not pulling out stuff.
The most flexible solutions is a REST plugin for wordpress that expose your posts via restful API. Check out:
http://wordpress.org/extend/plugins/json-api/
One limitation is you'll obvioiusly not have some of the wordpress-as-a-website-building-tool plugin functionality available on the non-wordpress site.
If it's WordPress you could just use the RSS Feed to syndicate content to your site?
To grab the content you want - http://codex.wordpress.org/WordPress_Feeds
I believe that the plugin Wp RSS Multi importer should do the trick. It pulls out RSS feeds from the blog you want to syndicate into your own blog. You can get the plugin here http://wordpress.org/plugins/wp-rss-multi-importer/. The problem could be if what you want is not a feed. I for example want content that looks like this http://bake.co.ke/pg/recent+blog+posts. I don't want to syndicate feeds but the real content from another website.
I have a wordpress multisite network and it has 6 blogs who's posts I want to extract and put into 6 different pages on a separate website (this separate website is not wordpress based but it is php based). Its kind of like integrating wordpress blog into my own website but it does'nt seem to work for wordpress MU blogs. I spent all morning searching the web on how to do this but have come up with nothing. Anyone have any idea on how I can achieve this?
Thanks
Easiest way to do it is with the free FishPig extension for Magento.
http://www.magentocommerce.com/magento-connect/wordpress-integration.html
I use it on all of my sites and it's pretty easy.
You can get then get WordPress MU Integration from this extension:
http://fishpig.co.uk/wordpress-mu-integration.html
If you are extracting posts from each site, then using feed would be an obvious option to go. just post fix the /feed to each blog main url to get posts. In your own site, you will get posts in XML format, you then can parse it with php simpleXML.