Forum Replies Created
-
AuthorPosts
-
I 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 30 miles out to sea. Visit my blog or my design site.
I 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 30 miles out to sea. Visit my blog or my design site.
Thanks. 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 30 miles out to sea. Visit my blog or my design site.
What 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 30 miles out to sea. Visit my blog or my design site.
Yes, 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 30 miles out to sea. Visit my blog or my design site.
Great, thanks!
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
I 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 30 miles out to sea. Visit my blog or my design site.
Haha, Nazz. That’s exactly like this client of mine. She wanted labels and directions on everything “just to make sure it’s clear.” It ended up making for a really interesting design.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
Thanks for all the thoughts and especially the link to WP Help. I’ll have to look into that, since the WP documentation doesn’t cover some of the specialized functions or plugins I have built into sites. Although, I will say that what is especially frustrating about this situation is that I currently do all of my trainings in Google Hangouts which allows me to record the entire session and post it as a private video on my YouTube account; this particular client is asking me how to do things that I know I showed her (and thus recorded in the training video) multiple times.
This last time, I offered a maintenance plan and reminded her as nicely as I can that I cannot keep supporting her for free (and have not heard back since). I think you’re right, Anitac, that this may just be one of those push out of the nest situations.
In the future I will definitely have to better gauge prospective clients’ computer/internet abilities. I offer some maintenance plans, but to be honest it’s not something I want to do a lot of unless there is a significant amount of regular on-going work — that’s why I stopped building in Dreamweaver and started building in WP. I really only do this part-time, my main job right now being parenting and I have no interest in having people call me when I’m at the beach with my kid because of some emergency change they need done to their website, or filling my calendar with minuscule word/image changes across a bunch of different websites that could be done by their owners. Next time, I may just decline to take on a client that seems to have so few skills or I’ll have to figure out how to be more explicit about how much training and assistance is included in our agreement.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
There is a simpler way to do it. I know how to add additional sidebars, but that’s not what I want to do because I want the client to have the ability to easily choose on a page by page or post by post basis whether or not to have the secondary sidebar to show up and which sidebar to display (using Genesis layout and sidebar selection in post/page). Hence, the second sidebar in this area needs to maintain all of the functionality of the sidebar-alt. I am hoping that there is a way to relocate the secondary sidebar rather than create a new one.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
They do have a function I was just having a hard time figuring out how to implement. I’m still largely trial and error or copy-paste when it comes to PHP. I eventually figured out where to put it, though.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
Thanks. I saw that mentioned in a couple of threads in the old forum and will definitely check it out. I’m not completely sure it will meet her needs, although I may be able to modify it. Do you know if it allows for custom graphics other than stars? She also wants some way to display price ranges for the events with dollar sign icons.
Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together 30 miles out to sea. Visit my blog or my design site.
-
AuthorPosts