BmGhDZ9K
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Content not displaying in full postSo whenever LibSyn goes down it causes SSP to mess up and not fully render your podcast pages.
What you can do is add a check to make sure LibSyn is not down, if it is you can have SSP show an error message and continue to load your page.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Content not displaying in full post@daveconrey it seems to be working now!
http://www.freshrag.com/podcast/cbp31 loads just fine for me
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Embed video in podcast episodeThis is a bug with SSP I’ve opened a new thread with the solution:
I got this fixed on my site so this thread is Resolved
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Content not displaying in full postYes that may be the problem. If the files are unavailable from Libsyn then it might cause this problem.
The code referenced in the error_log is using wp_remote_head:
public function get_file_size( $file = false ) { if( $file ) { $data = wp_remote_head( $file ); if( isset( $data['headers']['content-length'] ) ) { $raw = $data['headers']['content-length']; $formatted = $this->format_bytes( $raw ); $size = array( 'raw' => $raw, 'formatted' => $formatted ); return $size; } } return false; }So wp_remote_head is returning WP_Error and that gets input into the above function and the function calls foul and outputs the following errors:
[16-Oct-2013 16:45:23] PHP Fatal error: Cannot use object of type WP_Error as array in /home1/magaziq1/public_html/freshrag/wp-content/plugins/seriously-simple-podcasting/classes/class-seriously-simple-podcasting.php on line 535It would be good for the above function to have a is_wp_error check to help better respond to this error.
http://codex.wordpress.org/Function_Reference/is_wp_error
Maybe something basic like: http://pastebin.com/NdAe5Rvh
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Content not displaying in full postMight be a theme issue conflicting with SSP, since the error is pointing to SSP. Have you tried switching to the default 2012 theme to see if it’s an theme conflict?
Forum: Plugins
In reply to: [Simply Instagram] Shortcode?There are shortcode examples here: http://wordpress.org/plugins/simply-instagram/
For example:
[simply_instagram endpoints=”users” type=”recent-media” size=”standard_resolution” display=”10″]
If your theme has a full-width page template you can paste this shortcode into that page and you’ll have the latest uploaded photos on a full width page.
Does your theme have a full-width page template? In your post or page editor you’ll see a template drop-down you can check for a Full-width template there
Hope that helps!
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Page title on podcast page always "Podcast"@augiem you don’t want to edit your database or the Podcast files because they will be updated the next time Hugh updates the plugin.
Instead you can edit the page title using a filter for just that page. This requires you to write some code and place it into your functions.php file. This is the filter you’ll want to use:
http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_title
So you can write an if-then statement in your functions file that will check if the page is the Podcast archive, and if it is you can target just the title using the wp_title filter, and if you set your filter to run LAST it will catch the “podcast” in the <title> that Hugh’s plugin has put there and you can re-write it on the fly just before the <title> tag is sent out for rendering.
Hope that helps 😀
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Feed not working@econore have you tried re-saving your permalinks in Settings >> Permalinks? Maybe that would help.
Your podcast feed is as follows:
http://jerusalemcats.com/?feed=podcast
It is not:
http://jerusalemcats.com/wordpress/?feed=podcast
You have an extra /wordpress in the URL that is not required. As you can see the correct feed can be found by the validator.
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fjerusalemcats.com%2F%3Ffeed%3Dpodcast
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Unable to see any Podcast post-404 errorHave you tried re-saving your permalinks? Go to Settings → Permalinks and click the Save button there.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Content not displaying in full postThis is probably caused by a PHP error with either your theme or with a plugin, not necessarily related to SSP. When I look at the HTML code for your page that page is truncating at the start of the post content.
Look on your webhost for a file called error_log this will tell you if there’s any PHP errors and where they are occuring. If there are errors please paste them into a Pastebin and share the link back here for us: http://pastebin.com
Also, try disabling all your plugins and running just the SSP plugin with your current theme. IF you still have issues, try setting your theme back to Twenty Twelve or Twenty Thirteen to see if you still have the problem.
I’m guessing it’s a bug arising from your theme or another plugin you have installed.
Hope that helps.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Embed video in podcast episodeAlso here is a screenshot with all plugins deactivated except SSP and running the default Twenty Twelve theme (updated to the latest version)
This is using the SSP upload box:
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Support for AAC Audio?I don’t think Mv4 is an audio format… do you mean M4V?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Embed video in podcast episodeHi Hugh, thanks for your reply. I did some further testing on this here’s what I found:
I removed the MP3 audio from the SSP box and added it directly into the post content area using an audio shortcode. Then I added the MP4 video into the post content area using a video shortcode.
The audio & video players both render correctly and play correctly.
Then I removed all traces of the audio from the post content area, and added the MP3 back into the SSP upload box, and refreshed the post.
The audio player is again malfunctioning when the audio is included via SSP.
Here’s a screenshot using the WP embed codes directly in the post content:
http://awesomescreenshot.com/0ef1u2bn02Here’s a screenshot using SSP:
http://awesomescreenshot.com/0ef1u2b442Thanks for your help!