Vishakha Patel
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Product Review Lite] Several Reviews in the same WP PostHi There,
Can you please explain more?
Are you looking to have multiple reviews on a single post or you want to list the products with their reviews on a single page/post?
Thanks.
Hi There,
Unfortunately, it is not possible with a simple change. It will require custom code in theme files.
Thanks
Forum: Plugins
In reply to: [Visualizer: Tables and Charts Manager for WordPress] Increasing Tooltip textHi There,
Increasing font-size more than 20 will require custom changes into the plugin.
Can you provide the link to the page? So that can I can check if anything can be done with CSS.
Thanks.
Hi There,
It seems like the issue is resolved. I checked the website on mobile sized screen, Chrome normal and full screen. The website was displaying properly.
Please have a look here – https://snag.gy/ZfWkG9.jpg.
If the issue is not resolved yet, please check this once with another computer’s Chrome browser.
Regards
Forum: Themes and Templates
In reply to: [Lawyeria Lite] Change frontpage to staticHi There,
Are you trying to change it from WP-admin > Settings > Reading Settings? or WP-admin > Appearance > Customize?
If customizer, try to change from general settings. It may work.
Also, I see that Google plugin is throwing some error. It should not be causing the issue in changing the home page; however, try to make the change by deactivating the plugin temporarily if it helps.
Let me know how it goes.
Regards
Forum: Themes and Templates
In reply to: [Amadeus] Responsive design not working with any SEO PluginHi There,
I have created a site here with the theme and Yoast SEO plugin installed – https://curious-kouprey.w6.poopy.life/. It is working fine on mobile screen size. Please have a look.
I could not check on your website as the plugin seems deactivated currently. Thus issue was not coming.
Regards.
Forum: Themes and Templates
In reply to: [Shop Isle] free white space on shopisleHi There,
I cannot access the website URL. However, from the theme demo https://themeisle.com/demo/?theme=ShopIsle, I understand that you need to put images on the white colored background.
Unfortunately, this is not possible with the admin panel or simple CSS change, because space is given as a whole single background. That said, It is a big white box on which the products are showing. So it is not like right side white box is different or left side space is different.
Hence, to put any extra image or slide there in the vertical area will require custom code changes into PHP/CSS files.
Though if you want to do it, the best way is by creating a child theme. This article – https://docs.themeisle.com/article/14-how-to-create-a-child-theme helps in creating the child theme.
Regards
Forum: Themes and Templates
In reply to: [Shop Isle] Shop Sidebar Showing Under Products (Not alongside)Hi There,
I am trying to access the website URL. But It is not working for me.
It says, “This site can’t provide a secure connection
d91.ce3.myftpupload.com uses an unsupported protocol.
ERR_SSL_VERSION_OR_CIPHER_MISMATCH”Can you please check and provide correct one?
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Elementor Font SizeHi There,
Go to Content > Text Editor > Text tab when you are editing the text size. Make sure that the text is not having a style with size over there. Try removing any spam tag or P tag with size mentioned.
Once done, then try to change the size under Style > Typography. It should work then.
Let me know how it goes.
Regards
Forum: Themes and Templates
In reply to: [Shop Isle] Slider section button missingIt seems like your issue is resolved now. I can see the slider scrolling on your homepage.
Forum: Themes and Templates
In reply to: [Shop Isle] Shop Isle Product Slider in MobileHi There,
I checked too and I can see the same screen as https://prntscr.com/h5q1k1 as mentioned by @wpcoderguy.
I checked on iPhone too where also it is same.
Can you let us know the device/configuration you are using? Or try checking it by clearing browser cache once?
Regards
Hi There,
Out Team widget is not having the option to link each team member.
Instead, Zerif – Our focus widget provides an option to link. Try using the “Our focus” widget in “Our team” section.
Regards
Forum: Themes and Templates
In reply to: [Shop Isle] glyphicons in menu only show in customizer viewHi There,
Have you enabled SSL(https) on your website? If so, please read on.
Solution1:
I observed that the Home page is still showing “https://bentonfinewine.com/” instead of https in URL. Try changing the URL to https in WordPress admin > Settings > General > “WordPress Address (URL)” & “Site Address (URL)”.Make sure to redirect HTTP URL to HTTPS after making the change (https://www.blogginglove.com/what-to-do-after-installing-ssl-certificate/).
Please keep a website backup before making these changes for safety purpose.
Solution2:
If above does not work, just put below into your .htaccess file.<IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch> </IfModule>
Please keep a back-up before making any changes to the .htaccess file.
Find more details over here – https://crunchify.com/how-to-fix-access-control-allow-origin-issue-for-your-https-enabled-wordpress-site-and-maxcdn/
Hope this shows up the icons.
Thanks
Forum: Themes and Templates
In reply to: [islemag] Submenu doesn’t scrollHi There,
Thank you for using the theme.
I checked this and it seems like there is a small problem.
I have reported it to the development team to resolve. In the meantime, you can resolve it by adding following custom CSS code to Customize > Additional CSS.
.main-navigation ul ul li:hover > ul{ overflow: scroll; height: 600px; }
Let me know if you need any further help.
Thanks.
Forum: Themes and Templates
In reply to: [Zillah] Reducing size of header bannerHi There,
Please find the answers of your questions as below starting from top:
1. To reduce the size of the Site title box, following class can be used in Custom CSS.
.header-inner-site-branding {padding: 94px 0 !important }
Changing 94 in above line to any number will change the height of the box.
Custom CSS can be added at WP-admin > Customizer > Additional CSS section.
2. Post information on Homepage cannot be removed directly. However, you can remove them from the file content.php at “/themes/zillah/template-parts/” folder.
Following code is used to show date, title and category:
zillah_posted_date(); the_title( '<h2 class="entry-title entry-title-blog"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); zillah_category();
3. This will require custom CSS changes too. Try increasing width in the following class:
.post-thumbnail-wrap { text-align: center; width: 120%; margin-bottom: 50px; }
You can add this code to Additional CSS section and make changes as per your requirements. You will need to align the image the way that it shows in the centre.
Or you can increase the overall width too with following code:
@media screen and (min-width: 1200px)
style.css?ver=4.9.1:3515
.container {
width: 1170px;
}But this may affect the other components. Try it out if it looks good on your website.
4. 900 x 545 image size would be good.
Let me know how this information helps you to achieve what your requirements are. Or if you need any more help.
Thanks