• Hey Guys,

    I updated the plugin and wordpress and now my player doesn’t show on any new posts.. The older posts all still work and have the players working.. The new posts don’t save the information to the enclosure field so it always stays blank. I have tried even pasting information from the older posts into it and it still clears it on publish or update.

    I am using custom post types and have set it up in the powerpress backend..

    The old posts show this in their array

    Array ( [enclosure] => http://hillsongct.com/wp-content/uploads/podcasts/Reggie.Dabbs.-.Sisterhood.-.17.AUG.2013.mp3 19557064 audio/mpeg a:1:{s:8:”duration”;s:7:”0:40:44″;} [_enclosure] => field_52970bb20182b [_edit_lock] => 1387391295:1 [_edit_last] => 1 [_sermons:enclosure] => http://hillsongct.com/wp-content/uploads/podcasts/Reggie.Dabbs.-.Sisterhood.-.17.AUG.2013.mp3 19557064 audio/mpeg a:1:{s:8:”duration”;s:7:”0:40:44″;} [_thumbnail_id] => 620 [_podcast_upload] => field_52970bb20182b )

    the new posts show this in their array

    Array ( [_sermons:enclosure] => http://hillsongct.com/wp-content/uploads/podcasts/Reggie.Dabbs.-.Sisterhood.-.17.AUG.2013.mp3 19557064 audio/mpeg a:1:{s:8:”duration”;s:7:”0:40:44″;} [_edit_last] => 1 [_edit_lock] => 1387442583:1 [enclosure] => [_enclosure] => field_52970bb20182b )

    The one difference i suppose is that for me to even see the powerpress shown on the wordpress post backend i had to set up the custom post type section in the powerpress.. The name of the custom post type is sermons..

    Any ideas why my enclosure doesn’t save or what would stop my players from showing.. If I look at it in firebug the older posts have the powerress coming through with the html ect using the_powerpress_content(); but the new ones don’t even have the powerpress pulling through

    I’ve been going in cirlces.. Don’t understand whats wrong.
    http://edge.beresponsive.net/listen-watch/
    <div class=”sermon-hold”>
    $args = (array( ‘post_type’ => ‘latest_message’, ‘term’ => ”.$terms[0]->name.”,’taxonomy’ => ‘speaker’, ‘posts_per_page’ => 6,’paged’ => $paged ));// Blurbs Latest Message
    query_posts( $args );
    if (have_posts()) : while (have_posts()) : the_post();

    This is the code ive been using which has been working since the
    <div class=”one-third sermon”>

    <h3 class=”sermon-title”>“><?php the_title();?></h3>
    <div class=”sermon-holder”>
    <div class=”sermon-cont”>
    “><img class=”latest-img” src=<?php echo $image[0];?> alt=”Latest Message Image” />
    <div class=”sermon-button”>
    <div class=”sermon-no-but”>
    <h3 class=”sermon-speaker”><?php echo $terms[0]->name;?></h3>
    <h3 class=”sermon-time”><span class=”sermon-m”> <?php echo get_the_date(‘d’);?></span><span> <?php echo get_the_date(‘Y F’); ?></span></h3>
    <div class=”sermon-text3″> <?php echo the_excerpt(50); ?></div>
    </div>
    ” style=”color:#D03232;” target=”_blank”><h4>READ MORE</h4>
    </div>

    <div class=”blurb-power”><?php echo the_powerpress_content(); ?></div>
    <?php $ee = get_post_meta_all(get_the_ID()); ?>

    <div class=”tests”> <?php print_r($ee);?></div>

    </div>
    </div>
    </div>

    <?php endwhile; ?>
    <?php endif; ?>

    </div>

    http://wordpress.org/plugins/powerpress/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Enclosure field not saving after updating to new wordpress 3.8 and powerpress’ is closed to new replies.