JohnM
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Secure Contact Form] Weak CAPTCHA – Big Spam ProblemIt’s getting so bad that I might stop using this plugin. I get dozens of spam submission each day. CAPTCHA, honeypot and Akismet are all enabled, but nothing is stopping it.
Forum: Plugins
In reply to: [Easy Social Icons] If you have any issue with : displaying icon horizontallyTry changing the width on your UL tag.
If your icon width is 32px, and gap is 4px:
(32 + 4) * (number of icons)
So, for me, (32 + 4) * 3 = 108.
Then, override the UL style width:
ul.cnss-social-icon {
width: 108px
}So, you end up with:
<ul class=”cnss-social-icon” style=”text-align:left;width:108px”>Forum: Plugins
In reply to: [Groups] See but not ReadYeah, this plugin is severely lacking this capability. I’m going to work on it now to see if I can modify this behavior. If I get it working I’ll post the modified plugin for others.
Forum: Plugins
In reply to: [Co-Authors Plus] List posts of a co-author in author.phpI use something like this:
global $coauthors_plus; if (isset($coauthors_plus)) { $curauth = $coauthors_plus->get_coauthor_by( 'user_nicename', $author_name ); } else { if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif; } echo $curauth->display_na if (isset($coauthors_plus)) { echo get_the_post_thumbnail($curauth->ID,array(90,90) ); } else if(function_exists('get_avatar')) { echo get_avatar( $curauth->user_email, $size = '120' ); } if($curauth->description !="") echo $curauth->description; } if (have_posts()) : while (have_posts()) : the_post(); $format = get_post_format(); get_template_part( 'includes/post-formats/'.$format ); if($format == '') get_template_part( 'includes/post-formats/standard' ); endwhile; else: __('No post yet.', 'theme1965');
Same here. Please fix.
I just purchased Pro. Can I request this feature? ??
Forum: Plugins
In reply to: [Co-Authors Plus] Contributors or Authors PageMaybe check out how to get all items:
class-coauthors-wp-list-table.php
then I would create a shortcode to do the same thing, then create a new page that uses the shortcode. Then just link to that page.
If I have time next weekend I wouldn’t mind looking at this.
Forum: Plugins
In reply to: [Co-Authors Plus] Search and Co-authorsWhat is the scope of support you do offer?
Re-enabling the plugin solved this problem for me.
Forum: Plugins
In reply to: [Simple Stock Quotes] Examples or screenshots available?This plugin is more of a proof of concept. You have to type the ticker symbol in a little box, and it loads a basic stock quote. Users would have to enter in a symbol each visit!
There is no configuration, no stylizing, and doesn’t actually load anything when the page loads. In addition, it’s very slow, and the style is not inline, so good luck using in, especially with a Cherry Framework site.
Don’t bother installing it.
Forum: Plugins
In reply to: [Promotion Slider] Thumbnails with more than 10 imagesekdavey, you’ll have to either user the plugin editor, change it locally and upload the updated plugin file, or use a command line editor on the server. The file is:
promotion-slider/js/promoslider.js
If it can be done during the page generation, then perhaps Ad Rotate can take an ajax service approach. An ajax service page can return ads from a service page that is marked as non-cached. Not sure if that’s possible, but it seems like a logical solution.
Arnan, in a technical sense you are correct, but in reality the display and rotating of ads should be independent of any caching (or we should at least have that option). Caching the ads not only skews the impressions, but advertisers aren’t getting their monies worth. There must be a way to exempt Ad Rotate from WP Super Cache.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Network Level FormsThanks for the followup, Mike. Is there a way I can request such a feature?
Just the admin panel. But, the configured site URL is non-SSL, and using fully qualified URLs will result in such an error in Firefox with that security protection enabled.