jpsteinwand
Forum Replies Created
-
Forum: Plugins
In reply to: [Tumblr Crosspostr] https required on tumblr APIYou can change http to https in the following files:
wp-content/plugins/tumblr-crosspostr/lib/OAuthWP_Tumblr.php lines 8 and 23
wp-content/plugins/tumblr-crosspostr/lib/oauth_api/oauth_configuration.json lines 361-363I also have this issue with the honeypot when submitting the form using IE 11. It works in Chrome and Firefox. I tried changing the field label to something obscure and that didn’t fix it, so I don’t think it’s auto-fill related.
Forum: Plugins
In reply to: [Easy Sign Up] Issue with data page on IISGlad to help. If there is a possibility this data could be OS dependent, (and use \r\n instead), you could strip the \r:
explode(“\n”, str_replace(“\r”, ”, $data));
Forum: Plugins
In reply to: [Easy Sign Up] Just show Email fieldI was able to do this by doing the following:
Turn off First/Last name and phone (shortcode [easy_sign_up fnln=0 phone=0]
This will show only the Name & Email, however the Name field is still there. You can modify lib/esu-front-end-class.php to remove the field.
Find the following section:
if($fnln == true ) : unset($options['n']); else: unset($options['fn']); unset($options['ln']); endif;
Replace with:
if($fnln == true ) : unset($options['n']); else: unset($options['n']); // added to remove name field unset($options['fn']); unset($options['ln']); endif;
Forum: Plugins
In reply to: [Easy Sign Up] Issue with data page on IISIf I replace PHP_EOL with “\n” it works on both IIS and Unix.
Forum: Plugins
In reply to: [Really Simple Share] Google custom search embedded in pluginI have a client with the same issue with this plugin. Since they only use Facebook and Twitter share buttons, the code can be added to the post template (entry-footer.php in their theme) without a plugin.
https://developers.facebook.com/docs/plugins/share-button
https://about.twitter.com/resources/buttons#tweetFor Facebook, replace the link URL with the code
<?php echo get_permalink(); ?>