Forum Replies Created
-
AuthorPosts
-
nirav
KeymasterHello There!
Hope you are doing good!
Please share with us your website URL here or on [email protected] as it will help us to check the issue in detail and we can provide you an effective solution.
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
We have checked the details and found out that it is not the theme provided by prodesigns.com.
Feel free to get in touch in case of any query related to the theme Provided by ProDesigns.com.
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
We have checked the details and found out that it is not the theme provided by prodesigns.com.
Feel free to get in touch in case of any query related to the theme Provided by ProDesigns.com.
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing well!
You will need to install a newsletter plugin for the same. We recommended you to use Mailchimp for the wp plugin
https://wordpress.org/plugins/mailchimp-for-wp/ .Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
we checked your site and the image size is looking fine.
It seems that the issue has been resolved.Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
we checked your site and the image size is looking fine.
It seems that the issue has been resolved.Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
Please add below css
/* change small diamond background */ #home-page-widget-area .widget.ecommerce_gem_widget_call_to_action .call-to-action-offer-inner::before { background: red !important; } /* change big diamond button background */ #home-page-widget-area .widget.ecommerce_gem_widget_call_to_action .cta-button { background: red; }
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsJanuary 8, 2021 at 11:17 am in reply to: HomePage Featured Categories/Products Carousel padding and margin customisation #17794nirav
KeymasterHello There!
Hope you are doing good!
For product slider the css selector is .widget.ecommerce_gem_widget_latest_products
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsJanuary 8, 2021 at 11:15 am in reply to: Advertisement below slider showing one only and two per row interchangeably #17793nirav
KeymasterHello There!
Hope you are doing good!
You need to remove the below css from custom css
#home-page-advertisement-area .container{max-width: inherit; padding: 0 10px;}
and need to add
#home-page-advertisement-area.half-width .ecommerce_gem_widget_advertisement{width: 100%;} #home-page-advertisement-area.half-width .ecommerce_gem_widget_advertisement + .ecommerce_gem_widget_advertisement{margin-top: 50px;} #home-page-advertisement-area .advertisement-widget .advertisement-wrap{padding: 60px 10px;} #home-page-advertisement-area .advertisement-widget.overlay-enabled .advertisement-wrap, #home-page-widget-area .advertisement-widget.overlay-enabled .advertisement-wrap{background-position: center bottom 25%;} #home-page-advertisement-area .advertisement-widget .advertisement-wrap .advertisement-content h3{font-size: 32px; line-height: 1.4;} #home-page-advertisement-area .advertisement-widget .advertisement-wrap .advertisement-content, #home-page-widget-area .advertisement-widget .advertisement-wrap .advertisement-content{margin-bottom: 30px;} #home-page-advertisement-area .advertisement-widget .advertisement-wrap .advertisement-buttons .button.advertisement-button, #home-page-widget-area .advertisement-widget .advertisement-wrap .advertisement-buttons .button.advertisement-button{margin-top: 30px;}
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
Our theme uses the below library to create breadcrumb for various pages like product page, blog page. Also, it creates google structure data to display breadcrumb on the google search result page.
https://github.com/justintadlock/breadcrumb-trail/blob/master/inc/breadcrumbs.php
You can find this file at ecommerce-gem-plus/assets/vendor/breadcrumbs/breadcrumbs.php
You may need to write this type of customization in the above file.
We do not recommend modifying vendor files because such changes will be overwritten by the next release of the theme.Alternatively, you can redirect the shop page to products pages using the below plugin
https://wordpress.org/plugins/redirection/ .Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsJanuary 1, 2021 at 12:26 pm in reply to: Menu items color different in mobile view, fine on desktop #17735nirav
KeymasterHello There!
Hope you are doing good!
It is not possible with the current scope of the theme.
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
It does, may your database or the browser you are viewing is not supported.
At the theme level, we have not set any character set limitation. so it should support all characters including Unicode.Please get in touch in case you face any issues after checking the detials.
Have a great day ahead!
Regards,
Team ProDesignsDecember 28, 2020 at 3:35 am in reply to: A few problems (Product image, mobile menu & weird space) #17686nirav
KeymasterHello There!
Hope you are doing good!
1) in custom CSS, you have added the below CSS and it is causing the issue in the mobile version. you may need to wrap it inside a media query. for the mobile version, the width should be 100%.
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images { width: 50%; opacity: 1!important; }
2) regarding the single line in the mobile menu, jquery is not rendering the span tag properly so resolve this issue by editing the file: ecommerce-gem-plus/assets/js/custom.js
Search for code$('#main-nav').meanmenu({ meanScreenWidth: "1050", });
And replace it with
$('#main-nav').meanmenu({ meanMenuOpen: "<span></span><span></span><span></span>", meanScreenWidth: "1050", });
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
By default theme will crop your logo in 220×70 dimension to make the design proper, if it does not fit in your case then you can make little change in the code provided below:
Open theme functions.php file
Search for the below codeadd_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 220, ) );
And replace it with the below code
add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 220, 'flex-height' => true, 'flex-width' => true, ) );
It will allow you to upload a site logo without cropping.
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesignsnirav
KeymasterHello There!
Hope you are doing good!
Please follow the below step to add custom CSS that changes the diamond background-color.
1) Please log in to the admin area
2) Go to “Appearance >> Customize >> Additional CSS”.
3) Paste the below code in “Additional CSS” and save it afterward:#home-page-widget-area .widget.ecommerce_gem_widget_call_to_action .cta-widget::before{ background: black !important; }
Hope this helps!
Regards,
Team ProDesigns -
AuthorPosts