Forum Replies Created
-
AuthorPosts
-
wensolutions
KeymasterHello @rweiss23,
You need to copy the entire code of the function “clean_commerce_site_branding()” to the child themes functions.php file i.e
https://gist.github.com/anonymous/2d7e65140d8da70360739cf6ae24cf55
Here you can make the necessary changes save them. After activating the child theme you will be able to see the changes at front end .
If you have any confusion further, please let us know.
Best Regards!!
wensolutions
KeymasterHello @lampir,
To adjust the content according to the image height please use below given CSS.
For this go to Admin Panel > Appearance < Customize > Additional CSS and paste below given code:
.partners-item img { height: 188px; }Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @cbhs-sacramento,
As we have inspected the site URL you have provided, we found that the issues you have mentioned is due to the third party plugin “boldgrid-editor“.
So once deactivate the mentioned plugin and see if the issue is solved .
But if the issue still continues then kindly let us know.
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @roomaromas,
Nice to know that your issue is solved .
If your are having difficulty in re setting the customizer after activating the child theme then please include the below given code in your child themes functions.php .
function clean_commerce_child_customizer_options_import() { if ( get_stylesheet() !== get_template() ) { add_filter( 'pre_update_option_theme_mods_' . get_stylesheet(), function ( $value, $old_value ) { update_option( 'theme_mods_' . get_template(), $value ); return $old_value; // prevent update to child theme mods }, 10, 2 ); add_filter( 'pre_option_theme_mods_' . get_stylesheet(), function ( $default ) { return get_option( 'theme_mods_' . get_template(), $default ); } ); } } add_action('init', 'clean_commerce_child_customizer_options_import');This code will allow all the setting of parent theme to be in the child theme so you don’t have to re enter the settings .
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @roomaromas,
Please try Regenerating thumbnails using the plugin like given below:
https://wordpress.org/plugins/regenerate-thumbnails/
If this does not solve the issue, please kindly let us know.
Best Regards!!
wensolutions
KeymasterHello @roomaromas,
To display only three product in related product section you have to create and activate the child theme.
Child theme references:
https://codex.wordpress.org/Child_ThemesYou can also create the child theme using plugin:
https://wordpress.org/plugins/wp-child-theme-generator/After activating the child theme in your child themes functions.php include below given code:
add_filter( 'woocommerce_output_related_products_args', 'clean_commerce_child_related_products_args' ); /** * [clean_commerce_child_related_products_args Woo related Products Fix] * @param [type] $args [array] * @return [type] [array] */ function clean_commerce_child_related_products_args( $args ) { $args['posts_per_page'] = 3; // 3 related products return $args; }We are not very clear on your second query i.e. “size of the category icons and the product icons” so please send the proper screen shot of the issue so we could provide precise fix .
Hope this helps.
Best Regards!!
May 4, 2017 at 5:28 am in reply to: Photos don't display on page like the "Category" pages do in the demo #41644wensolutions
KeymasterHello @dlindphoto,
We apologize for the inconveniences.
But as we have tested the issue locally we are getting exactly like in the demo as you can see in below screen shot :
http://image.prntscr.com/image/a6e2f88d984a4bdf99121931bcb5215d.png
Please follow below instruction once:
– Create a category “Macro” .
– Create five different posts and upload the image of recommended image size (439*706) in one of the post .
– Assign the posts you have created to the category “Macro” which you have created .
– Go to Admin Panel > Appearance > Customize > Theme Option > Layout Options > Archive Layout and chose option Masonry from the drop down.Now you will able to see the page as in the demo by going to the front end ie. from Category > Macro at the top right .
If these above mentioned steps does not solve the issue then please provide the access to your site so that we could inspect the issue precisely .
We would also like to assure you that we are always here to help you in your issue so you can always ping us when ever required .
Best Regards!!
wensolutions
KeymasterHello @sujan,
The theme has the feature to show the sale price in the product listing page as well as in the single page .
Hope this helps .
Best Regards!!
wensolutions
KeymasterHello @sujan,
To set up the featured carousel as shown in the demo go to Admin Panel > Appearance > Customize > Featured Carousel > Carousel Type and Enable Carousel On by choosing the option Static Front Page and Shop page .
Similarly you can manage the Featured Carousel feature from Admin Panel > Appearance > Customize > Featured Carousel > Carousel Options.
Also to set up other sections you can refer to themes official documentation given below:
http://themepalace.com/instructions/themes/clean-commerce/Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @869140255qq-com,
For the banner image Please use above given CSS . i.e.
.page-inner-title { display: block; }Also upon inspecting your site we found that you have not set image for the slider section as well.
To make the image appear in the slider section you need to upload the image in the featured image section of the page/post .
For the side bar, yes you can manage the display of the sidebar by going to the particular page. The option we have provided also works when we have tested the theme locally .
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @869140255qq-com,
Additionally to hide the sidebar go to Admin Panel > Appearance > Customize > Theme Options > layout Options > Default Layout and chose the option No sidebar from the drop down.
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @869140255qq-com,
Please use below CSS to solve your issue .
For this go to Admin Panel > Appearance > Customize > Additional CSS.
.page-inner-title { display: block; }Hope this helps.
Best Regards!!
May 4, 2017 at 2:05 am in reply to: How To Set Slider Width and Height To Be The Same For All images #41627wensolutions
KeymasterHello @xsrock,
In order to solve your issue use below given CSS .
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
@media(min-width:769px){ .slider-section .bx-wrapper img { max-height: 368px; } }Hope this helps .
Best Regards!!
wensolutions
KeymasterHello @869140255qq-com,
As far as we have checked the theme locally, the image uploaded in the layout options displays in the preview and change upon chaining .
Can you post your site URL so that we could inspect the issue further?
Hope you understand .
Best Regards!!
wensolutions
KeymasterHello @cbhs-sacramento,
As far as we have checked the theme locally it is working fine i.e it is exactly like in the demo .
Can you post your site URL so that we could inspect further into the issue ?
Best Regards!!
-
AuthorPosts





