Jon Bishop
Forum Replies Created
-
Forum: Plugins
In reply to: [WP About Author] Gravatar image not aligned with bioI updated the plugin again with some fixes that might help your alignment issues.
Forum: Plugins
In reply to: [WP About Author] Text overlapping avatar after upgrade to 1.4Added some code to check for new options when displaying the author box or viewing the wep about author admin.
Forum: Plugins
In reply to: [Post Admin Word Count] Slows down the posts pageThe first load takes forever because it is literally going through all of yours posts and calculating the number of words in each. As it calculates it saves the number in hidden post meta so it doesn’t need to recalculate again in the future. It only recalculates when the post post_modified data is greater than when the last time word counts were calculated and saved.
I’ve experimented with other methods of calculating and caching however the first load still ends up taking a long time and now I’ve added bloat to other parts of the wp-admin.
As far as how the word count is calculated I’m using the following PHP function str_word_count.
Forum: Plugins
In reply to: [WP About Author] Gravatar image not aligned with bioCan you attach a screenshot with what you are seeing? Unfortunately, or fortunately, it looks fine in Chrome and FF for me but I’m also running Windows.
Forum: Plugins
In reply to: [WP About Author] Gravatar image not aligned with bioTry this:
#mukam-layout div.wp-about-author-text > h3 { margin-top: 0; }
Forum: Plugins
In reply to: [WP About Author] Gravatar image not aligned with bioI’m not sure what you mean by centered but the alignment issue you mentioned on Twitter can be fixed by adding some CSS to the H3 around the author name to remove the top margin.
Forum: Plugins
In reply to: [WP About Author] Text overlapping avatar after upgrade to 1.4For most plugins it is best practice to disable and re-enable to instantiate any new settings. If you just overwrite the plugin using FTP you want get the upgraded settings.
Sounds like you were able to get it working after the fix.
Forum: Plugins
In reply to: [WP About Author] Layout problem after upgrade to 1.4I had to change how I was setting the margin of the content area after adding the option to change the image size.
Thanks for posting the solution!
Forum: Plugins
In reply to: [WP About Author] Double Slash Breaks CDNRemoved the slashes in the latest version. Thanks for the help!
Forum: Plugins
In reply to: [WP About Author] Short CodeAs of the latest version you can use the
[wp_about_author]
shortcodeForum: Plugins
In reply to: [WP About Author] Box background colour select now workingFixed in the latest version
Forum: Plugins
In reply to: [Socialize] Upgrade to 2.3 Disabled Home PageShoot me an email with some more details: [email protected]
Please also share the version of WP you are using and a link to the site so I can poke around a bit.
Forum: Plugins
In reply to: [Socialize] Upgrade to 2.3 Disabled Home PageWhich version did you upgrade from. The plugin should not display this kind of behavior.
Forum: Plugins
In reply to: [Socialize] Responsive Admin – Overwrite All Post/Page Settings elementI used to have it next to the button and decided to move it below in the latest version. Took the lazy route instead of updating the tag.
Forum: Plugins
In reply to: [Socialize] Move Call To Action Box Outside "After Post Content"You should be able to place it right in your functions.php file. Only thing to keep in mind is the third parameter in the
add_filter
function. You may have to change it from 90 to something higher.