Forum Replies Created

Viewing 20 posts - 4,841 through 4,860 (of 4,908 total)
  • Author
    Posts
  • Mahesh
    Participant

    Hi Lucia,

    Yes you can achieve it with by creating a child theme too, but as it is just a design change it can be achieved with simple Custom CSS too. I’ve checked the with above CSS in Catch Evolution Pro and is working fine.

    Please post your site url so I could check it.

    Regards,
    Mahesh

    in reply to: turn off comments #81751
    Mahesh
    Participant

    Hi [email protected],

    The option I suggested is the WordPress’s default option. On add/edit post, you’ll see “Screen Options” button just beside “Help” button, click it and some checkbox options will drop in. Check on “Discussion” option in Boxes option. Then you’ll see “Discussion” option under the post content box. Then you can disable comments in post by unchecking “Allow comments” checkbox.

    I hope you understand, let me know if any problem arises.

    Regards,
    Mahesh

    in reply to: turn off comments #81624
    Mahesh
    Participant

    Hi @[email protected],

    Comments for blog can be turned off in two ways.

    1. Go to Dashboard=> Posts=> All posts -> click ‘Quickedit’ and Uncheck ‘Allow comments’

    or

    2. Go to Dashboard=> Posts=> Edit post -> ‘Screen options’ near the top right – Check ‘Discussion’ – scroll below post editor – Uncheck ‘Allow comment’

    Regards,
    Mahesh

    in reply to: plug in for posting #81623
    Mahesh
    Participant

    Hi @[email protected],

    Sorry, I don’t know the exact plugin fit for your requirement. Please search the plugins HERE

    Regards,
    Mahesh

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

    Hi @rflores,

    You have used the image for post’s featured image to fit in image slider. It will be automatically cropped to width 210px height 210px. Similarly, the image in the examples you’ve mentioned is cropped to 210px that is why only the center portion of image is shown.

    I hope you understand.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #81612
    Mahesh
    Participant

    Hi @FOEC,

    For your French Website: http://fr.ccof-foec.org/ add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #secondary-menu ul.menu #menu-item-1060 > a {
        color: #fff;
        background-color: #0000ff;
    }

    Regards,
    Mahesh

    in reply to: Background responsiveness #81611
    Mahesh
    Participant

    Hi @Daan,

    Please add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    @media screen and (max-width: 480px){
    	.site-branding {
    		min-height: 201px; /* Adjust as required */
    	}
    }

    Regards,
    Mahesh

    in reply to: Logo Size + Promotional Headline Text #81567
    Mahesh
    Participant

    Hi @Steve,

    For this, you have to create a child theme. You can find the details on how to create a child them HERE

    Then in child theme’s functions.php file add the following function.

    function adventurous_child_delete_promotional_cache() {
        delete_transient( 'adventurous_homepage_headline' );
    }
    
    add_action( 'after_setup_theme', 'adventurous_child_delete_promotional_cache' );

    Let me know if this solved your issue.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #81565
    Mahesh
    Participant

    Hi @Danielle,

    Thank you for using Full Frame Pro.

    Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #menu-hoofdmenu {
    	margin-top: 43px;
    	margin-left: 5px;
    }
    
    #header-toggle{
    	margin-top: 43px;
    }

    Regards,
    Mahesh

    in reply to: Logo Size + Promotional Headline Text #81561
    Mahesh
    Participant

    Hi @Steve,

    For changing font size of promotional headline, add the following Custom CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    
    /* Promotional headline font size */
    #homepage-message h2 {
        font-size: 23px; /* Change as required */
    }
    
    /* Promotional sub-headline font size */
    #homepage-message p {
        font-size: 12px; /* Change as required */
    }

    Regards,
    Mahesh

    in reply to: Background responsiveness #81560
    Mahesh
    Participant

    Hi @Daan,

    Please add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    @media screen and (min-width: 861px){
    	body.custom-background {
    		background-size: cover;
    	}
    }
    
    @media screen and (max-width: 860px){
    	body.custom-background {
    		background-size: contain;
    	}
    }

    Regards,
    Mahesh

    in reply to: Question before I buy pro #81558
    Mahesh
    Participant

    Hi @wjcofkc,

    The area between navigation and content is calculated dynamically with respect to different screen sizes. If you just want to reduce, you do not need to upgrade to Pro version, it can be achieved via Custom CSS. Add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    .site-branding {
        min-height: calc(50vh - 122px);
        position: relative;
    }

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: RSS link? #81509
    Mahesh
    Participant

    HI @Keir,

    RSS feed is xml data. Firefox has a built-in feature to generate the markup RSS page from the xml code but chrome does not. So this is normal. Its working fine.

    Regards,
    Mahesh

    in reply to: How to remove breadcrumb action #81506
    Mahesh
    Participant

    Hi @oleymedia,

    The code you’ve used for adding and removing action is correct if you’re within theme territory, but for child theme you have to hook it into init. You can do it as follows:

    add_action( 'init' , 'catchresponsive_child_add_and_remove' , 15 );
    function catchresponsive_child_add_and_remove() {
            remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
    	add_action( 'catchresponsive_before_page_container', 'catchresponsive_add_breadcrumb', 20);
    }

    Also the remove_action() needs to have the same priority when it was added.

    Regards,
    Mahesh

    in reply to: Use sidebar for a variety of testimonials? #81505
    Mahesh
    Participant

    Hi @Shannon,

    For this purpose, you have to make a child theme. You can find detail on how to make child theme HERE.

    In child theme’s functions.php add the following codes.

    function catchresponsive_child_widgets_init() {
    	//Custom Sidebar One for page and post
    	register_sidebar( array(
    		'name' 				=> __( 'Custom Sidebar One', 'catch-responsive' ),
    		'id' 				=> 'custom-sidebar-one',
    		'description'		=> __( 'This is Custom Sidebar One', 'catch-responsive' ),
    		'before_widget' 	=> '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' 		=> "</aside>",
    		'before_title' 		=> '<h3 class="widget-title">',
    		'after_title' 		=> '</h3>'
    	) );
    
            register_sidebar( array(
    		'name' 				=> __( 'Custom Sidebar Two', 'catch-responsive' ),
    		'id' 				=> 'custom-sidebar-two',
    		'description'		=> __( 'This is Custom Sidebar Two', 'catch-responsive' ),
    		'before_widget' 	=> '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' 		=> "</aside>",
    		'before_title' 		=> '<h3 class="widget-title">',
    		'after_title' 		=> '</h3>'
    	) );
    
            /* You can add as many widgets as you want to.*/
    }
    add_action( 'widgets_init', 'catchresponsive_child_widgets_init' );

    Copy the sidebar.php from Catch Responsive Pro to the child theme and add custom conditions after line 110 for displaying desired widget in the desired page.

    This is a bit tricky job, so I recommend you to hire a customizer.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @Lucia,

    Thank you for using Catch Evolution Pro.

    “Customize” option is currently available only in free version, please use “Theme Options” instead. This feature will be available in next version update.
    Yes, your above changes can be achieved with Custom CSS.

    Go to “Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #primary {
        width: 900px; /* Change as per required */
    }
    
    #secondary {
        width: 260px; /* Change as per required */
    }
    
    .widget {
        border: none;
    }

    Please make sure the sum of #primary and #secondary’s width is 1160px.

    Regards,
    Mahesh

    in reply to: RSS link? #81503
    Mahesh
    Participant

    Hi @Keir,

    You’ve put the blog link in RSS field, that is why its taking you to the same page. The RSS field should contain the RSS/FEED link not the regular blog page’s url.

    For catchthemes.com, we can use:
    RSS => http://www.catchthemes.com/rss

    This will take you to the RSS subscription page.

    Regards,
    Mahesh

    in reply to: RSS link? #81472
    Mahesh
    Participant

    Hi @Keir,

    I think you’re confused about the RSS field in the “Theme Options=> Social Links=> Predefined Social Icons”. All options here are just to link to the desired URL. Same with the RSS field too, it is not for the subscription. If you’ve put the blog url in RSS, and when clicked takes you to the exact same page, then its working fine. It is made for that very purpose. For example to be more clear:
    Field => Value ( What it does )
    Facebook => https://www.facebook.com/catchthemes ( Opens Catchtheme’s facebook )
    Twitter => https://www.twitter.com/catchthemes ( Opens Catchtheme’s twitter )

    Similarly,
    RSS => Some page’s url that displays RSS feeds. ( Opens the page with given url )

    Let me know if this helps you.

    Regards,
    Mahesh

    in reply to: Full width Template #81471
    Mahesh
    Participant

    Hi @Nestro,

    Full width template….. do you mean the full width layout option? We don not use templates. Catch Adaptive Free version includes 3 layout options:
    1. Primary Sidebar, Content
    2. Content, Primary Sidebar
    3. No Sidebar (Content Width)

    Another Layout option i.e.
    4. No Sidebar (Full Width) -> available only in Catch Adaptive Pro Version

    In either of the theme, no templates are used, layouts are controlled with body class not separate template files.

    I hope this clarifies you.

    Regards,
    Mahesh

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

    Hi @rflores,

    I checked your site, you’ve currently used Simple Catch. Simple Catch and Simple Catch Pro are two independent themes and are installed as two separate themes. Are you sure that you’ve followed the instructions correctly as mentioned in the Theme Instructions

    Please try again and let me know if the problem persists. Please explain in brief the steps in installing theme and where actually do you get the error message.

    Regards,
    Mahesh

Viewing 20 posts - 4,841 through 4,860 (of 4,908 total)