ywamer
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Title always visibleI need this too!
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Change URL Slug for Portfolio TypeStill works perfectly. Thank you!!!
Forum: Plugins
In reply to: [WP Email Delivery] PHP 7 compatible?Excellent. Thanks.
BTW, I’ve gone ahead and upgraded to PHP 7 on a test server and everything seems to be running smoothly. All notifications are being processed without errors by WP Email Delivery.
But I’ll still keep my eye out for any updates.
Forum: Plugins
In reply to: [Login Security Solution] Support for PHP 7Great. Thanks!
Forum: Plugins
In reply to: [Simple Social Icons] background no longer transparent after updateExcellent! People who post helpful solutions to their problems here are awesome! Thanks so much. This saved me some time and I implemented the css easily with just a small selector change:
.footer-widgets .simple-social-icons ul li a { background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important; } .footer-widgets .simple-social-icons ul li a:hover { background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important; }
Forum: Fixing WordPress
In reply to: Extremely Slow Site Load SpeedHere are a few tools that can help diagnose slow load times. Oftentimes it is due to a bloated WordPress themes, poorly places scripts, large images, etc.
Forum: Plugins
In reply to: [Genesis Grid] Display teaser images before title?Got it working. This displays the titles below the image on my “Staff” custom post type, while leaving my blog archive and other custom post types untouched. It makes use of the correct Genesis 2 (HTML 5) hooks as well:
// Move titles on Staff Custom Post Type archive add_action( 'genesis_meta', 'move_title_below' ); function move_title_below() { if (is_page('staff')) { remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_entry_header', 'genesis_do_post_image', 3 ); } }
Shout out to https://ahjira.com/move-the-post-image-before-the-post-title-on-genesis-blog-archive-and-search-results-pages/ for the correct hook priorities.
Forum: Plugins
In reply to: [Genesis Grid] Display teaser images before title?This seems to be the old pre-HTML 5 Genesis 1 code.
Anybody have an update with the new hooks that will work with Genesis 2.0 themes?
Forum: Plugins
In reply to: [Genesis Grid] Multiple Custom post typesInteresting issue you’re experiencing. I am implementing this plugin with multiple custom post types and not having any problem. Sadly, I don’t have any corrective wisdom for you, but I wonder if it has to do with your code above, or a plugin conflict…
Just a thought.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Tabs not being createdExcellent. That solved it!
I implemented the
if ( is_home()) :
conditional in my function.php file, before loading the script, and tabby is performing perfectly.Thanks so much!
Worked great for me. Thanks!
Forum: Fixing WordPress
In reply to: Categories Not Responding After Up-gradation to WP 3.8Hi,
Try refreshing or reworking your Permalinks settings. That worked for me and got mt categories working again after the WordPress 3.8 upgrade.Hallelujah! I finally have this fixed and working too.
Here’s how I defeated the beast (Dreamhost) and their over-zealous spam blocking:
In the Mail setting for my contact forms, the FROM field used to look like this:
[your-name] <[your-email]>
Now it looks like this:
[your-name] via Our Website <[email protected]>
The sad part about this is if one of our staff replied to the email that a client sent from the form it went to “[email protected]”. That’s lame.
So we needed to add a special Reply-To instruction in the ADDITIONAL HEADERS field, like this:
Reply-to: [your-email]
Now, when our staff receive an email, it shows that while it still came from [email protected], when they can click reply the email is directed to the email address that the client entered in the contact form.
Easy as pie. Though I’d love to slap Dreamhost for causing us this hassle. ??
Forum: Fixing WordPress
In reply to: Multi lingual BlogYou can also make use of these easier-to-use shortcodes as well:
[:en]English text [:de]german text
Forum: Plugins
In reply to: [qTranslate] qTranslsate broken with WP 3.1.3The plugin has been updated. No out-of-date error now. Tested with 3.1.3 and below.