agalberto
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Title of podacast repeated in the descriptionIt’s the html5 player. Choosing the simple player the repeated title and podcast details disappear, but you loose the html5 Player.
It tries to make the player appear after the title and the abstract, but doesn’t render
and write the details of the podcast.Maybe the php should be changed. Anybody knows?
This is the all-episode-list.php
<article class="podcast-<?php echo get_post()->ID ?> podcast type-podcast"> <h2> <a class="entry-title-link" rel="bookmark" href="<?php echo get_post()->guid ?>"> <?php echo get_post()->post_title; ?> </a> </h2> <div class="podcast-content"> <?php if ( isset( $settings['show_featured_image'] ) && 'yes' === $settings['show_featured_image'] ) { ?> <a class="podcast-image-link" href="<?php echo get_post()->guid ?>" aria-hidden="true" tabindex="-1"> <?php echo get_the_post_thumbnail( get_post()->ID, 'full' ); ?> </a> <?php } ?> <?php if ( isset( $settings['show_episode_player'] ) && 'yes' === $settings['show_episode_player'] ) { echo $media_player; } ?> <?php if ( isset( $settings['show_episode_excerpt'] ) && 'yes' === $settings['show_episode_excerpt'] ) { ?> <p><?php echo get_the_excerpt( get_post()->ID ); ?></p> <?php } ?> </div> </article>
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Explorer crasheshttps://www.altreculture.com
The map is at the bottom of the page.
https://www.altreculture.com/project/viaggi-eritrea-tour/Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Ie8Hi thanks for your reply,
actually the only part that’s not working is the images upload.
In the wordpress admin the upload in the media gallery works in ie8 with flash
and the plugin uses the same script but doesnt load flash.I tried to force to load just flash in gallery.php – ‘runtimes’ => ‘flash’,
but doesn’t work. Maybe there’s a little hack for that?Thanks
AlbertoForum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Error calling POST – (400) Invalid to headeri tried to send to a gmail box, or others domains, it gives me the same error.
Forum: Themes and Templates
In reply to: next / previous posts link in a single pageThats it. it worked! thanks thanks a lot ??
Forum: Themes and Templates
In reply to: next / previous posts link in a single pageUhmm No, should i use it inside?
I’ll try. thanksForum: Fixing WordPress
In reply to: adding next, previous to pages with postsI’m getting crazy, i’m trying to display a single posts in a single page with the navigation “next_post_link” and “previous_post_link()”. But it seems not to work properly.
This is the code i wrote
<?php if (is_single()) : ?> <div id="navigation"> <?php previous_post_link('%link', 'Previous post in category', TRUE, ''); ?> | <?php next_post_link('%link', 'Next post in category', TRUE, ''); ?></div> <?php endif; ?>
Doesn’t display previuos link and the next link stops the navigation at the 2nd post.
Can anybody help?
Thanks
Alberto