clegeard
Forum Replies Created
-
Hi,
I use WPML and I’ve managed to do it this way:
1) Edit facebook-like-box.php
2) Search for en_US, it appears twice.
3) Surround the code with this condition:
if( ICL_LANGUAGE_CODE==’en’ ) { …. }
4) Copy the code and change ‘en’ and ‘en_UK’ with the language you need.That’s it! The only problem is that when you update the plugin you will have to repeat these changes.
Forum: Plugins
In reply to: [Advanced post slider] Sticky PostHi,
I have the same problem as zoaCode, the slider only shows my sticky posts and not those I define in the settings. How can I fix it?
Thanks in advanceHi Jordy,
You’re right, I’ve found the problem is due to WPML plugins and WordPress 4.0.
Updating the plugins every is working fine.
ThanksHi,
I have created the wpml-config.xml file and uploaded file, but I can’t see the string in the WPML String Translation.
I only get this message in the WPML Translation Manager on the Administrative chains to translate:
[plugin: cookie-law-info] CookieLawInfo-1.1.2 [translate]
some strings might be not registered
notify_message:
button_1_text:
button_1_url:
button_2_text:
button_2_url:
showagain_text:When I click on translate, the strings don’t appear.
What am I doing wrong?
Thanks
Forum: Plugins
In reply to: [Avatar Manager] Custom avatar does not appear in author pageHi Cătălin,
Thanks for your help, I’ve managed to make it work.
It was a problem of my codingThanks again.
Forum: Plugins
In reply to: [Avatar Manager] Custom avatar does not appear in author pageHello,
I am using this function but it does not work.
The call in my author.php es this way:<?php echo get_avatar( get_the_author_meta( ‘user_email’ ), apply_filters( ‘twentytwelve_author_bio_avatar_size’, 70 ) ); ?>
but I get the gravatar image and not that I have uploaded with your plugin.
However the images I see in the back office user list and in the AMR Users Directory are the correct ones.
Do you have an idea of the problem ?
Thanks
Forum: Themes and Templates
In reply to: Thesis / using is_category in custom_functions not workingSorry I thought we had the same problem !
Forum: Themes and Templates
In reply to: Thesis / using is_category in custom_functions not workingHi,
I have the same problem, I want to customize some category pages, like this :
function custom_archive_info() { if (is_category('equipamiento')) { ?> <div class="post_box top intro_block"> <div class="headline_area"> <h1><?php single_cat_title(); ?></h1> </div> <div class="format_text"> <p>text goes here</p> </div> </div> <?php } } remove_action('thesis_hook_archive_info', 'thesis_default_archive_info'); add_action('thesis_hook_archive_info', 'custom_archive_info');I hope you can help.
Thanks