Forum Replies Created

Viewing 20 posts - 3,141 through 3,160 (of 4,888 total)
  • Author
    Posts
  • in reply to: Slider – remove links #96388
    Mahesh
    Member

    @rolandallen: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Banners and links don't work #96375
    Mahesh
    Member

    @accucomm: Have you tried it with default WordPress themes. If not please try it and check if it works with it or not.

    Regards,
    Mahesh

    in reply to: Remove completely Catch Kathmandu Pro #96374
    Mahesh
    Member

    @moskito7:
    Hi Guillaume,

    There is an in-built option for this in the theme. Go to Dashboard=> Appearance=> Customize=> Reset All settings and check on Check to reset all settings to default and click Save & Publish. Then all your settings will be gone as new theme is installed.

    Regards,
    Mahesh

    in reply to: Promotion Header Title will not change colour #96370
    Mahesh
    Member

    @petermilliken:
    Hi Peter,

    Sorry, there has been a small bug in the theme due to which the Promotion Headline Title color issue has arose. This has be fixed now in the new version which will be released soon. Thank you for your patience.
    For quick fix, you can use Custom CSS to change the color. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #promotion-message h2 {
        color: #ff0000;
    }

    Regards,
    Mahesh

    in reply to: Alternative Mobile Navigation? #96336
    Mahesh
    Member

    @bmtt: Sorry, for this, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: default sizes for main column and one sidebar #96335
    Mahesh
    Member

    @skstewart: Go to Dashboard=> Apperance=> Customize=> Theme Optoins=> Custom CSS box and add the following CSS:

    #main {
        width: 920px;
    }
    .sidebar-primary {
        width: 240px;
    }
    
    @media screen and (max-width: 1280px) {
    	#main {
        	width: 820px;
        }
    }
    
    @media screen and (max-width: 1152px) {
    	#main {
        	width: 810px;
    	}
    	.sidebar-primary {
      		width: 200px;
    	}
    }
    
    @media screen and (max-width: 1100px) {
    	#main {
        	width: 750px;
    	}
    }
      
    @media screen and (max-width: 767px) {
    	#main {
        	width: 100%;
    	}
      .sidebar-primary {
        	width: 100%;
    	}
    }

    Regards,
    Mahesh

    in reply to: Error on featured content #96319
    Mahesh
    Member

    @davidmcarthur:
    Hi David,

    The issue is because of a small typo. It should be esc_url() not esc_ulr(). The issue will be fixed in our next update, which be released soon. For quick fix, you can do it by yourself. Edit ecommerce-pro/inc/featured-content.php line 558 and replace esc_ulr with esc_url. That will fix the issue.
    Thank you for helping us find out the issue.

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96314
    Mahesh
    Member

    @ukufner: Oh, I thought the menu in your website. Have you tried deactivating the plugins? And did deactivating the plugins fix the issue? Let me know further.

    Regards,
    Mahesh

    in reply to: default sizes for main column and one sidebar #96313
    Mahesh
    Member

    @skstewart: Please post in your site URL so that I can help you further.

    Regards,
    Mahesh

    in reply to: Slider – remove links #96312
    Mahesh
    Member

    @rolandallen: Sorry, my mistake, the code should be as follows:
    <h1 class="entry-title">' . get_the_title() . '</h1>
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Menu Bar #96311
    Mahesh
    Member

    @filip_1: Please add the following CSS, it will fix the issue.

    #menu-pocetna .sub-menu .menu-item {
    	width: auto;
    }
      
    #header #mainmenu ul li .sub-menu a {
        width: auto;
      	text-align: left;
    }

    Regards,
    Mahesh

    in reply to: Slider – remove links #96248
    Mahesh
    Member

    @rolandallen: For that, you’ll need to do a little change in the above code. In the above code replace the following line:

    <h1 class="entry-title">
        <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    </h1>

    With the code below:
    <h1 class="entry-title">' . the_title() . '</h1>

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96247
    Mahesh
    Member

    @gmg-jet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96246
    Mahesh
    Member

    @ukufner: I check your site, the menu seems to be working fine. All links in menu are pointing to the appropriate pages. No HTTP ERROR issue found.
    If you are having problem again, go to Dashboard=> Settings=> Permalinks and click Save Changes button and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96231
    Mahesh
    Member

    @ukufner: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Slider – remove links #96229
    Mahesh
    Member

    @rolandallen:
    Hi Roland,

    What seems to be the problem. I tried your code in our server and it is working fine.
    Let me know further. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96227
    Mahesh
    Member

    @gmg-jet:
    Hi Henriët,

    Just to let you know that, the latest version 3.2.1 of Gridalicious Pro is released and is now available. The theme has been made WooCommerce ready. Please download the latest version and update the theme.

    Regards,
    Mahesh

    in reply to: Hide dropdown pages in mobile menu #96186
    Mahesh
    Member

    @heidi-lewis: I’m afraid this is not possible. Because the menu is dynamically generated with tinyNav plugin and all menus and sub menus resides into same ul as li elements and cannot be distinguished which are menus and which are sub-menus.

    Regards,
    Mahesh

    in reply to: Update doesn't work. #96183
    Mahesh
    Member

    @josefkuhnt: Please fill in the form in the link below with the details and problem, and we will check it for you.
    https://catchthemes.com/blog/theme-customizer-not-working-wordpress-update/

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96182
    Mahesh
    Member

    @gmg-jet: The update will be available within 24 or 48 hours. So I recommend you to have patience till then.

    Regards,
    Mahesh

Viewing 20 posts - 3,141 through 3,160 (of 4,888 total)