Hey there,
I’m looking for show SOSERE recommendations on another section of the post. Specifically, below featured image of it. By default, these are shown above post meta.
Is there any way to modify it?
Thanks!
]]>How do I:
1) Center the related posts section (I currently have this one as the second one because I’m testing it against my other related posts)?
2) How do I remove the bullets that appear before each thumbnail (without messing with any of the bullets in the post)?
Hi,
thank you very much for this plugin. I’ve just installed it and have a few questions.
Is it possible to limit the output to only one post type? For example ‘product’.
I have changed line 207 in the file sosere-controller.php to
‘post_type’ => ‘product’,
Will this do the trick? Or will this destroy the functionality of the plugin?
Another question ist this. I have a plugin called “Plugin Organizer” installed on my worpress blog. It allowes me to disable other plugins on certain pages for performance reasons.
Now i have disabled your plugin everywhere but the single product pages where i also show the recomendations. Will his break your plugin?
Thanks so much again.
Looking forward to your answere.
Michael
]]>I;m sure you know about this, but I just got a message saying the plugin doesn’t exist. So I went to re-download it again, although it does exist on the plugin listing but it cannot be downloaded. So any idea when it will be available for download again? ??
It’s a good plugin, don’t give up on it.
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello,
I just installed your plug-in but it gave me this error message next to the “Custom Recommendations Thumb Size” option in the settings.
Warning: Invalid argument supplied for foreach() in /hsphere/local/home/bbbmbuu/endlessskys.ca/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-admin.php on line 524 Notice: Undefined variable: defined_sizes in /hsphere/local/home/bbbmbuu/endlessskys.ca/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-admin.php on line 533 Warning: array_merge(): Argument #2 is not an array in /hsphere/local/home/bbbmbuu/endlessskys.ca/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-admin.php on line 533 Warning: array_multisort(): Argument #1 is expected to be an array or a sort flag in /hsphere/local/home/bbbmbuu/endlessskys.ca/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-admin.php on line 535 Warning: Invalid argument supplied for foreach() in /hsphere/local/home/bbbmbuu/endlessskys.ca/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-admin.php on line 536
I like your plug-in and it is displaying okay at the end of my post, but the images do look a little off and blurry. Is it possible to fix the above. I can change the code, not a problem, if you have a suggestion as to what would fix this.
Thank you for your help,
Pennie
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>The current code trims post_title incorrectly when post_title contains multibyte characters.
We should use mb_substr
instead of substr
.
- substr( $post_obj->post_title, 0, $this->title_leng )
+ mb_substr( $post_obj->post_title, 0, $this->title_leng, 'UTF-8' )
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>We should call wp_strip_all_tags for $post_obj->post_title.
When post_title contains html tags such as foo<br>bar
, current code outputs
<img src="..." alt="foo<br>bar" ...>
.
It should be
<img src="..." alt="foo bar">
--- sosere-controller.php.orig 2016-05-31 16:17:24.000000000 +0900
+++ sosere-controller.php 2016-06-02 21:33:17.501503552 +0900
@@ -430,20 +430,20 @@
// build response string
$return_string .= '<li class="sosere-recommendation-thumbs" style="width:' . $thumb_size[0] . 'px;">' . '<a href="' . get_permalink( $post_obj->ID ) . '" style="width:' . $thumb_size[0] . 'px;">';
- isset( $url ) ? $return_string .= '<img src="' . $url . '" alt="' . $post_obj->post_title . '" title="' . $post_obj->post_title . '" style="width:' . $thumb_size[0] . 'px; height: ' . $thumb_size[1] . 'px;"/>' : $return_string .= '<div class="no-thumb" style="width:' . $thumb_size[0] . 'px; height: ' . $thumb_size[1] . 'px;"></div>';
+ isset( $url ) ? $return_string .= '<img src="' . $url . '" alt="' . wp_strip_all_tags($post_obj->post_title) . '" title="' . wp_strip_all_tags($post_obj->post_title) . '" style="width:' . $thumb_size[0] . 'px; height: ' . $thumb_size[1] . 'px;"/>' : $return_string .= '<div class="no-thumb" style="width:' . $thumb_size[0] . 'px; height: ' . $thumb_size[1] . 'px;"></div>';
// add title
if ( true === $this->show_thumbs_title ) {
- if ( 0 < $this->title_leng && mb_strlen( $post_obj->post_title ) > $this->title_leng ) {
- $return_string .= '<span>' . substr( $post_obj->post_title, 0, $this->title_leng ) . '...</span>';
+ if ( 0 < $this->title_leng && mb_strlen( wp_strip_all_tags($post_obj->post_title) ) > $this->title_leng ) {
+ $return_string .= '<span>' . substr( wp_strip_all_tags($post_obj->post_title), 0, $this->title_leng ) . '...</span>';
} else {
- $return_string .= '<span>' . $post_obj->post_title . '</span>';
+ $return_string .= '<span>' . wp_strip_all_tags($post_obj->post_title) . '</span>';
}
}
// close link, list
$return_string .= '</a></li>';
} else {
- $return_string .= '<li><a href="' . get_permalink( $post_obj->ID ) . '">' . $post_obj->post_title . '</a></li>';
+ $return_string .= '<li><a href="' . get_permalink( $post_obj->ID ) . '">' . wp_strip_all_tags($post_obj->post_title) . '</a></li>';
}
}
}
@@ -663,4 +663,4 @@
} // end: if exists class
-$obj = new Sosere_Controller();
\ No newline at end of file
+$obj = new Sosere_Controller();
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hey,
I have selected 150 x 150 for the thumbnail size in the settings, but we have a small problem, the plugin is loading the full size version of the image, why not load the already generated 150 x 150 image that WordPress generates automatically?
Thanks,
NG
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hi,
After disabling all other plugins and leaving just NextCellent Gallery and Social Semantic Recommendation (SOSERE) activate I get a problem when i select the menu option Nectcellent Gallery/Images from the drop down menu at the top of the screen.
The https://mywebsitename.com/wp-admin/admin.php?page=nggallery-add-gallery opens but it keeps refreshing repeatedly this continue until i get an error in the screen (chrome and firefox tested):
Bad Request
Your browser sent a request that this server could not understand.
Size of a request header field exceeds server limit.
Referer
I have posted this message also in NextCellent Gallery forum as I am not sure where the problem lies.
In the server error log i do not get any messages.
I hope the information that i have provided is sufficient and that there is a solution to this as I love both plugins and rely on them.
Current workaround is to temporarily disable Social Semantic Recommendation (SOSERE)to add new galleries.
Thanks for your time.
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello,
Iam using your plugin since about 4 months and it is really awesome.
No Iam developing news website and I need to customize the plugin to show articles based on:
1- The same publish time only.
2- The same custom taxonomy (not category).
Can we do that ?
Appreciate your feedback.
KR,
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hey there —
For the last month or so, we’ve been receiving memory exhausted errors in the file: sosere-controller.php
Have been steadily upping the memory limit and it’s currently 256M and still receiving these errors. Don’t want to up the memory any more — there’s an issue here.
Are there any steps I can take to stop this memory usage? This site isn’t particularly large…
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hi Arthur,
Since the last few updates, we started getting these “warnings” on our “Events” postings:
Warning: Invalid argument supplied for foreach() in /home/content/p3pnexwpnas08_data02/99/2510499/html/wp-content/plugins/social-semantic-recommendation-sosere/sosere_lib/sosere-controller.php on line 287
The warning does not show on regular posts, only on events (we use Events Manager plug in). We never had those warnings before. Can you please investigate?
Thanks ??
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello,
Currently the only way for related posts to show up is when you go inside a post, is it possible to show it on each post on the main page? without clicking to go inside a post..
Thanks
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello,
I’m testing your plugin – I will wait 6 weeks as you say before showing it. But where are the data stored ?
Maybe you may give the option to choose between all thumbnails created size ?
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello,
in many articles, i see than no related articles are shown.
Is there any way that i can always show for example 4 related articles???
Thank you
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hello!
Your plugin is great!!
But, when i use WPML plugin (for multilanguage pages) the recomended posts an the bottom of each post, sometimes shows posts from other languages.
The language url are like:
https://www.mysite.com/lang=en
https://www.mysite.com/lang=de
…
Is there any way i can fix this and show only posts of this specific language?
Thank you
-Konstantinos
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>Hi,
First of all, very light plugin with really specific selection of related content. I was just wondering if the look of related content can be made more fancy/pro, any css that cosuld put a seperator line just above the related posts thing start. At least a way with which the title for related posts could be made an H3 (somewhat prominent). Here’s a snapshot of the current look of related posts on my website https://screencast.com/t/YUSaevrbZdu
Thanks and God bless,
Ali
https://www.ads-software.com/plugins/social-semantic-recommendation-sosere/
]]>