Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter digiboom

    (@digiboom)

    Wonderful, I see you recently made an update to the pro version are any of my suggestions in there or in the upcoming releases?

    Thread Starter digiboom

    (@digiboom)

    Hi, 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.

    Hi i’m adding it to functions.php under the rss section but it’s not showing up in the feed.

    Thread Starter digiboom

    (@digiboom)

    Thanks 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.

    Thread Starter digiboom

    (@digiboom)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)