shecky
Forum Replies Created
-
Forum: Plugins
In reply to: [Crayon Syntax Highlighter] Not working visual edit and button in WP 3.9Same problem for me 🙁
My WordPress version is 3.9, Crayon version is 2.6.0Crayon popup open only in textual mode with Firefox 28.0, IE 11, Opera 12.16. IN Opera even the popup buttons “Add” and “Cancel” do not works.
No problem with with Iron 32.0.1750.1 and Safari 5.1.7.
Forum: Plugins
In reply to: [Better bbPress Signature] support for bbpress 2.3?There are some bugs to fix in bbpress-signature.php, so open this file and:
( 1 ) Replace all occurence of /better-bbpress-signatures/ with /better-bbpress-signature/
( 2 ) in function add_b3p_signature() replace$added = add_user_meta( $current_user->ID, 'b3p_signature', $signature_text, true );with:
$prev_signature = get_user_meta($current_user->ID, 'b3p_signature', true); $added = update_user_meta( $current_user->ID, 'b3p_signature', $signature_text, $prev_signature );Now plugin works perfectly 😉
Forum: Plugins
In reply to: [Nextend Google Connect] Bug: Login/link with Google is no longer workingMartin, error is caused by incorrect configuration of the Google application, not from plugin.
Apply the fix I wrote above and delete and recreate the Google application: everything will work properly 😉Forum: Plugins
In reply to: [Nextend Google Connect] Latest version (1.4.53) no longer workingTry to delete and recreate the Google application mr_narcan 😉
Forum: Plugins
In reply to: [Nextend Google Connect] Bug: Login/link with Google is no longer workingFix in my site works… 🙁
Try to delete and recreate the Google application 😉Forum: Plugins
In reply to: [Nextend Google Connect] Not workForum: Plugins
In reply to: [Nextend Google Connect] Latest version (1.4.53) no longer workingI have find the problem, guys!!!
And this is the solution:
– Open file nextend-google-connect.php.
– Find in row 265 ( function new_google_login_action() ) this code:} new_google_redirect(); }– and replaced with
} else { $authUrl = $client->createAuthUrl(); header('Location: ' . filter_var($authUrl, FILTER_SANITIZE_URL)); exit; } new_google_redirect(); }The plugin will return to work properly!!!
Forum: Plugins
In reply to: [Nextend Google Connect] Bug: Login/link with Google is no longer workingI have find the problem, guys!!!
– Open file nextend-google-connect.php.
– Find in row 265 ( function new_google_login_action() ) this code:} new_google_redirect(); }– and replaced with
} else { $authUrl = $client->createAuthUrl(); header('Location: ' . filter_var($authUrl, FILTER_SANITIZE_URL)); exit; } new_google_redirect(); }The plugin will return to work properly!!!
Forum: Plugins
In reply to: [Simple Facebook Connect] Support for Custom PostI resend the mail just now.
I’m a developer and know very well WordPress and PHP 😉
What you’re suggesting is to change all the Custom Post with a filter hook functions: but if I had different types of Custom Post, I should create a function for each of them.
My solution instead allows choose what publish and what not publish with a click: this would give more flexibility to your great plugin!
For example in my site I use bbPress and with my solution I can exclude replies and publish only the topics: all with a single click!
I only ask you to take a look at my modification without necessarily include it in your plugin: my just wants to be a suggestion to improve SFC 😉
I know that STC is not functional at the moment.
I asked you the old version (as you can read in the mail that I send) just to be able to help you in API updating and release as soon as STC.Regards.
Davide.Forum: Plugins
In reply to: [Simple Facebook Connect] Support for Custom PostHi Otto!
Mail addres is right?
Can you explain how use sfc_publish_post_types and where I can set it?
Can you send me a copy of your plugin Simple Twitter Connect?
Forum: Plugins
In reply to: [Simple Facebook Connect] Support for Custom PostHi Otto.
Thanks for reply.
I sent code to otto@ottodestruct.com on 30 November.Can you explain how use sfc_publish_post_types and where I can set it?
Thanks.
Forum: Plugins
In reply to: [WP SyntaxHighlighter] PRE and CODE button not show with bbPress 2.2.2I forgot: no javascript error occurs!
Forum: Plugins
In reply to: [Social] Italian TranslationCiao Manuel.
Mandami la tua mail via PM che ti giro i files 😉
Forum: Plugins
In reply to: [Facebook Fan Box Cache] "Official" Help Forum for Facebook Fan Box CacheMail sent 😉
Regards.
Davide.Forum: Plugins
In reply to: [Facebook Fan Box Cache] "Official" Help Forum for Facebook Fan Box CacheHi Donald!
Your plugin is wonderful, but there is a potential problem.
For retrieve image from Facebook you use file_get_contents.
This involves allow_url_fopen enabled in the server configuration, and this is a potential security issue on server.So I have modify your plugin to retrieve images with CURL 😛
If you want the file modify, please reply to this post and tell me where I can send it.
Regards.
Davide.P.S.: sorry for my bad english!