digiboom
Forum Replies Created
-
Forum: Plugins
In reply to: [Podcast Player - Your Podcasting Companion] Podcast Updates Feed?Wonderful, I see you recently made an update to the pro version are any of my suggestions in there or in the upcoming releases?
Forum: Plugins
In reply to: [Podcast Importer SecondLine] More features neededHi, in terms of an alternative audio player I have unfortunately not found a solution to this. For the featured images I am using the following code in functions of my template as a work around because importing every single episode image is going to eat up my server storage.
function default_category_featured_image() { global $post; $featured_image_exists = has_post_thumbnail($post->ID); if (!$featured_image_exists) { $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" ); if ($attached_image) { foreach ($attached_image as $attachment_id => $attachment) { set_post_thumbnail($post->ID, $attachment); }} else if ( in_category('60') ) { set_post_thumbnail($post->ID, '27597'); } } } } add_action('the_post', 'default_category_featured_image');
Regarding the episode number automatically being added, sometimes it works but for the most part I see my posts don’t have it. Also if possible I would love to see the ability to edit a feeds settings after it starts posting. Like tags, if I want to add the name of the podcast show since some don’t include it in their feed, etc.
Forum: Plugins
In reply to: [Social Deals Engine] RSS feed address for dealsHi i’m adding it to functions.php under the rss section but it’s not showing up in the feed.
Forum: Fixing WordPress
In reply to: Site was hacked via DB need help cleaning upThanks for all your help, I recommend people do the following..
Within phpadmin select your db, use the search (Regex) function and search for any of the words used on the hacked website such as “we are justice” and/or any other nonsense like that..particularly look for a youtube embed code with the extension =loop1 on it.
Now here’s the kicker..these guys are so bad I was able to follow the image to a site that led to a folder of images that included a particularly odd hashtag which I searched on twitter and low and behold I found the twerp. They were dumb enough to list the region they are from on their hacksplash page and I can confirm the personal twitter account belongs to someone from that region..unfortunately it’s not on U.S. soil but middle eastern so there isnt much we can do about it legally but damn it if i’m not ready to fight back and scare the bejeezus out of him.
Forum: Themes and Templates
In reply to: [Magazino] How to change on page background?Thanks i’ll give both suggestions a crack. I was looking for the “fff” and changing that before but the changes never reflected but i’ll keep trying to find the right one.