rajros
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Not clickableAnswered in the other thread.
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Narrowing a marginClosing this as resolved
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Narrowing a marginHello,
Currently the plugin doesn’t have option to hide dates using shortcode. May be in the next version I will include this.
For now you can hide using css:
.rpscw-infoblock {
display:none;
}For reducing the bottom margin add this css:
.rpscw-postmeta {
margin-bottom: 0;
}Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Featured Image not showingLooks like some conflict with latest wordpress version. I have updated the plugin.
Could you please update the plugin to latest version and check?Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Not clickableLooks like some divs of other content sections are overlapping. Could you check if the top content blocks or the plugin shortcode have any missing tags or open divs?
For now you can add this css.
.rpscw-col {
z-index: 999;
}Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Attempting to have multiple rows showHi,
Could you let me know the shortcode which you are using?
Also the category link is: https://noblefolkdesign.com/52Films/category/review/ ??
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Option to show/hide thumbnailThank for the heads up. Will look into this and remove if any unwanted <p> tags if generated in next update.
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Option to show/hide thumbnailHi,
I have updated the plugin to include show_image=”false”
Please update the plugin and let me know.Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Shortcode Breaks Content BelowPlease share the website/page url.
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Size between 2 blocks RPSWResolving this as haven’t heard further
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Size between 2 blocks RPSWYes, that is the css file. However you can add these to your theme css file also:
.rpscw-col {
margin-right:3%;
}.rpscw-col:nth-child(3) {
margin-right: 0;
}You can adjust the % or can use px as well. The 3rd element doesn’t need right margin so the nth-child css can be used.
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Doesn’t show featured image thumbnailsHi,
Are you still facing the issue? On the page link which you have mentioned, I see the images in the post.
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] custom styleThis doesn’t have that layout out of the box. So some css tweaks needs to be used for that.
[recentposts-sc enable_excerpt=”false”]
This will disable the excerpt. Then try this css:
.rpscw-sidept {
position: absolute;
top: 25%;
}.rpscw-sidept a {
color: #ffffff;
}.rpscw-postmeta {
display: none;
}Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Feature imageCould you please share the url of the page where you are using this?
Forum: Plugins
In reply to: [Recent Posts Shortcode & Widget] Hide post dateDoesn’t have option by default. May be in future releases/update I will include this. For now you can use this css to hide the date block:
.rpscw-postmeta {
display: none;
}