I want to have one template displaying 6 related posts and another 4 related posts. There is only one setting in standard plugin settings, Is there any way to set a fixed minimum of related post displaying for one specific template, not for all templates?
]]>Hello,
Please, It appears a message at the end of article:
Related posts:
Unrelated posts.
How can I solve it?
The website is:
Greetings.
———
Hello,
Please, I have been able to correct it.
Now it happens that the text of the page title is not visible in its entirely.
I also don’t see an image of the page, but rather a default image.
How can I solve it?
Greetings.
]]>How can I exclude the images provided by YARPP from Google Search? In my case the name of a deceased person (Axel Ricken) ist connected with the wrong photos in Google taken from the YARPP-Plugin. How can I prevent this?
]]>Hi all,
While reviewing our site for accessibility issues, we noted the link text presented as the title of the article in the latest posts block does not allow heading level to be assigned. There does not appear to be a function to allow management of heading level for this information without custom code, which we do not allow our site creators to use to ensure consistency.
Heading tags for content that visually represents a heading help users navigate and understand the structure.
Does anyone have a solution or remediation that does not involve custom code, or insight into when/if this is already being addressed? I do not see any existing similar support posts.
]]>It’s been almost a month, can we please get an update on the patch. Is it in the works at least?
Thank you
]]>Sorry, I posted it wrong.
]]>Hello,
Is there a patch planned for fixing existing vulnerability?
]]>Plugins like easy table of content recognize the h3 tags around the title “Related Posts” and hence add this entry to every TOC as in the screenshot
An easy solution would be remove the h3 tags around this title.
For this effect, I have edited and copied to the child-theme folder the files
yarpp-template-example.php
yarpp-template-list.php
yarpp-template-simple.php
Yet this did not help. How can I modify the h3 tags around the Related Posts heading to something else like <b> or <strong> ??
]]>Hi,
I do NOT want to show the related posts after post. I JUST want to show the related posts using shortcode. How can this be done?
]]>We want to display ALL related posts from a particular category even if one of those posts belongs to a DISALLOWED category.
There are categories A, B and C with A being used to display FEATURED posts (i.e. I can’t eliminate it).
There are multiple posts in category B with one ALSO in category A (Special #1). There are multiple posts in category C with one ALSO in category A (Special #2).
If I set YARPP to display category B, and I’m viewing Special #1, I see not only all of the posts in B but also Special #2, since it’s related to Special #1 via category A.
If I DISALLOW category A, then Special #1 does not display in any list for the posts in category B.
How do I fix this issue?
]]>Hi I just wanted to clarify, does the plugin produce different output either into it’s own standard output html or via the data returned from yarpp_get_related() IF a user is logged in to the WP admin at the time of running ?
]]>Hi,
What is the performance impact of YARPP Vs Core Query Loop (or other iterations of it)? Relevance apart, has there been any test done to ascertain how expensive YARPP is compared to Query Loop wrt to DB calls? Which is more resource intensive?
]]>We have a number of long guides that we broke up into a main landing post and section posts. The main posts all are assigned to the category GUIDES and are displayed as thumbnails in the sidebar using a Featured Posts plugin. Right now, the only ways visitors navigate to the section posts (categorized by a specific guide like Guide – Outdoor Furniture Brands) are through text links or a grid of post thumbnails and titles in the main landing page content.
Once they click through to a section post, there is a sidebar list of GUIDE SECTIONS. This is a YARPP widget that only displays related posts with the same specific guide category. However, I cannot seem to get the main landing post to display in that list without including addition guides (since a main landing post is categorized as both a GUIDE and a specific guide section).
How do I retain my ability to list the main posts in the Featured category GUIDES and include them in the GUIDE SECTIONS without showing extra Guide main posts?
]]>Hi,
While this plugin does exactly what I am looking for, this has very limited Gutenberg Block features. There are no options to do anything within the block editor. It’s what it is. This can be greatly improved if the dev team mimics the options like the “Query Loop” block but have the functionalities which are already present. I’d wish to have control over the Featured Image of the Post, Title, Excerpt etc (basically every aspect of the related posts should be configurable like in the query loop) but the underlying algo needs to be the same as of now (which is good).
Hopefully soon.
]]>I have about 600,000 custom post type entries on my Japanese language sites. It's actually a dictionary site, and those 600,000 posts are dictionary entries and example sentences. A week ago, I found out that this plugin would work for such a large and complex dataset, so I installed it. I have four custom post types, and my requirement is to show four sets of related posts (from each post type) on each single entry. So, I wrote code like this:
function custom_yarpp_related_posts() {
ob_start();
?>
View Kanji Strokes
'kvg-info', 'limit' => 5, 'template' => 'list', 'order' => 'score DESC', )); ?> Related Kanji
'kanji-entry', 'limit' => 5, 'template' => 'list', 'order' => 'score DESC', )); ?> Related Words
'dictionary-entry', 'limit' => 5, 'template' => 'list', 'order' => 'score DESC', )); ?> Related Sentences
'example-sentence', 'limit' => 5, 'template' => 'list', 'order' => 'score DESC', )); ?>
<?php
return ob_get_clean();
}
function custom_yarpp_related_output($args) {
ob_start();
yarpp_related($args);
return ob_get_clean();
}
add_shortcode('custom_yarpp_related_posts', 'custom_yarpp_related_posts');
This way, I am showing related posts on each entry of my site. Also, I have set the indexing rate to the fastest in the Shareaholic settings, and the match threshold in the YARPP settings is set to 1.
But the problems I am facing are:
The Content Library section of Shareaholic is empty, so I am unable to see my indexed posts.
It's been about a week, and there are not enough related posts showing. Is this because not all posts are indexed yet? As there is nothing showing in the Content Library, I am unable to figure out what's wrong with it.
If all posts are not indexed yet, is it normal, and will they be indexed gradually? Is there any way to make it faster?
After adding the shortcode on the single page, the loading speed has become too slow. Is there anything I am missing?
Hoping for a very quick response. Thank you.
]]>
Hello
How do I show yarpp_related(); In two different locations, on the side and at the bottom of the article, without any repetition of the articles being displayed between them Now the articles appear on the side and bottom of the article, but they are the same
These are the codes I use This is on the side of the article
This is at the bottom of the article
if ( get_theme_mod(‘show_inside_posts’, ‘1’) == 1 ) {
yarpp_related();
}
if ( get_theme_mod(‘show_related_posts’, ‘1’) == 1 ) {
yarpp_related();
}
]]>Hi team, I have activated the YARPP plugin so that i can display “related posts” on not only blog but on pages as well. The only issue is that i do not want them to be on the homepage. Is there a way so that related posts are displayed everywhere else except the home. Thank you in advance.
]]>Just need to edit includes/template_thumbnail.php and add the alt tag to the line:
$post_thumbnail_html = get_the_post_thumbnail( null, $dimensions['size'], array( 'data-pin-nopin' => 'true', 'alt' => esc_html( get_the_title() ) ) );
Hi There, I would love to use Yarpp on my website. But unfortunately theme author said that they have inbuild related posts after each post and that it. That nothing else would work on the theme. I looked and true there is related-post.php and simple script there, but I reallyw ant to change it with Yarpp – add to pages, add to sidebar – all which is now not possible with his theme.
Theme is Sober, here are docs
https://docs.uix.store/sober/#/theme-options/header
Does anyone know way to allow Yarpp to work on all pages in theme?
If there a function or similar I need to add?
Thanks for your help
Seems that the sort order is not respected YARP output results in random order
]]>Is there any way this can work with promoting Site A on Site B using this widget?
]]>I love this plugin, but recently I noticed that the Related Posts are only visible when I’m logged into my website. If I’m not logged in, they don’t appear. I don’t see any errors that could be causing this so I’m not sure what to do. Any suggestions?
]]>Hello!
If you scroll to the bottom of my blog, I use YARPP, and it has worked great!
My one problem is the ellipses. Since I always create an excerpt for my posts, the whole thing fits in the YARPP bullet points; however, YARPP still adds an ellipses afterwards
Is there any way to remove this unneeded ellipses?
Thank you!
]]>Having had YARPP manualy ‘un-ticked’ on several thousand posts – is it possible to automatically switch YARPP back on for these posts?
]]>When using the thumbnail view for the block the heading is editable, when using the list view it is not. It also doesn’t use the title set in the plugin option. Please advise, thanks.
]]>Can anyone help?
How to change the numbered posts to bullet points?
I know this is for logged in users only, but I would like to disable or hide it… is this possible?
Is there any way to hide the “affinity score”?’
Is it possible to completely disable the plugin’s caching mechanism? My site has sufficient caching of its own, and I find that I need to clear the YARPP cache every time a new post is added, or it doesn’t get properly related to existing posts until they’re re-saved or the cache is cleared.
]]>I just installed this hoping to be able to show related posts based on tags in common but that does not appear to be an option. Under “The Algorithm”, I did turn off matching by title, content and categories but I saw that the list of related posts for a given post would not actually be filled out with known posts that have the same tag. I took a cursory look at the plugin’s code and it appears that it actually just uses the tag words to do a search for matching words across post content.
If I’m wrong, how do I show related posts that share tags in common?
As an aside, may I suggest allowing users to specify the html elements you use (like h3, ol, etc) when using the widget so we can easily match up with other default widgets? For example, I modified YARPP_Block.php to show the widget heading with h4 and class widget-title (and disabled your style sheet) so your widget would format itself like other default widgets without messing with overriding any css styles.
Thanks.
]]>I would like to change the title of’Related Posts’ to something else – how do I reset YARPP to affect these changes?
Also, what the settings for ‘Match Threshold’ – it says the default is 5. Is it 1-10? With 10 being the highest and most relevant? (or is 5 the top?)