Tom
Forum Replies Created
-
As mentioned by stason, you can download it from:
https://downloads.wordpress.org/plugin/wordpress-seo.2.3.5.zipForum: Plugins
In reply to: [Recent Posts Widget Extended] Display text under the thumbnailsI am going crazy trying to fix this. Could anyone help me please? What should be changed in the below code in recent-posts-widget-extended/includes/functions.php?
<style> .rpwe-block ul{list-style:none!important;margin-left:0!important;padding-left:0!important;}.rpwe-block li{border-bottom:1px solid #eee;margin-bottom:10px;padding-bottom:10px;list-style-type: none;}.rpwe-block a{display:block!important;text-decoration:none;}.rpwe-block h3{background:none!important;clear:none;margin-bottom:0!important;margin-top:0!important;font-weight:400;font-size:12px!important;line-height:1.5em;}.rpwe-thumb{border:1px solid #EEE!important;box-shadow:none!important;margin:2px 10px 2px 0;padding:3px!important;}.rpwe-summary{font-size:12px;}.rpwe-time{color:#bbb;font-size:11px;}.rpwe-alignleft{display:inline;float:left;}.rpwe-alignright{display:inline;float:right;}.rpwe-aligncenter{display:block;margin-left: auto;margin-right: auto;}.rpwe-clearfix:before,.rpwe-clearfix:after{content:"";display:table !important;}.rpwe-clearfix:after{clear:both;}.rpwe-clearfix{zoom:1;} </style>My thumbnails are aligned to the left and the titles show to the right of the thumbnails. I want them to show under the thumbnails.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Display text under the thumbnailsIs there anybody out there?
Forum: Plugins
In reply to: [WebSub (FKA. PubSubHubbub)] No rel="hub" declarationsSilly me, I was searching in the source code of my website. From what you wrote I understand that I should have opened the feed and looked at the source there. Thank you very much!
Forum: Plugins
In reply to: [WebSub (FKA. PubSubHubbub)] No rel="hub" declarationsHi pfefferle, I’ve just sent you the link via the contact form on your web site. Thank you very much for checking it!
@patternreplicas thank you very much for posting that last code. It worked for me too.
I have also added to the array the posts which I wanted to exclude and it worked:
array( get_the_ID(),100,101 );I hope that it will not break our web sites once the plugin gets updated. But it seems to be working fine.
Forum: Plugins
In reply to: [Orphans] Sierotki na wybranych stronach / wpisachCześć,
Do functions.php dodałem:
add_filter('option_iworks_orphan_the_content', 'my_func'); function my_func($value) { if (is_single()) { return 0; } return $value; }ale wtyczka sierotki dalej działa na wpisach (ma działać tylko na stronach). Co robię nie tak?
@satrya: Why not add this option to the widget?
I have only basic coding knowledge and compared to other plugins I find the configuration of this plugin highly confusing.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Selecting categories does not workI am seeing the same bug in the Recent Posts Widget Extended.
Forum: Plugins
In reply to: [WPSocialite] Buttons not loadingIn case anyone has the same problem – I fixed it by deleting and reinstalling my caching plugin. Now WPSocialite is working like a charm.
Forum: Plugins
In reply to: [WPSocialite] Buttons not loadingOh, no! Now the buttons are not loading also for me. How come?
I’ve cleared the browser cache and reloaded the page several times…
Where exactly should I add
exclude => get_the_ID()to the filter?Should it go somewhere to the below code?
add_filter( 'rpwe_default_query_arguments', 'your_custom_function' ); function your_custom_function( $args ) { $args['posts_per_page'] = 10; // Changing the number of posts to show. return $args; }And then that code to functions.php?
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Too many posts shownI added the below code to my functions.php but it did not limit the number of displayed posts to 3 when “Limit to Category” is selected:
// Filter for Recent Posts Widget Extended plugin add_filter( 'rpwe_default_query_arguments', 'your_custom_function' ); function your_custom_function( $args ) { $args['posts_per_page'] = 3; // Changing the number of posts to show. return $args; }I am also hoping for this update (to exclude the currently displayed post or posts).
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Post list without current post+1
Would be great to exclude the thumbnail of the current post.