Forum Replies Created

Viewing 20 posts - 8,721 through 8,740 (of 14,494 total)
  • Author
    Posts
  • in reply to: Footer won't change #20390
    Sakin
    Keymaster

    @michael: Simple Catch theme don’t have Footer Menu. It only have Primary Menu.

    in reply to: How to have title only posts #20388
    Sakin
    Keymaster

    @ralfsen: Which theme are you using. You can change out the Excerpt Layout from Theme Options panel. You can check theme instruction at http://catchthemes.com/theme-instructions/

    in reply to: Why don't Pages show on menu bar? #20387
    Sakin
    Keymaster

    @Bouncedancer: Thanks for the access and I found the problem in your site. I see that you have made all your pages as “Private” that is why it is not showing in your menus.

    in reply to: new page #20386
    Sakin
    Keymaster

    @Karin: Which top bar are you talking about. If you are talking about Menu. Then you need to create Custom Menu from “Appearance => Menus”. See theme instruction of Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/ and for menu at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Feature Request: Font Options for Homepage Headline #20381
    Sakin
    Keymaster

    @heatherlb: Yes, we will add in our update list.

    But you can change the font as below:
    1. Default Font Family: This will replace overall font
    2. Site Title Font Family: This will just replace the Site Title Font
    3. Site Tagline Font Family: This will just replace the Site Tagline Font
    4. Content Title Font Family: This will just replace the Content Title Font
    5. Content Body Font Family : This will just replace the Body Font
    6. Headings Tags from h1 to h6 Font Family : This will just replace all the heading tags font.

    in reply to: Missing required field “updated” #20379
    Sakin
    Keymaster

    @MMchen: You can update it now. It’s already available for download.

    in reply to: Text not covering all screen #20366
    Sakin
    Keymaster

    @Beachalets: I see that you are using Quick Business Website plugin which is blocking your content.

    in reply to: Visual error on Theme #20365
    Sakin
    Keymaster

    @TotallyGeeky: It’s a Spun theme by Caroline Moore. Sorry we only support theme developed by us (Catch Themes). You need to ask in support forum of that theme.

    in reply to: help please #20364
    Sakin
    Keymaster

    @ashrafashraf: Not all our theme are RTL supporting and translated in Arabic language.
    Yes, Catch Box Pro is translated in Arabic language and support RTL. This translation os contributed by ed3s. But I don’t guarantee 100% translation. But if you find any issues then you can also contribute.

    You can install WordPress in Arabic language and install the theme. See this

    in reply to: Different Header for Different Pages #20363
    Sakin
    Keymaster

    @zorter: Catch Evolution Pro theme is different from Catch Everest Pro theme in many ways.

    Ok I will tell you about Catch Evolution Pro theme:
    Catch Evolution Pro uses default WordPress Custom Header. We will be soon adding new feature similar to Catch Everest Pro about changing Featured Header image in Different Pages and Post as assigned Featured image. But sorry there is no option at this time.

    For this, you need to build child theme and then create functions.php file in your child theme and add the following code.

    /**
     * Header Image
     *
     * Uses Custom Header and Featued Images
     * @Hooked in catchevolution_headercontent
     * @since Catch Evolution 1.0
     */
    function catchevolution_featured_header() { 
    	global $wp_query, $post, $paged, $_wp_default_headers, $catchevolution_options_settings;
        $options = $catchevolution_options_settings;
    	
    	// Header Image
    	$header_image_path = get_header_image();
    
    	if ( !empty ( $options['disable_header'] ) ) {
    		return;
    	}
    	
    	// Check if this is a post or page, if it has a thumbnail, and if it's a big one
    	if ( is_singular() ) :
    		// Houston, we have a new header image!
    		echo '<div id="header-image">';
    			echo get_the_post_thumbnail( $post->ID );
    		echo '</div>';
    	elseif ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif; 
    	
    	
    } // catchevolution_featured_header
    in reply to: Remove Author profile and next posts #20362
    Sakin
    Keymaster

    @mscserginho: For this I need to check your site. Send me your site URL. If you are using default Catch Everest Free theme then you can try adding int the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .single .author-info { display: none; }
    .single .post-navigation { display: none; }
    in reply to: Showing Full Posts on Landing Page #20360
    Sakin
    Keymaster

    @Matthew: You can change the padding of post that is not a problem and I see that you have already done that. But if you have all pages then don’t edit css. You can assign your landing page as page from “Settings => Readings => Front page displays” and select your Front page.

    in reply to: different header image on pages #20358
    Sakin
    Keymaster

    @zorter: It will be better if you start new forum question. Which theme are you using it and your site URL. As each theme is different in some way or other.

    in reply to: different header image on pages #20357
    Sakin
    Keymaster

    @Steve: There is no option to add header right sidebar to be even with the header image. Actually header image was created to showcase full width image. For this you need to hire customizer to work for you.

    You cannot make the footer different on different page. But there is one trick. You can install “Jetpack” plugin and activate “Widget Visibility” module. This will help you to control your footer widget to show on particular page.

    in reply to: different header image on pages #20340
    Sakin
    Keymaster

    @Steve: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main-feat-img {
        box-shadow: none; /* Remove Border */
        float: left; /* Float Left */
    }
    in reply to: Header – White space above and below #20337
    Sakin
    Keymaster

    @cking1980: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #site-logo, #header-right { padding-top: 0; }
    #hgroup-wrap { padding-bottom: 0; }
    in reply to: Why don't Pages show on menu bar? #20335
    Sakin
    Keymaster

    @Bouncedancer: Yes, send me your site access from http://catchthemes.com/contact-us and in Subject please mention: Ref: Sakin Support ID 20288

    in reply to: Missing required field “updated” #20334
    Sakin
    Keymaster

    @MMchen: I see that you are using theme in Germany language and I found that that is issue with Germany translation file de_DE.po and de_DE.mo. We have fixed that in upcoming version 2.9.2

    in reply to: How to get rid of "Leave a Reply" box? #20330
    Sakin
    Keymaster

    @MMchen: Thanks a lot 🙂

    in reply to: Featured Slider shifting #20327
    Sakin
    Keymaster

    @Kenneth: I see all your slider post have 3 lines of text. Which is fine and no need to change it. But look at the featured images of those posts have difference sizes.

    Your 1st and 3rd posts featured image is fine with 644×320. Bur your 2nd and 4th is smaller with 600×320. So, it is showing issue. So, change the featured image of 2nd and 4th and it will be fine.

Viewing 20 posts - 8,721 through 8,740 (of 14,494 total)