pluginandplay
Forum Replies Created
-
Hi @jhuffman
Thanks for the web page link. I have checked and found that it is Post Single page. Means post detailed page. It is handled by your theme.
Post Slider and Post Carousel plugin does not handle the post single / detail page. The left side social icons are coming from your theme named Webify. May your theme have setting to disable it.
In case if there is no option to remove it from post single page then you can use below CSS to hide it. You can add below CSS to WordPress Appearance > Customizer > Custom CSS or your theme / child theme style.css
.single-post .tb-share.tb-style1{display: none;}I hope it helps you.
Hello @vigneshkumar
Thanks for the screenshot. I have tried to open your website but it is not working. I am not able to access your website.
Can you please share a screenshot showing how you are adding the shortcode?
Hello @travelavenger
Can you please share your web page link on which you had setup the plugin? So I can take a look and try to understand the scenario.
Have you tried the above CSS? Does it work for you?
Hello @anthonycooper6
Thanks for the web page link.
Here is custom CSS. You can add this in WordPress Appearance > Customizer > Custom CSS or your theme/child theme style.cssa.bdp-readmorebtn{background: #ddd; border-color: #000; color: #000;}- This reply was modified 1 year, 10 months ago by pluginandplay. Reason: CSS Modified
Hi @raunhar
Post Slider and Post Carousel plugin’s slider and carousel layout have a read more button functionality. On title you can use the CSS
pointer-events: none;to remove the click event on title.Right now Widget does not have a Read More button functionality.
Hi @mabrar
Thanks for the website link. I can see the slider at the right hand side section on the home page.
News & Blog Designer Pack plugin uses the H2 tag and does not add it’s font size CSS so it inherits from your current theme.
No worries. Below is the custom CSS to increase the font size and to reduce the gap below it. You can put it WordPress Appearance > Customizer > Custom CSS or put it into your theme / child theme style.css
.bdp-post-slider .bdp-post-title{
padding: 0;
}
.bdp-post-slider .bdp-post-title a{
font-size: 22px;
}Please try this. I hope this will work for you.
Hello @mabrar
Can you please share your website URL on which you had setup the plugin? So I can take a look and help you with custom CSS.
Hi @michelles00
Yes, You can. In the provided CSS you can see the border CSS like
border: 1px solid #ccc;You just need to increase the pixel size like
border: 5px solid #ccc;That’s it.
Thanks for noticing this. Yes, this PHP warning is coming in PHP 8.1. I have fixed this error and released a new version 3.4.6
Kindly update to the latest version.
Hi @cihomewood
Thanks for noticing this. Yes, this PHP warning is coming in PHP 8.1. I have fixed this error and released a new version 3.4.6
Kindly update to the latest version.
Hi @jtwine
Sorry for the delay response.
Actually there is no need of it. News & Blog Designer Pack plugin is quite simple and created with shortcodes and widgets. You just need to add the relevant shortcode in any page or post to get the output.
For example, You want to show the Post Grid then you need to use this shortcode
[bdp_post grid="3"]More details you can find on the plugin description tab or via Shortcode Builder menu within plugin admin area.
Hi @michelles00
Glad to know that. If you like my plugin and support then please rate it https://ww.wp.xz.cn/support/plugin/post-slider-and-carousel/reviews/
Thanks for noticing this. It looks like it is coming in specific PHP version.
My PHP version is 7.4.33 and at my end this error is not coming.
Just to confirm, can you please let me know your PHP version? So I will take a look and fix it.
Thanks
Hello @michelles00,
Below is CSS to fill the boxes,.psac-post-carousel-slide {
border: 1px solid #ddd;
background: #f1f1f1;
}
Here i am also adding some CSS to manage the short content of your slider..psac-post-carousel.psac-design-1 .psac-post-short-content {
margin-bottom: 15px;
font-size: 16px;
line-height: normal;
font-weight: normal;
text-transform: capitalize;
}
.psac-post-carousel.psac-design-1 .psac-post-content{
text-align: center;
padding: 15px;
}Please try the above CSS. I hope you will like it.