Forum Replies Created
-
AuthorPosts
-
November 17, 2013 at 4:22 pm in reply to: Minimum Portfolio Custom Taxonomy Returning No Results #73832
Aaron Eaton
MemberIt turns out 'type' is a reserved name. Try a different name, reset permalinks and try again.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberAaron Eaton
MemberTry setting a width/max-width and
margin: 0 auto;
on#footer-widgets .wrap
. Then remove that bigmargin-left
on.footer-widgets-1
.
—
J. Aaron Eaton – WordPress Consultant
WebsiteNovember 17, 2013 at 2:15 pm in reply to: reposition Nav and header outside of site container #73770Aaron Eaton
MemberIt looks to me like you've found your answer, correct?
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberThe slider looks fine to me in Chrome. Were you able to fix your issue?
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberIt looks like you've found an answer to your question, correct?
—
J. Aaron Eaton – WordPress Consultant
WebsiteNovember 17, 2013 at 2:06 pm in reply to: Change background exclusively outside the wrap in Eleven 40? #73750Aaron Eaton
MemberTry setting a background color on
#inner
and a different color on#content
—
J. Aaron Eaton – WordPress Consultant
WebsiteNovember 17, 2013 at 2:00 pm in reply to: Header text cut off depending on device view – Metro Pro #73736Aaron Eaton
MemberThings are looking ok for me at 480px, but you may want to think about making those post images
width: 100%
at a slightly larger browser width. This would push those headings down and prevent them from being cut off.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberAaron Eaton
MemberYou'll need to do some custom coding for this in
functions.php
. Get started by reading up onpre_get_posts
andWP_Query order & orderby
parameters.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberIt is the de facto standard for WP SEO if you don't need anything too crazy.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberWithout an example it will be difficult to provide useful assistance.
I would first try to use
display: inline
on the more link CSS or even absolutely position it.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberI don't have the News theme but you should look for a
<div>
that wraps around the whole site design. That element will have awidth
ormax-width
CSS property. Change that to make the page wider.
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberAaron Eaton
MemberAaron Eaton
MemberAaron Eaton
MemberYou'll probably need a couple of conditionals to target the elements you need to properly show "Filed Under:".
For conditionally showing the categories text:
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberThe size of a PHP file doesn't have nearly the effect on execution time as the quality of the code contained within. Plus, once you get over a couple of hundred lines, you should think about breaking it up with includes or some code design pattern.
It's a bit difficult to provide some good suggestions without examples. If you'd like to provide some specific code blocks, we'd be happy to take a look.
—
J. Aaron Eaton – WordPress Consultant
WebsiteNovember 17, 2013 at 1:14 pm in reply to: Displaying custom taxonomy list on archive page template #73657Aaron Eaton
MemberI would suggest creating a custom page template called 'Sitemap' and use that. I haven't tested this, but here we go:
/** * Template Name: My Sitemap */ add_action( 'genesis_entry_content', 'add_taxonomy_list', 5 ); function add_taxonomy_list() { $args = array( 'format' => 'list', 'taxonomy' => 'your-custom-taxonomy-slug', ); wp_tag_cloud( $args); }
—
J. Aaron Eaton – WordPress Consultant
WebsiteAaron Eaton
MemberYou can probably solve this by inserting the new widget area just after the header. This should keep it outside of
.site-inner
.add_action( 'genesis_after_header', 'your_widget_function_here' );
—
J. Aaron Eaton – WordPress Consultant
Website -
AuthorPosts