Forum Replies Created
-
AuthorPosts
-
Au Coeur
MemberDid you solve this? I'm not seeing the white space.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberNo problem. 🙂
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
January 29, 2013 at 9:16 pm in reply to: Need help with some style/design changes for AgentPress theme – pay for help #16278Au Coeur
MemberWhat is the site? Some of these are fairly simple CSS changes, I'm sure if you posted individual questions with a link to the site people would help you through the forums and then you won't need to spend money.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
January 29, 2013 at 9:13 pm in reply to: Featured Posts Amplified Plugin Help: Filtering Custom Taxonomies? #16276Au Coeur
MemberYou can determine the term_id by hovering over the term on the taxonomy edit page and looking at the URL. You'll see "tag_id=" and a number in the URL.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
Member#title-area {
margin-top: 23px;
}Looks right to me, however your image looks like it might hang off the bottom.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberYou can add a margin-top to your title div to position your logo down. It looks like you will need to make the image smaller if you want it to fit completely in the black bar, though.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberLooks like you figured this out?
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberYou can add a search.php file to your child theme and add the code there to override/modify Genesis search functions.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberI have used http://thethefly.com/wp-plugins/thethe-sliding-panels/ on several sites, including my own.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberI couldn't get it to work with wp_get_attachment_image, but I realized I didn't actually need it to output in $post_meta, so long as it just appeared to be in the same section. So, I just added it another way. On the off chance that someone else is looking for how to make this work, here is what I did.
add_action('genesis_before_post_content', 'child_bucket_rating');
function child_bucket_rating() {
if( is_single() ) {
print apply_filters( 'taxonomy-images-list-the-terms', '', array(
'after' => '',
'after_image' => '',
'before' => 'Nantucket Bucket Rating:',
'before_image' => '',
'image_size' => 'full',
'taxonomy' => 'rating',
) );
}}
Thanks for the help cdils
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberThanks. I'll see if I can get this to work...no luck yet. I may just need to find a different plugin.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberWhat is the website?
I have " .featuredpage .page .featuredpost .post" in my CSS; the styling there that impacts the stair-stepping. The image border is going to be changed in an image section, perhaps .featuredpost img.
Depending upon the browser you are using, you may be able to right click on the element and "inspect" it to find out which CSS rules are impacting it.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberYes, that is what I mean. Â I tried a few different things with the code to see if I was misunderstanding and that is all it seems to do. This is what is currently being used:
/** Customize the post meta function */
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter($post_meta) {
if ( is_single() ) {
$post_meta = ' wp_get_attachment_image( $term->224, ‘full’ )
[post_terms before="Price: " taxonomy="price"] [post_terms before="Open/Available: " taxonomy="open-dates"] [post_terms before="Ages: " taxonomy="ages"]';
return $post_meta;
}
if ( is_category() ) {
$post_meta = '[post_terms before="Price: " taxonomy="price"][post_terms before="Ages: " taxonomy="ages"][post_terms before="Open/Available: " taxonomy="open-dates"] ';
return $post_meta;
}
}
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberGreat, thanks!
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.
Au Coeur
MemberI don't know...I am not having any luck with this at all. Â When I try inserting wp_get_attachment_image into the $post_meta, it just outputs as text.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.