Home Forums Pro Themes eCommerce Market Pro Home Page slider duration

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #72050
    Richard Daniel
    Participant

    1. My home page doesn’t cycle through products/images
    2. How will I adjust the cycle rate faster or slower
    ~Thanks

    #72131
    wensolutions
    Keymaster

    Hello @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!!

    #72181
    Richard Daniel
    Participant

    I 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

    #72195
    wensolutions
    Keymaster

    Hello @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.

    #73220
    Richard Daniel
    Participant

    When I go to the shop page. the header (page-title) says “Archives:Products” is there a way to make it say “Products”?
    Thanks

    #73238
    wensolutions
    Keymaster

    Hello @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!!!

    #73298
    Richard Daniel
    Participant

    tried 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)

    #73315
    wensolutions
    Keymaster

    Hello @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!!

    #73367
    Richard Daniel
    Participant

    I 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.

    #73383
    wensolutions
    Keymaster

    Hello @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.

    #73434
    Richard Daniel
    Participant

    I tried it, and got the following error..
    “There are 4 errors which must be fixed before you can save.”

    #73508
    wensolutions
    Keymaster

    Hello @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 !!

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.