Michael Cain
Forum Replies Created
-
Forum: Plugins
In reply to: [Eventbrite API] Invalid Request to EventbriteHi there,
I’ll be taking a look at this today and let you know what I find, or if I’ll need more information from your end of things.
Forum: Themes and Templates
In reply to: [Minnow] Theme forcing jetpack sitelogo dimensionsHi there!
You’ll need to redefine Minnow’s Site Logo image size. If you look in Minnow’s ‘inc/jetpack.php’ file, you’ll see where Site Logo support is added and the ‘minnow-site-logo’ image size is registered. A new function, added to the same action (‘after_theme_setup’) with a later priority would allow you to modify the image size:
function minnow_child_site_logo() { add_image_size( 'minnow-site-logo', '400', '400' ); } add_action( 'after_setup_theme', 'minnow_child_site_logo', 11 );
Let us know if you have any questions!
Forum: Themes and Templates
In reply to: [Ryu] Patch: show published and modified dates on pagesHi Ryan,
We’re glad you’re enjoying the Ryu theme. Thanks for the suggested patch.
Part of the www.ads-software.com Theme Unit Test for pages is that the post date not be displayed. To add it in the
ryu_entry_meta()
function and then hide it through CSS would seem a little excessive, so unfortunately, we probably won’t be merging the patch.You are of course welcome to fork Ryu and modify it as you see fit or create a child theme with your changes. Creating a child theme would allow you to modify just a few parts while maintaining the ability to update Ryu without having your changes overwritten.
Thanks for the input and please let me know if you have any questions.
Forum: Themes and Templates
In reply to: [Superhero] Sub Heading for Slider ImagesHi there,
The file you’d want to edit would be “slider.php”, around line 30. I’d recommend using WordPress’s Custom Fields for a sub-heading.