ricun
Forum Replies Created
-
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesIt seems to be a problem on the theme, the feed is not showing up the titles, but if we change the theme to another one like twenty fifteen it works.
We are going to keep working on that and update if we find what it is.
–Update
The feed is working and the episodes showing up in iTunes.
Don’t know which of this was the issue that caused.
1- There was a page with a ‘podcasts’ slug which i changed.
2- There were custom widgets with ‘title’ ids, i changed that too since the title was the problem.Thank you guys for your assistance.
- This reply was modified 8 years, 8 months ago by ricun.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesI was using the podcast_post type but since i had no luck i changed the theme to work only with posts and now i am separating the podcasts from the other posts by category (the slug is not podcast).
https://thebridgebk.com/meghan-ritchie-founder-megpies-pastries/
This is one of the podcast posts now.I removed the Custom Podcast Channels and Post Type Podcasting from the advance options on the plugin to go back to use the regular posts but still no luck.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesthe slug is not podcast is “podcast_post”
register_post_type(‘podcast_post’, array(….Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesThat option was already active
- This reply was modified 8 years, 8 months ago by ricun.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesThe client checked with itunesconnect connect and says that is working fine and is working here
https://itunes.apple.com/us/podcast/from-day-one-how-brooklyn-entrepreneurs-got-their-start/id1272215577?mt=2Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Feed not showing up on itunesThe slug of the podcast posts is podcast_post and i am using the Custom Podcast Channels option not the Post Type Podcasting because the client wants to use the /feed/podcast url.
The feed is showing my custom posts, the feed itself has no problem, the problem is that itunes is not listing it.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Multiple instance repeats the last title/urlFixed, the problem was my html structure:
My structure was<div class="a2a_kit social-share"> <ul> <li> <a class="a2a_button_twitter"><i class="fa fa-twitter"></i></a> </li> <li> <a class="a2a_button_facebook"><i class="fa fa-facebook"></i></a> </li> </ul> </div>I removed the ul/li
<div class="a2a_kit social-share"> <a class="a2a_button_twitter"><i class="fa fa-twitter"></i></a> <a class="a2a_button_facebook"><i class="fa fa-facebook"></i></a> </div>It is working fine now.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Multiple instance repeats the last title/urlEDIT: I have always used like this, and it works fine if there is only one instance like in the single.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Multiple instance repeats the last title/url<div>
<?php
$args = array(
‘post_type’ => ‘my_post_type’,
‘posts_per_page’ => 3,
);
$query1 = new WP_Query($args);
while ($query1->have_posts()) : $query1->the_post();
$postarray = array(
‘title’ => get_the_title(),
‘share’ => get_the_permalink()
);
?>
<div class=”col-md-3″>
<div>
<?php the_content() ?>
<div class=”a2a_kit social-share”><i class=”fa fa-twitter”></i>
<i class=”fa fa-facebook”></i>
<span><p class=”share-text”>Share</p></span></div>
<script type=”text/javascript”>
a2a_config.linkname = <?php echo $postarray[‘title’] ?>;
a2a_config.linkurl = <?php echo $postarray[‘share’] ?>;
a2a.init(‘page’);
</script>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
?>
</div>That is one of the sections.
I have the <script type=”text/javascript” src=”//static.addtoany.com/menu/page.js”></script>
after the first script and is out of a repeating structureForum: Plugins
In reply to: [AddToAny Share Buttons] Multiple instance repeats the last title/urlEDIT: if I examine the elements with firebug the content in the scripts (url/title) are correct for every post, the problem is when I share/tweet