AHWEBDEV
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook AWD All in one] Facebook Comment, and Facebook admin areaThe constant define your wordpress lang…
The second set the Default Facebook Lang.
Note: if a user is french and connect to your site, facebook will call elements in french.
Forum: Plugins
In reply to: [Facebook AWD All in one] Facebook Comment, and Facebook admin areaOk i found the problem… this is fixed in dev version.
You have 2 way to fix it.1. add the WPLANG constant in your wp-config.php file
asdefine('WPLANG','en_US');OR
2. set a lang value in global settings of Facebook AWD
as ‘en_US’where ‘en_US’ is your prefered lang… (fr_FR,es_ES etc…)
Forum: Plugins
In reply to: [Facebook AWD All in one] Facebook Comment, and Facebook admin areaHi, i need url of your site to check something.
ThanksBonjour, si la page se reload, c’est que le système n’arrive pas à te connecter…
C’est un des problèmes que rencontre le plugin. et je ne sais pas comment l’éviter…
Quel est l’url de ton site?
Quelle version de wordpress ?
Quel theme ?
Logs des erreurs JS ?
Merci.Ok so if it’s not clickable, it’s because there is ERRORS compatibility.
You may try to desactive each plugin one by one to test if that’s working.
a javascript error and all the form options will not work.
So if you want i help you, you should paste here the result of your JS console log when you load a page in admin Facebook settings.With that i will be able to said you what’s wrong with the plugin.
Are you using a theme for admin ?
Where did you set url for like box ?
Did you set a Facebook page url or a website URL ?Maybe settings are not updated ?
If you have error clicking on the ballon, can you paste error here ?
Go to your console javascript and copy the error text here.If error occured on javascript, so i think settings cannot be saved.
This error happens when the url for box is empty both in global settings and in widgets settings or shortcode settings.
What is wordpress version ?
Plugin version ?Thx
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a themeOh yes for sure…. If you want help me translate it in your lang you are welcome …
You can use if you want a nice plugin to translate => codestyling localisation
first you must scan the plugin AWD to get last sentence to translate. (this will update the flie AWD_facebook-xx_XX.pot in the langs directory) You can do it with this tool.after translate you can submit new translation file on this page:
http://www.ahwebdev.fr/plugins/documentation/facebook-awd/traduction.htmlI will add credits for translation file and author!
Thanks a lot helping me!
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a themeI will submit a new release…
But You already can dowload Development Version
This fix a bug with listing users avatar
fix the logout link.
Add an option to display the login button on the wp-login.php.You can try it!
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a themeOk i found the problem…
This is fixed in the developement version…
Forum: Plugins
In reply to: [Facebook AWD All in one] Facebook Comment, and Facebook admin area@kocevriste why do you spam here ? please go away…
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a theme1. you should set a complete URL in the redirect field and not just index.php…
2. Are you using multisite wordpress install ?
3. do you have some Javascript error when you try to logout ?
Forum: Plugins
In reply to: [Facebook AWD All in one] Facebook Comment, and Facebook admin areaHi, you should add the line before all the code you found…
like that:<?php echo do_shortcode('[AWD_comments url="'.get_permalink().'"]'); ?> <div class="postwrap commentswrap <?php if(!have_comments() && 'open' != $post->comment_status) echo "nocommentform";?>"> <div class="hentry"> <div class="copy"> <?php comments_template();?></div> </div> </div>Because i think the div commentswrap is hidden when your wp comments are not activated… so you must add the shortcode outside the div.
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a themeIn your function.php
You should rewrite this function:// Get Default User Icon function get_user_default_icon($author_id) { // Get Current User Default Icon $user_icon = get_usermeta( $author_id, 'user_default_icon'); return $user_icon; }AND REPLACE IT BY:
// Get Default User Icon function get_user_default_icon($author_id) { //get the facebook AWD object global $AWD_facebook; // Get Current User Default Icon $user_icon = get_usermeta( $author_id, 'user_default_icon'); //get the facebook icon if exist and if activated and if there is a facebook account if($AWD_facebook->plugin_option['connect_enable'] == 1 && $AWD_facebook->plugin_option['connect_fbavatar'] == 1){ $fbuid = get_user_meta($author_id,'fb_uid', true); if($fbuid != '') $user_icon = 'http://graph.facebook.com/'.$fbuid.'/picture'; } return $user_icon; }Forum: Plugins
In reply to: [Facebook AWD All in one] og:image and other thingsOpenGraph settings for home page are in globals OpenGraph settings.
You can set the field named “Image URL” in the section home page.
Thanks, i will fix that you noticed.
Forum: Plugins
In reply to: [plugin Facebook AWD] Need Help to display avatar on my simple q&a themeWOW… i will read that and answer you soon…