Chirag Swadia
Forum Replies Created
-
Hi Vincent,
The problem you appear to be encountering is what appears to be a stuck cron. We have two pages in our documentation that suggest ways of handling this problem. We have some tips on this page that generally solve the problem, and another workaround is available on this page.
Let me know if it helps.
Hi Donal,
Thanks for the great review ??
Hi,
I see that you have already opened a premium support ticket through our website for your queries with regards to our premium add-ons. So I think we should continue the conversation over there and close this ticket.
Thanks
Hi Ellie,
I will see if I can reproduce this issue on my end. Thanks for informing ??
Hi,
Can you please elaborate as to where you would like to add a class ? I am not able to understand your question.
Hi,
Since you are using one of our premium add-ons, please create a premium support ticket from here
Thanks
Thank you so much for the great feedback ??
Thank you so much for the great feedback ??
Hi,
I am not able to see anything on this page https://www.entertainmentexecutives.com/jobs/
Are you using our shortcode
[wp-rss-aggregator]
to display the feed items on this page ?Hi,
Thanks for your suggestion ?? I would definitely discuss this with my team and maybe add this in the future releases.
Thanks
Hi,
Please go through Installing Add-ons and Activating Licenses to know more about this.
Also, since you have purchased our premium add-ons, you can feel free to open a premium support ticket from here
Cheers
You can remove the pagination by adding the below code in your theme’s functions.php
remove_filter( 'wprss_pagination', 'wprss_pagination_links' );
Hi Jaqen,
Can you please elaborate what do you mean by editing the below code ?
<?php wprss_display_feed_items(); ?>
If you could tell me what you would like to achieve, then I could help you out better.
Thanks
ChiragHi,
I have created a shortcode which you can use to display the list of feed sources on any page as per the example link you have mentioned. Please add the below code in your theme`s functions.php file
add_shortcode('wprss_custom_feed_listing','wprss_feed_source_listing'); function wprss_feed_source_listing(){ $query_args = Array( 'post_type' => 'wprss_feed', 'posts_per_page' => -1 ); $query = new WP_Query($query_args); if( $query->have_posts() ){ echo '<ul>'; while($query->have_posts()){ $query->the_post(); $feed_url = get_post_meta( get_the_ID(), 'wprss_url', true ); echo '<li>'.get_the_title().' - <a href="'.$feed_url.'">'.$feed_url.'</a>'; } echo '</ul>'; } wp_reset_query(); wp_reset_postdata(); }
Once you have added the code, insert this shortcode
[wprss_custom_feed_listing]
on any page to show a list of feed sources with their respective links.Thanks
Hi Joseph,
Sorry, for now we do not have a provision to set links as nofollow for a particular feed source.
However, we will consider adding this option in the future versions.
Thanks