Home › Forums › Pro Themes › eCommerce Market Pro › Home Page slider duration
Tagged: home page slider
- This topic has 11 replies, 2 voices, and was last updated 6 years, 10 months ago by
wensolutions.
-
AuthorPosts
-
May 18, 2018 at 3:24 pm #72050
Richard Daniel
Participant1. My home page doesn’t cycle through products/images
2. How will I adjust the cycle rate faster or slower
~ThanksMay 21, 2018 at 12:06 am #72131wensolutions
KeymasterHello @sgtool,
First of all thank you very much for buying the pro version fo the theme.
Actually, the slider that is displayed at the front page does not rotate through the no of slides. You have to manually slide the slider by clicking on the pager.
To be more clear about the feature you can even refer to the demo fo the theme given below:
http://themepalace.com/theme-demo/?demo=SXB3ckxjUUdHSi8xWDQxSWUvOWZrUT09#
We hope this answer addresses both of your query.
If you have any further query then please do not forget to post them.
Thank you.
Best Regards!!
May 21, 2018 at 2:34 pm #72181Richard Daniel
ParticipantI see. I thought it cycled through images like a carousel.
1. Can the change be automated? If so, how?
2. What is the optimum image size/ratio?Thanks
May 22, 2018 at 12:08 am #72195wensolutions
KeymasterHello @sgtool,
To make the images slide without having to click on the pager requires higher code customization as we need to add custom JS.
But having said that we will definitely consider it as the requested feature and try to include them in the coming updates of the theme.
As for the size query, you can upload the image of size “1350X560 px” in the slider.
Hope this helps.
As mentioned above any further issues are always welcome.
Thank you.
June 5, 2018 at 3:12 pm #73220Richard Daniel
ParticipantWhen I go to the shop page. the header (page-title) says “Archives:Products” is there a way to make it say “Products”?
ThanksJune 6, 2018 at 12:41 am #73238wensolutions
KeymasterHello @sgtool,
To remove the Archive: in the shop page you have to add custom code through your child theme functions.php file.
You can activate the child theme manually or from the plugins.
After activating the child theme in your child theme functions.php file add below given code.
function ecommerce_market_pro_remove_cat_titles($title) { if ( is_category() || is_archive('product') ) { if ( function_exists( 'is_shop' ) ) { if ( is_shop() ) { $title = woocommerce_page_title(); } else{ $title = single_cat_title( '', false ); } } else { $title = single_cat_title( '', false ); } } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; } add_filter( 'get_the_archive_title', 'ecommerce_market_pro_remove_cat_titles' );
Hope this helps.
Best Regards!!!
June 6, 2018 at 1:31 pm #73298Richard Daniel
Participanttried what you sent, and got this message.
Your PHP code changes were rolled back due to an error on line 28 of file wp-content/themes/eCommerce-market-pro-child/functions.php. Please fix and try saving again.syntax error, unexpected ‘if’ (T_IF)
June 6, 2018 at 11:59 pm #73315wensolutions
KeymasterHello @sgtool,
When we tested the code locally, we were unable to find such issue so please can you provide the entire code in your child theme’s functions.php file so that we could inspect further and help you.
Thank you.
Best Regards!!
June 7, 2018 at 4:46 pm #73367Richard Daniel
ParticipantI must’ve missed something because it did work today. Thank you.
Also, I would like to remove the colorful triangles in the homepage background. Is there a way to do that? Do I need additional code also?Thanks.
June 8, 2018 at 12:18 am #73383wensolutions
KeymasterHello @sgtool,
Glad that you figured out your previous issues.
Now to remove the color triangle in the homepage use below given CSS.
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
.top-seller-section::before { display: none; } .discount-section > .container::after { display: none; }
If this does not solve the issue then please provide your site URL so that we could provide precise fix.
Thank you 🙂
Have a good day.
June 8, 2018 at 4:45 pm #73434Richard Daniel
ParticipantI tried it, and got the following error..
“There are 4 errors which must be fixed before you can save.”June 11, 2018 at 1:01 am #73508wensolutions
KeymasterHello @sgtool,
is the reported issues in the code regarding the functions.php file OR with the Additional CSS that we had provided?
If the issues are in the child theme’s functions.php file, please provide us the Whole Code that you have inserted in the functions.php file of your child theme so that we can inspect the code and debug the issue further.
Best Regards !!
-
AuthorPosts
- You must be logged in to reply to this topic.