Alessandro Senese aka Ceceppa
Forum Replies Created
-
Forum: Plugins
In reply to: [Ceceppa Multilingua] Impossibile aggiungere una nuova linguaCiao,
you need to access to your database using phpmyadmin, can you do this?Forum: Plugins
In reply to: [Ceceppa Multilingua] Function/shortcode for showing text in current languageHi,
this is an example:function ava_cml_shortcode_text(){ ?> <div class='slogan'><?php echo "<p class='slogan_main'>".( CMLLanguage::get_current_slug() == "sv" ) ? "Blastring" : "Finnish text here" . </p>"; echo "<p class='slogan_sub'>".( CMLLanguage::get_current_slug() == "sv" ) ? "Blastring" : "Finnish text here" ."</p>"; ?></div> <?php}change
Forum: Plugins
In reply to: [Ceceppa Multilingua] Theme translations not working.Hi,
sorry for delay. Can you check if the option “Change wordpress language”, in Ceceppa -> Settings -> Advanced tab, is enabled?Ok,
I had a look on google and found this link:http://vc.wpbakery.com/video-academy/add-shortcodes-visual-composer-wordpress/
check if works for you
Forum: Plugins
In reply to: [Ceceppa Multilingua] Impossibile aggiungere una nuova linguauhm…
Can you tell me the structure of the “wp_ceceppa_ml” table?and if you disable the plugin works fine?
Forum: Plugins
In reply to: [Ceceppa Multilingua] Insert a combo in menuHi,
there is only one function to generate a “pseudo” combo that generate a
- list.
For you can use this code:echo '<select>'; foreach( CMLLanguage::get_all() as $lang ) { echo "<option value='$lang->cml_language_slug'>$lang->cml_language</option>"; } echo '</select>';Forum: Plugins
In reply to: [Ceceppa Multilingua] Insert a combo in menuWhat does “combo in menu” mean?
Do you want show languages in submenu? Or ?Uhm…
Try to use this shortcode and let me know if it works:[caption]Caption[/caption]this just display the text between [caption] shortcode.
If doesn’t works try to disable my plugin and test the shortcode again.Hi,
for the first issue. Is it happens for all links, or just for certain link ( like page, category or post )?For the second one check if the folder is writable
I got the password.
Sorry but jetpack decided to doesn’t forward the messages to my email :(…
I’ll be in touch 🙂
Ciao,
I want to fix the issue, but I changed the password for my account and I forgot it :(…
Can you reset the password and send me the new one here: http://www.alessandrosenese.eu/contatti ?Thanks
Yes,
it’s my fault… It’s just a warning, but I just fixed it.Ciao
AlexForum: Plugins
In reply to: [Ceceppa Multilingua] Cannot change post's languageCan you check if last version fix your issue?
Forum: Plugins
In reply to: [Ceceppa Multilingua] Impossibile aggiungere una nuova linguaCiao,
can you edit your wp-config.php file and change this line:// Enable WP_DEBUG mode define('WP_DEBUG', false);to:
// Enable WP_DEBUG mode define('WP_DEBUG', true);and also add those:
// Enable Debug logging to the /wp-content/debug.log file define('WP_DEBUG_LOG', true); // Disable display of errors and warnings define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors',0); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define('SCRIPT_DEBUG', true);after try to add the language and past here the content of the file wp-content/debug.log
Thanks