Alessandro Senese aka Ceceppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Ceceppa Multilingua] Can't translate Theme options parametersHi,
in the php file just below this line:$home_advance_search_title= get_option('theme_home_advance_search_title');Forum: Plugins
In reply to: [Ceceppa Multilingua] Can't translate Theme options parametersHi,
sorry for delay…
You can use something like this:cml_translate( $home_advance_search_title );and store the translation in “Ceceppa Multilingua” -> “My translations” table
Forum: Plugins
In reply to: [Ceceppa Multilingua] Issue with translating site title and headlineHi,
sorry for delay… You have to check your theme code and look up this function:get_bloginfothe usage of this function should be something like this:
<?php get_bloginfo( 'name', 'display' ); ?>the parameter DISPLAY is required, if missing the plugin will not be able to translate site title/tagline.
Cheers
Ciao,
I tried to have a look to the website, I just found out that for some reason the loop is called twice when the plug-in is enabled.
Anyway from tomorrow I should have more free time to carry on plugin and fix it…Forum: Plugins
In reply to: [Ceceppa Multilingua] Adding hreflang tagHi Aurora,
yes I’ll add it in next update 🙂Forum: Plugins
In reply to: [Ceceppa Multilingua] Compatibility with Revolution SliderHi,
sorry or delay. Sorry but I don’t now if it works fine with those plugin 🙁Forum: Plugins
In reply to: [Ceceppa Multilingua] Homepage irraggiungibile dopo installazione pluginCiao Claudio,
sorry but we cannot write in Italian here…
There is an option in “Ceceppa Multilingua” -> “Settings” page where you can disable the redirectionForum: Plugins
In reply to: [Ceceppa Multilingua] Show only flags for mobileHi,
sorry for delay…
now you can’t, but tomorrow I’ll publish an update by adding the text in a “<span>” tag, so you’ll be able to do it…Forum: Plugins
In reply to: [Ceceppa Multilingua] Impossibile aggiungere una nuova linguaCiao,
this is the problem, because the plugin require it. With phpmyadmin just add this field:cml_custom_flag int(11)
to
_ceceppa_ml table
Forum: Plugins
In reply to: [Ceceppa Multilingua] Impossibile aggiungere una nuova linguaCiao Massimo,
the fields: cml_language_slug and cml_custom_flag, are missing or you didn’t write it?Anyway can you contact me here?
http://www.alessandrosenese.eu/contattiForum: Plugins
In reply to: [Ceceppa Multilingua] Insert a combo in menuThere is an error in the code, this is the right one:
echo '<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">'; foreach( CMLLanguage::get_all() as $lang ) { $img = sprintf( '<img src="%s" title="%s" alt="%s" />', CMLLanguage::get_flag_src( $result->id, $size ), $lang->cml_language, sprintf( __( '%1$ flag', 'ceceppaml' ), $result->cml_language_slug ) ); echo '<option value="' . cml_get_the_link( $lang ) . '">' . $img . '</option>'; } echo '</select>';Anyway I sent an email to you, let me know 🙂
Forum: Plugins
In reply to: [Ceceppa Multilingua] Issues with Categories in Ajax Mega MenuCiao,
the problem is that I have no idea, because I have to do some test…
Can you provide me a wordpress test area with both plugin installed? And give me access, so I can see and try to figure out what goes wrong?Thanks
Forum: Plugins
In reply to: [Ceceppa Multilingua] Insert a combo in menu1., 2. Use this code:
echo '<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">'; foreach( CMLLanguage::get_all() as $lang ) { $img = sprintf( '<img src="%s" title="%s" alt="%s" />', CMLLanguage::get_flag_src( $result->id, $size ), $lang->cml_language, sprintf( __( '%1$ flag', 'ceceppaml' ), $result->cml_language_slug ) ); echo '<option value="' . cml_get_the_link( $lang ) . '">' . $img . '</option>"; } echo '</select>';Hi,
can you contact me here? alessandrosenese.eu/contattiForum: Plugins
In reply to: [Ceceppa Multilingua] Issues with Categories in Ajax Mega MenuCiao,
I had some issue with mega menu in the past… The problem I have to study it and try to fix the issue, but I don’t know when I’ll have time do to it 🙁