Forum Replies Created

Viewing 20 posts - 3,301 through 3,320 (of 4,908 total)
  • Author
    Posts
  • in reply to: Exclude several titles and headers #94948
    Mahesh
    Participant

    @alex23:
    Yes, the CSS in child theme may cause the issues too. Try activating the parent theme and check if the issue persists or not. I the issue is no longer seen, it is child theme CSS issue.
    For the space in pages, use the following CSS:

    #content article:first-child {
        padding-top: 0;
    }
    
    #content article .entry-header {
        display: none;
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @smoothiechode: You mean to display the same header image throughout the site right? If so, select options without Featured Image and it will display the same header image in all you pages.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Free to Pro #94944
    Mahesh
    Participant

    @sdhawaninc: Yes, you can have all your settings as they are upgrading from Free to Pro. Upgrading to Pro automatically migrates the settings from Free to Pro.

    Regards,
    Mahesh

    in reply to: Image size for featured images #94943
    Mahesh
    Participant

    @sdhawaninc:
    Hi Shikha,

    In Jomsom Pro, the recommended image size for featured content is 350×350. Please the check the theme instruction in the link below for further details.

    Regards,
    Mahesh

    in reply to: Exclude several titles and headers #94942
    Mahesh
    Participant

    @alex23:
    Hi Alex,

    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
    1. Remove the category title from the page:

    #content .page-header {
        display: none;
    }

    2. Hide comments-title from this page:
    If you mean to remove the text “ОТЗЫВЫ”, you’ll have to remove it from the content. This is not from title but the content itself.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #94941
    Mahesh
    Participant

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

    Regards,
    Mahesh

    Mahesh
    Participant

    @smoothiechode: Thank you for using Full Frame Pro. page.php file that I’ve provided you earlier will work fine in the Pro theme too.
    Instead I just want to display the same single header image for all product pages.
    If so, you don’t have to modify header.php for this. Go to Dashboard=> Appearance=> Customize=> Header Image and select Entire Site/Pages and Posts/Excluding Homepage in Enable Featured Header Image on

    Hope this helps.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Thumbnail Images on Blog Page #94939
    Mahesh
    Participant

    @bmtt: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: None of the Facebook Plugins work after Theme Upgrade #94938
    Mahesh
    Participant

    @live2bfree: Thank you for your appreciation. Yes, that may be the cause. Hope this helps others too. Have a nice day!

    Regards,
    Mahesh

    in reply to: Slider #94937
    Mahesh
    Participant

    @gabiirrs: Thank you for your appreciation. Glad to know you have it working now. Have a nice day!

    Regards,
    Mahesh

    in reply to: None of the Facebook Plugins work after Theme Upgrade #94893
    Mahesh
    Participant

    @live2bfree: Seems like a plugin issue than theme issue. It is taking inline style for width which is causing the problem. Try the widget with WP core theme and check, if the problem persists, it is not a theme issue.
    However, this can be solved using custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .fb-page.fb_iframe_widget > span {
        width: 284px !important;
    }
    

    Regards,
    Mahesh

    in reply to: None of the Facebook Plugins work after Theme Upgrade #94892
    Mahesh
    Participant

    @live2bfree: Seems like a plugin issue than theme issue. It is taking inline style for width which is causing the problem. Try the widget with WP core theme(tweenty fourteen) and check, if the problem persists, it is not a theme issue.
    However, this can be solved using custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .fb-page.fb_iframe_widget > span {
        width: 284px !important;
    }
    

    Regards,
    Mahesh

    in reply to: Slider #94891
    Mahesh
    Participant

    @gabiirrs: Are you using any plugins? If so, try deactivating the plugins one by one and check if it resolves the issue. I checked for the issue on our server but not issues found. It is working fine.
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Show second menu only if loged #94890
    Mahesh
    Participant

    @diferent:
    Hi Xavier,

    Thank you for using Full Frame Pro theme.
    For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following code.

    add_action( 'init', 'fullframe_child_secondary_menu_only_for_logged' );
    function fullframe_child_secondary_menu_only_for_logged() {
    	remove_action( 'fullframe_before_content', 'fullframe_secondary_menu', 20 );
    	if( is_user_logged_in () ) {
    		add_action( 'fullframe_before_content', 'fullframe_secondary_menu', 20 );
    	}
    }

    Regards,
    Mahesh

    in reply to: Collapse primary menu when viewed on mobile #94889
    Mahesh
    Participant

    @paul-mac: For this, you’ll need to do some customization in HTML structures, javascript and CSS. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: White Comment Box Code Needed #94888
    Mahesh
    Participant

    @mindfulsami: This can be fixed with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #disqus_thread {
        background-color: #fff;
        padding: 10px;
    }

    Regards,
    Mahesh

    in reply to: Menu blocking title and website information ob mobile #94887
    Mahesh
    Participant

    @sth: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Header Slider Images Not Working #94886
    Mahesh
    Participant

    @jkyle:
    Hi Jkyle,

    Are you using any other plugins, try disabling theme one by one and check if it resolves the issue. Let me know if the problem persists. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Google Maps API Key #94885
    Mahesh
    Participant

    @gdyeacu: Are you using any plugins for this or simply generated code? I used http://embedgooglemaps.com/en/ to generate the code for the map. And is running fine, no API key required. Please check the image in the link below, this is how it is being displayed on mine, using the above code.
    Let me know if any problem.
    http://goo.gl/6zOGvh

    Regards,
    Mahesh

    in reply to: help with translation #94884
    Mahesh
    Participant

    @lisovol:
    Hi Michael,

    Thank you for using Catch Responsive Pro theme. Since the translation for Ukrainian is not fully completed, we haven’t included it in the theme. We will include the translations file as soon as it completes in the upcoming updates. For now you can use .mo and .po file in the from the link below.
    https://goo.gl/uymPhr
    Note: Download the zip file and extract them then place it in themes/catch-responsive-pro/languages folder.
    Hope this helps.

    Regards,
    Mahesh

Viewing 20 posts - 3,301 through 3,320 (of 4,908 total)