Jon Bishop
Forum Replies Created
-
I’ll look into this more on my end (Socialize). There is also a new version of the plugin which might help.
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] Change text color or CSS in Call to Action?Just updated the plugin. You can now overwrite the CSS file if you like. Open socialize.css to see all of the CSS classes available.
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] How to align share buttons horizontally?I just added this option to the newest version. Let me know what you think.
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] Wonderful PluginThanks, even more wonderful with the new update I hope 🙂
Forum: Plugins
In reply to: [HubSpot for WordPress] [Plugin: HubSpot for WordPress] Forms cause errorThanks for bringing this to my attention. I’m adding some more advanced field validation for the next version. I’ll get rid of this problem while I’m at it.
Forum: Plugins
In reply to: [Socialize] [Plugin: Socialize] Trying to "Share" ON FB Not WorkingI would switch to the Like button if I were you. I’m going to fully remove the share button in the next version so might be a good idea to switch sooner than later. Facebook no longer supports the share button and its days are numbered.
Forum: Fixing WordPress
In reply to: Which File to Insert Tracking Code into?There is also a plugin made by HubSpot that further integrates HubSpot with the WordPress CMS http://wordpress.org/extend/plugins/hubspot/
Forum: Themes and Templates
In reply to: Adding Space to Plugin DisplayNo, sorry. I made the Socialize plugin.
Forum: Themes and Templates
In reply to: Adding Space to Plugin Displayno problem. the next version makes all of this easier but its been hard to complete. ive been doing small tweaks to the current version to keep it relevant in the meantime but the next version blows this one out of the water.
Forum: Themes and Templates
In reply to: Adding Space to Plugin DisplayActually it looks like it may have in fact worked. Try increasing the margin-bottom to something like 50px to see if it is really working.
Is your theme custom or a free theme you found online that I could test out on my own?
Working on this now. I added a new filter that lets people add the buttons to excerpts, I’ll look into this and upload a new version.
Forum: Themes and Templates
In reply to: Adding Space to Plugin DisplayTry adding the following to style.css in your theme:
.socialize-containter { margin-bottom:10px; }I didn’t test the code but it should work.
In the WordPress admin under shortcodes it should display the shortcode you should use next to the the input box where you paste your custom form.
This number has nothing to do with any IDs in HubSpot and is created by WordPress when you add a new custom form.
Try adding the following code to wp-about-author.php
if(!empty($wp_about_author_author['facebook'])){ if($wp_about_author_link!=""){ $wp_about_author_link .= "- "; } $wp_about_author_link .= "<a href='" . $wp_about_author_author['facebook']. "' title='". $wp_about_author_author['name'] ." on Facebook'>Facebook</a> "; } // Add this // if(!empty(get_the_author_email())){ if(get_the_author_email()!=""){ $wp_about_author_link .= "- "; } $wp_about_author_link .= "<a href='mailto:" . get_the_author_email() . "'>Email</a> "; } // End adding code // if(!empty($wp_about_author_author['posts_url'])){ if($wp_about_author_link!=""){ $wp_about_author_link .= "- "; } $wp_about_author_link .= "<a href='" . $wp_about_author_author['posts_url']. "' title='More posts by ". $wp_about_author_author['name'] ."'>More Posts</a> "; }I want to make it easier to customize the box in the future but for now this will have to do