Anthony Bubel
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] font color contact formI think this is what you’re trying to do…
You can use the Custom CSS module of Jetpack to add some new rules to style those labels as you wish. From Appearance -> Edit CSS (make sure the module is activated from Jetpack -> Settings), you can add the following:
(to style a “Name” field)
label.grunion-field-label.name {
color: #cc0000;
}(to style an “Email” field)
label.grunion-field-label.email {
color: #cc0000;
}(to style a “Comment” field)
label.grunion-field-label.textarea {
color: #cc0000;
}You will need to change that final value in the class (e.g. “name”, “email”, “textarea” as above) depending on what “Field Type” you are using in your contact form.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] make h3 widget title linkThere is no official way to configure a linked title with the widget itself. Some other folks may have some clever workarounds for it, but you can always do something like add a text widget above the image widget in your sidebar and add the link there (using the proper HTML and style). Then, simply leave out a title for the image widget.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Business license questionThe Jetpack premium upgrades only cover one site at the moment.
Do you have any other plugins enabled that would affect commenting in any way? I’ve seen this happen previously with the WP-reCAPTCHA plugin, for example. I can also double-check to make sure it isn’t anything Akismet-related for you (I’m on the Akismet team) if you post the site URL here (if you don’t want to post the URL publicly, please send it to [email protected], and I’ll look for it).
Forum: Reviews
In reply to: [Akismet Anti-spam: Spam Protection] When it's hot, it's hot!Anthony from the Akismet team here. Thanks for the great rating! It does seem odd that Akismet would simply stop working for any particular period of time, however. If this happens moving forward at all, please don’t hesitate to get in touch: akismet.com/contact.
Thanks again!
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Cleared by AkismetDo you mean to say that some comments are being flagged by Akismet as spam? If so, the best thing to do is mark them as not spam; this will help Akismet moving forward. If you’re still seeing lots of false positives, however, the best thing to do is get in touch with the support team – akismet.com/contact/ – so they can take a closer look.
Forum: Reviews
In reply to: [Akismet Anti-spam: Spam Protection] Only stopped my own commentsHi there, I work on the Akismet team. Sorry you had troubles. If you’d like to get in touch with us at akismet.com/contact with your API key and URL, we will be happy to take a look and get things worked out.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Not working like it has to beAre you still having problems with this? If so, please get in touch with Akismet support: akismet.com/contact.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Not working like it has to beTo clarify, are these folks leaving comments on your site? If so, and Akismet missed them, did you flag them as spam in your dashboard?
Forum: Fixing WordPress
In reply to: List employee profilesYou could try creating a custom page template (like MtDewVirus suggested) and using the wp_list_authors template tag – http://codex.ww.wp.xz.cn/Template_Tags/wp_list_authors
Forum: Installing WordPress
In reply to: Trying to install WordPressCheck to make sure you do not have any spaces before <?php or after your ?> tags in the php file you are trying to access.
Forum: Installing WordPress
In reply to: Absolute Beginner feeling Absolutely Overwhelmed… Please help!When you upload them, make sure that they are going into wp-content/themes.
Your themes should then be available from Design -> Themes.
Forum: Installing WordPress
In reply to: Reinstalling WordPressPerhaps you can replace the themes folder with a fresh one from the current download package?
Forum: Fixing WordPress
In reply to: Zombie Robot’s Random Quotes Plugin not working with WP 2.61) Place the wp-quotes.php file into your wp-content/plugins directory
2) Place the edit-quotes.php file into your wp-admin directoryReactivate the plugin.
Forum: Themes and Templates
In reply to: Static Page Nav1) You will need to remove the link from header.php template file. You should see your primary navigation area where the pages are listed; if the “home” link was included with the theme, it will be in a list item.
2) Your page.php file would be the correct place; not sure what you mean by suppress, though…