briandunaway
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Problem with latest version of pluginI grabbed 1.15.1 from github
https://github.com/TheCraigHewitt/Seriously-Simple-Podcasting/releases
- This reply was modified 7 years, 10 months ago by briandunaway. Reason: oops
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Syndication feeds show the most recent XThanks Hugh, I look forward to it!
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Subtitle Too LongI think Hugh is busy doing some cool stuff:
https://www.hughlashbrooke.com/complete-versatile-options-page-class-wordpress-plugin/
also, I was able to ugly fix my problem.
I changed Line 288 in wp-content/plugins/seriously-simple-podcasting/templates/feed-podcast.php
From This:
<itunes:subtitle><?php echo $itunes_excerpt; ?></itunes:subtitle>To This:
<itunes:subtitle><?php echo $subtitle; ?></itunes:subtitle>Not sure what else this may break. But it worked for my case. For now.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Subtitle Too LongYeah. Ignore all that jazz I posted. That is only good for the titles. I do not see a way to add_filter to <itunes:subtitle> which is what we are wanting to shorten.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Subtitle Too LongI got some help from a friend using add_filter but I haven’t gotten the complete solutions yet. Also, I don’t like messing with functions if I can help it. Cause I’ll forget what I did and update something and it will break. ??
What I have so far –
add_filter( ‘the_title’, function(){
if( is_feed() && 255 <= strlen( $title ) ) {
$title = substr( $title, 0, 252 ) . ‘…’;
}
return $title;
} );Forum: Plugins
In reply to: [Seriously Simple Podcasting] Subtitle Too LongAny luck with this Colin?
I have been experiencing the same problem.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] SSP Plugin With Canvas ThemeJust a follow up. I think I concluded this was more of a Canvas -> Magazine Template / Custom Post Type problem than SSP.
I think the step in the right direction was to make a Canvas child theme with includes/theme-action.php and modified the $query from this:
$saved = $wp_query; $query = new WP_Query( array( ‘tag__in’ => $tag_array,’posts_per_page’ => $args[‘posts_per_page’] ) );
to this
$saved = $wp_query; $query = new WP_Query( array( ‘tag__in’ => $tag_array, ‘post_type’ => array(‘post’, ‘podcast’),’posts_per_page’ => $args[‘posts_per_page’] ) )
line 1037
Hope this helps someone heading down the same path.
Thank you,
Brian Dunaway
Forum: Plugins
In reply to: [Seriously Simple Podcasting] SSP Plugin With Canvas ThemeUpgraded to WooThemes Canvas CANVAS 5.4.1 FRAMEWORK 5.5.5 to be on the safe side.
Still no change. I am guessing this will probably have to do with the post-type -> tag search only being done in Post and not Podcast