Forum Replies Created

Viewing 20 posts - 3,241 through 3,260 (of 4,888 total)
  • Author
    Posts
  • in reply to: google search-result #95459
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Select Featured Content #95458
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: help with translation #95457
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #95456
    Mahesh
    Member

    @sheilalowe: Selecting Demo Slider in customizer will display default images for slider. Have you modified anything due to which you are getting them error? The theme is working fine on our server. Let me know further.

    Regards,
    Mahesh

    in reply to: Displaying blocks in the center of the site #95434
    Mahesh
    Member

    @lisovol: In the image, do you mean the featured image or the one with the black background or the whole block. Please post in your site URL so that I can check and help you further.

    Regards,
    Mahesh

    in reply to: How to get rid of space obove image header #95433
    Mahesh
    Member

    @kbampfield: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #95432
    Mahesh
    Member

    @sheilalowe: I checked your site and seems you don’t have made more changes to the theme so I guess you can use the child theme and if you do lose some settings, you can change it right away from the customizer and set the options so it displays as now.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: secondary menu not displaying on Smart Phone #95431
    Mahesh
    Member

    @oanda-webmistress: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: google search-result #95430
    Mahesh
    Member

    @konstance: I use firefox and chrome. I checked your site and now the title is displaying fine.
    I checked your problem again, and seems this is from the assistive-text for Primary Menu in the theme. If you want to change it, you’ll have to override the following function catchresponsive_primary_menu for this line
    <h1 class="assistive-text"><?php _e( 'Primary Menu', 'catch-responsive' ); ?></h1>
    This function is located in catch-responsive/inc/catchresponsive-menus.php.
    I recommend you to use child theme. You can find more on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: How to add a News Ticker in header area #95429
    Mahesh
    Member

    @petermilliken: Yes, you can simply do it in the current theme but on updating the theme you’ll lose all the customization. That is where the child theme comes in handy. It is recommended to use child theme for customization.

    Regards,
    Mahesh

    in reply to: google search-result #95312
    Mahesh
    Member

    @konstance: Your Title for the site in the browser tab is not displaying. Are you using any plugin? If yes try disabling it and check if this resolves the issue. For SEO we recommend you to use Yoast SEO or you may use other SEO plugin of you choice.
    Let me know further.

    Regards,
    Mahesh

    in reply to: How to add a News Ticker in header area #95305
    Mahesh
    Member

    @petermilliken: You have to create child theme for this. You can find more on how to create child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'catchresponsive_child_ticker_below_slider' );
    function catchresponsive_child_ticker_below_slider() {
    	//Display Ticker below Slider
    	add_action( 'catchresponsive_before_content', 'catchresponsive_display_ticker', 11 );
    	
    	//Display Ticker Below Social Icons
    	//add_action( 'catchresponsive_after_header', 'catchresponsive_display_ticker', 19 );
    }
    
    function catchresponsive_display_ticker() {
    	if( function_exists( 'ditty_news_ticker' ) ) {
    		ditty_news_ticker(218);
    	}
    }

    Note: In the above code
    add_action( 'catchresponsive_before_content', 'catchresponsive_display_ticker', 11 );
    will display ticker before Slider
    And
    add_action( 'catchresponsive_after_header', 'catchresponsive_display_ticker', 19 );
    will display ticker before Social Icons. Please use any one, and comment the other. For now I’ve displayed the ticker below slider.

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #95304
    Mahesh
    Member

    @sheilalowe: Do you mean theme customization or customizer settings? Customizer settings are retained on theme updates, you can update the theme without losing any settings. But if you have done some customization to the theme, all of them will be lost during update. That is where child theme comes in handy. You can find more on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: secondary menu not displaying on Smart Phone #95278
    Mahesh
    Member

    @oanda-webmistress: Go to Dashboard=> Appearance=> Customize=> Theme Options=>Enable Secondary & Footer Menu in Mobile Devices? and check Check to enable option.

    Regards,
    Mahesh

    Mahesh
    Member

    @nomada: For that, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following code:

    add_action( 'init', 'clean_journal_child_remove_primary_menu' );
    function clean_journal_child_remove_primary_menu() {
    	remove_action( 'clean_journal_after_header', 'clean_journal_primary_menu', 20 );
    }

    Note: This will completely remove Primary Menu from the theme, if you want to have primary menu again, you’ll need to remove this function.

    Regards,
    Mahesh

    in reply to: FEATURED SLIDER STOPPED WORKING #95242
    Mahesh
    Member

    @camila: Thank you for your appreciation. Glad to know your issue is solved. Have a nice day you too!

    Regards,
    Mahesh

    in reply to: Silder not working with https #95241
    Mahesh
    Member

    @petermilliken: Glad to know everything is working fine now. Sometimes plugins do create issue and deactivating then reactivating it may solve some issues, strange. 🙂
    Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: specs for social media icons #95240
    Mahesh
    Member

    @agescho: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .custom-icon {
        vertical-align: bottom;
    }

    Regards,
    Mahesh

    in reply to: specs for social media icons #95238
    Mahesh
    Member

    @agescho: Yes, sure. You can send it to mahesh [at] catchthemes [dot] com.

    Regards,
    Mahesh

    in reply to: category archive #95237
    Mahesh
    Member

    @aparente001: The code should have worked fine. I have attached the category-question.php file in the link below, please try and check if this helps. I checked it in our server and worked fine.
    https://goo.gl/bPliQa
    Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,241 through 3,260 (of 4,888 total)