Alessandro Senese aka Ceceppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Ceceppa Multilingua] Error after Update to version 1.3.49I fixed warning messages, update to 1.3.50..
After update if you see that message:
“Update required, click here for update posts relations”,
something goes wron after upgrade, click on that link and the plugin will recreate relations between posts…
Forum: Plugins
In reply to: [Ceceppa Multilingua] Error after Update to version 1.3.49Can you past full error message?
Which line show Warning message?Forum: Plugins
In reply to: [Ceceppa Multilingua] Post translation dissapeared after updateSorry,
there was a bug in migration function…
I fixed in 1.3.49Forum: Plugins
In reply to: [Ceceppa Multilingua] get_the_date() does not support parameters? – RevisitedHi,
New version will fix the problem….version 1.3.48 is the same of 1.3.46.
I reverted back because some users losted links between posts after upgraded to 1.3.47…
The problem is fixed in 1.3.49 that will be uploaded in few hours…Forum: Plugins
In reply to: [Ceceppa Multilingua] Current theme … doesn't support localizationHi,
now the plugin load translation from “.mo”, not from “.po”…I’ll try to do some test with original .po file and my created .mo file to see the differences 🙂
Forum: Plugins
In reply to: [Ceceppa Multilingua] Current theme … doesn't support localizationHi,
the plugin try to hook the filter “load_textdomain_mofile” for know where the theme store “.po” files, otherwise print message “…doesn’t support localization, cannot be translated…”In next update, if detecting fails, I’ll allow the user to choose the path where the “.po” and “.mo” files…
uhm… no I don’t know…
Forum: Plugins
In reply to: [Ceceppa Multilingua] wp_queryCan you contact me here: http://alessandrosenese.eu/contatti?
I’ll send you preview of 1.3.47…
Forum: Plugins
In reply to: [Ceceppa Multilingua] Widget Category PostsSorry, I wanted to say 1.3.47…
Can you contact me here: http://alessandrosenese.eu/contatti?I’ll send you version 1.3.47…
The usage of cml_get_posts_by_language is:
//id of desired language…
cml_get_posts_by_language( $id );Forum: Plugins
In reply to: [Ceceppa Multilingua] get_the_date() does not support parameters?Thanks 🙂
Forum: Plugins
In reply to: [Ceceppa Multilingua] get_the_date() does not support parameters?Try to change the line:
add_filter( 'get_the_date', array( &$this, 'get_the_date' ), 0 );in:
add_filter( 'get_the_date', array( &$this, 'get_the_date' ), 0, 2 );Forum: Plugins
In reply to: [Ceceppa Multilingua] get_the_date() does not support parameters?I fixed the problem in 1.3.47, but it isn’t already done….
Replace the previous function “get_the_date” with that:function get_the_date( $the_date, $d ) {
global $post;if( empty( $d ) ) {
$format = $this->_current_language->cml_date_format;
if( empty( $format ) ) $format = get_option( ‘date_format’ );$the_date = mysql2date( $format, $post->post_date );
}return $the_date;
}Regards
Forum: Plugins
In reply to: [Ceceppa Multilingua] Widget Category PostsHi,
try this:// Get array of post info.
global $wpCeceppaML;
$cat_posts = new WP_Query(“showposts=” . $instance[“num”] . “&cat=” . $instance[“cat”] . “&post_type=any&post__in=” . $wpCeceppaML->$wpCeceppaML->get_posts_by_language( 1 ) );In the example 1 is the id of “Italian” language.
You could also use the function “cml_get_posts_by_language”, but it has a bug, I’ll fix it in 1.3.46
Regards
Forum: Plugins
In reply to: [Ceceppa Multilingua] Featured pages in Customizr not translatedHi,
I downloaded Customizr and I’ll do some test…
I’ll include “Filipino” in available language list 🙂Forum: Plugins
In reply to: [Ceceppa Multilingua] Problems saving changes/posts/everything.Hi,
another user has the same problem with linked posts…
I’m working on new version for try to fix the problem…In next update the link of “home” item will be forced to the home of current language…
I’ll try to fix also the problem with site title/tagline…
Thanks for reporting
Regards