rajarora795
Forum Replies Created
-
Forum: Plugins
In reply to: [Recently Viewed Products] Responsive issueHi
I am just trying to undestand the issue.
Can you please tell how you are using the plugin
1) Are you using through shortcode ?
2) Are you using a slider?If slider is not used the layout is decided by the theme and not the plugin
If slider is used , its responsive and shows only 2 products in mobile viewThanks
RajnishForum: Plugins
In reply to: [Recently Viewed Products] Label for Recent ProductsHello
1) The Label is fetched from the plugin settings page, there was bug in the code where the shortcode was not fetching the updated label from the plugin-settings page.The bug has been rectified . Please install the latest version
2)The label uses __( ) so is translate ready. However there is no provision to add label to shortcode yet.I would add that in future updates.
3)All the icon,color and size comes from css classes
rvpscarousel .slick-next:before {
content: ‘>’;
color: black;
font-size: 60px;
}
rvpscarousel .slick-prev:before {
content: ‘<‘;
color: black;
font-size: 60px;
}
Override these classes in your theme to fit your designHope this solves the issues
Thanks
RajnishForum: Reviews
In reply to: [Recently Viewed Products] Solid plugin, simple to useThanks for recommendations!
Forum: Plugins
In reply to: [Recently Viewed Products] rvp_ pages showing in searchThanks for appreciation !
Forum: Plugins
In reply to: [Recently Viewed Products] Product Title / Font familyAs there are no further queries , the issue is deemed resolved
Forum: Plugins
In reply to: [Recently Viewed Products] rvp_ pages showing in searchHi ,
The custom-post-type and custom field’s data is now excluded from the wordpress search
ThanksForum: Plugins
In reply to: [Recently Viewed Products] notify You have not viewed any product yet!Hi
This feature has been introduced in the latest update
ThanksForum: Plugins
In reply to: [Recently Viewed Products] rvp_ pages showing in searchHi,
Yes you are correct , the custom field’s data (created by the plugin) does show up in search . I would take care of that in the next update
Thanks for pointing out
RajnishForum: Plugins
In reply to: [Recently Viewed Products] notify You have not viewed any product yet!Feature not available yet , coming in next update
Forum: Plugins
In reply to: [Recently Viewed Products] rvp_ pages showing in searchNo, the plugin doesnot create any page, it only creates a custom field to store ids of the products.
Thanks
RajnishForum: Plugins
In reply to: [Recently Viewed Products] JS/CSS enqueued everywhereYes , you are correct , the js and CSS is loaded on every page as the shortcode can be placed anywhere. However as you suggested I would be coming up with the solution asap
RajnishForum: Plugins
In reply to: [Recently Viewed Products] Products not showing on 5th productHi,
Look for a issue named Mobile View for a solution to show 1 image in mobile view
In the slider products are coming from right and I am afraid , it is hard coded.
Thanks
RajnishForum: Plugins
In reply to: [Recently Viewed Products] Product Title / Font familySir/Madam
My apologies for answering late.
the title uses h2 tag You can easily change it’s size or font-family targeting this h2 element in .recent_products class . For example.recent_products h2{
font-size:1rem;
font-family:cursive;
}Hope it solves your query
Thanks
RajnishForum: Plugins
In reply to: [Recently Viewed Products] < 3 items breaks CSSSir,
If you inspect the page,the file main.min.css(most probably from the theme) is overiding the default woocommerce css for the class ul.products .Its changing the display type to flex and imposing its own width which is causing trouble. The way out could be to target ul.products class in recent_products class.
.recent_products ul.products{
display: block;
width: auto;
margin-left: 0;
margin-right: 0;
clear:both;
}
You might need to make the above css important if its still over-ridden by theme css.
Hope it helps,
Thanks
RajnishForum: Plugins
In reply to: [Recently Viewed Products] Nothing is shown…Can you provide the link ?