Alessandro Senese aka Ceceppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Ceceppa Multilingua] Flags on title – doesn't showSorry was a bug, just fixed it….
Forum: Plugins
In reply to: [Ceceppa Multilingua] Translation of Cookies Law Info PluginYes, the syntax is like the qtranslate one:
[:en]Accept[/:en][:it]Accetto[/:it]
Forum: Plugins
In reply to: [Ceceppa Multilingua] Can not translate the name of a shipping optionThanks for the report and screenshots, I’ll have a look in this days…
Cheers
Forum: Plugins
In reply to: [Ceceppa Multilingua] Flags on title – doesn't showHi Nicolò,
I made some test with hueman theme, If the page title is not displayed on any widget on left page, it works fine.
Basically the plug-in to avoid to show flags everywhere just match the title got from wp with the one of the page. If them matches it add the flags, but only on the first occurrences.
I used that theme in the past and, to avoid this, had the flags in the box with the category…Forum: Plugins
In reply to: [Ceceppa Multilingua] posts only in one languageHi,
can you past your site link?Forum: Plugins
In reply to: [Ceceppa Multilingua] Translate category descriptionHi,
now you can’t, but I’ll have a look in the next days and check if there is something I can do…Forum: Plugins
In reply to: [Ceceppa Multilingua] Can not translate the name of a shipping optionHi,
to be honest I wrote the addon for woocommerce, but I don’t have time to check I missed something…
Can you tell me where the option is? So, I’ll try to implement it…Thanks
Forum: Plugins
In reply to: [Ceceppa Multilingua] Third language settings cannot be savedHi,
sorry for delay… probably somethings went wrong during ceceppa’s update.
Check if the table wp_ceceppa_ml has all the fileds shown in this image: http://goo.gl/wU08w0Forum: Plugins
In reply to: [Ceceppa Multilingua] Support to hreflang tag sitemap generation on 1.50Hi,
for the hreflang the html link is added in the site header as described here: https://support.google.com/webmasters/answer/189077?hl=en.
So I generate a <link> tag for each enabled language.For the sitemap I fixed some bugs that assigned a wrong language slug for the links generated into the sitemap. Also now there are no more duplicated permalinks when the post is assigned to more than one language.
I made all the tests with yoast sitemap.Forum: Plugins
In reply to: [Ceceppa Multilingua] Crash with SEO by YoastHi,
please update to cml 1.5.0, as I fixed an issue with latest yoast version…Forum: Plugins
In reply to: [Ceceppa Multilingua] Error issueHi,
I fixed the issue in the development version, that should be released soon…
Anyway if you want to fix it manually you can edit the ceceppaml.php file and change the file 342 in:function pre_post_link( $permalink, $post = null, $leavename = null ) {
Forum: Plugins
In reply to: [Ceceppa Multilingua] Ceceppa change static home pageHi,
yes the error is in that line.. For now the fix is available only on the github version… I hope to release it asap…Thanks for the report…
Forum: Plugins
In reply to: [Ceceppa Multilingua] Error when saving secondary languageHi,
it’s strange that those parameters are missing…
Can you try to edit the ceceppaml.php file and change the lines:function pre_post_link( $permalink, $post, $leavename ) { if( is_preview() ) {in
function pre_post_link( $permalink, $post = null, $leavename = null ) { if( is_preview() || null == $post ) {if so, can you tell me if the change works for you?
Ciao,
I wrote some lines of code based on this topic: https://wpml.org/forums/topic/postie-plugin-and-wpml/function set_language_fix($post){ // This Postie action does not need to return anything // But if to use the same function elsewhere, // lets return the $post object anyway! global $wpCeceppaML; if(!isset($wpCeceppaML)) return $post; $id = $post['ID']; $post_type = $post['post_type']; $default_lang = CMLLanguage::get_default(); CMLLanguage::set_post( $default_lang, $id ); return $post; } add_action('postie_post_after', 'set_language_fix', 10, 1);I didn’t check this code, but should works properly…
Forum: Plugins
In reply to: [Ceceppa Multilingua] Pagination on other languages doesn't workHi,
which problem do you have? What permalink settings are you using?