redywebs
Forum Replies Created
-
Forum: Plugins
In reply to: [Qtranslate Slug] Qtranslate Slug ProblemThanks for your time and quick response Carlos, I’ll try, but also wait for the new version as disabling the message is not exactly what I intended.
Forum: Plugins
In reply to: [Qtranslate Slug] Qtranslate Slug ProblemYes it does.
Would you please publish here when your next version is ready? In the meantime, is there any workaround?Thanks
Forum: Plugins
In reply to: [Qtranslate Slug] Qtranslate Slug ProblemI have tried your workaround but it doesn’t work. Slugs aren’t translated so it redirects to de/slug_in_english which doesn’t exist.
Update: it works on widget but not when post exists in other languages with: Sorry, this entry is only available in %LANG:, : and %.
Forum: Plugins
In reply to: [easyReservations] [Plugin: easyReservations] easy form greek versionHi, I have the same problem with multilingual site, the calendar and form do not translate.
I found this demo: http://demo.easyreservations.org which give you access to a demo admin with Premium plugin installed, and it doesn’t seem to work either.
That’s an important feature to my site, so I would like to see it working before buying the premium version or else I have to go for another plugin.
Luckily I did installed it on a testing site, no content or other plugins installed, just a clean WordPress 3.4.1 installation. I had to delete the whole site.
I´m trying a different plugin now: http://wordpress.org/extend/plugins/members/
Their forum is not an open forum, you have to register to get support.
OK, I just found this:
Permalinks should be set to /%post_id%/%postname%
It seems that does the trick
Forum: Plugins
In reply to: [Plugin: qTranslate] Taxonomy ProblemI had the same problem with a plugin that was using taxonomies.
Try this function, it worked for me:function qtranslate_edit_taxonomies(){ $args=array( 'public' => true , '_builtin' => false ); $output = 'object'; // or objects $operator = 'and'; // 'and' or 'or' $taxonomies = get_taxonomies($args,$output,$operator); if ($taxonomies) { foreach ($taxonomies as $taxonomy ) { add_action( $taxonomy->name.'_add_form', 'qtrans_modifyTermFormFor'); add_action( $taxonomy->name.'_edit_form', 'qtrans_modifyTermFormFor'); } } } add_action('admin_init', 'qtranslate_edit_taxonomies');Hope it helps