michaelpfaff
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Getting 404 Error on Shortcode PageIt seems like if I make the parent page Events, it gives 404, but if no parent, it works fine.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Pulling Title / Excerpt from another post?Well, I switch over to PowerPress and the feed works perfectly. Not sure what’s up with SSP and my WP setup.
Anyways, just wanted to say thanks for your help nevertheless.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Adding Episode Title to Default Media PlayerHugh, Subscribe link worked great! Thanks!
What about adding title to the media player that’s added into the post at the top/bottom of content? That doable?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Adding Episode Title to Default Media PlayerAlso, if I wanted to add an HTML link to a URL that says “Subscribe” that showed up in the details, could you show me how to modify this snippet to make that work?
add_filter( 'ssp_episode_meta_details', 'ssp_series_title_in_meta', 10, 3 ); function ssp_series_title_in_meta ( $meta, $episode_id, $context ) { $series_title = get_the_term_list( $episode_id, 'series', 'Series: ', ', ' ); $meta['series'] = $series_title; return $meta; }
Thanks so much for your help and the plugin!
Hugh, this could solve my issue. Everything else about the plugin is fantastic.
Where do I make these modifications? Is this the feed-podcast.php file or elsewhere?
Care to give a brief example to get me started?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Adding Episode Title to Default Media PlayerYeah, the media player that is automatically added to podcast episodes. My theme is a little different so I need to add the title. Right now, I’m using the shortcode at the top (with title) to replicate the effect and putting the “default” media player on bottom of content.
Here’s an example.
https://www.nerdlouisville.org/podcast/episode-7-louisville-arcade-expo-cosplay/
What I’d like to do is add the title to the “default” media player that’s automatically inserted into the post so I can set it to top of content and don’t have to add shortcode to each post.
Does that help?
tj, did you figure this out? I think I may have the same issue.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Volume Slider CSSMedia Player Styling Kit worked perfect. Sorry for the post.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Volume Slider CSSGoing to try the media player styling kit found in the FAQ. Thanks!
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Pulling Title / Excerpt from another post?And now, all the episodes have that title and excerpt. :/
@etellerandet Would you mind sharing that code?
caimin, how do I get the search / sort on the default list onto that page?
That worked perfectly. Thanks!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Event List ImagesNvm. Fixed it with some CSS.
.wp-post-image { max-width: none !important; }
Forum: Plugins
In reply to: [Simple Slideshow Manager] Hide ArrowsNvm. Figured it out. If anyone is interested, here’s what I used:
.img_prev_0.img_prev { display: none; } .img_next_0.img_next { display: none; }