Forum Replies Created

Viewing 20 posts - 4,641 through 4,660 (of 4,908 total)
  • Author
    Posts
  • in reply to: Post Page not showing posts #83702
    Mahesh
    Participant

    Hi @Moods,

    Oh okay, selecting all categories works fine as well.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #83701
    Mahesh
    Participant

    Hi @jie66,

    This is a bug in the latest theme update. Our developers have fixed the issue, you’ll need to wait for the update.

    Regards,
    Mahesh

    in reply to: catch evolution pro purchase #83679
    Mahesh
    Participant

    Hi @terrence,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: RSS html feed and changing color #83678
    Mahesh
    Participant

    Hi @husker,

    This is not controlled by the theme. The feed is a xml code. You have to do it manually. This is out of the theme support scope.

    Regards,
    Mahesh

    in reply to: Featured Slider: making entry-container always show #83667
    Mahesh
    Participant

    Hi @akeyworth,

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

    #feature-slider .entry-container {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
        border-radius: 4px;
    }

    Regards,
    Mahesh

    in reply to: String "Continue reading" is not translated #83663
    Mahesh
    Participant

    Hi @jie66,

    Please post in your site url. The theme is translation ready and is compatible with translation plugins like WPML, Qtranslate.
    Which translation plugin are you using? I’ve tested with Qtranslate and is working fine.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @fishingguy,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Post Page not showing posts #83661
    Mahesh
    Participant

    Hi @Moods,

    Please go to “Dashboard=> Appearance=> Customize=> Theme Options=> Frontpage/Homepage Options” and make sure that nothing is select. Only the post within categories selected in here will be displayed in the blog page.

    Regards,
    Mahesh

    in reply to: increasing width of post content? #83659
    Mahesh
    Participant

    Hi @shawn,

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

    #content article.post {
        padding: 10px 10px 30px;
    }

    Regards,
    Mahesh

    in reply to: Gif on the featured slider #83657
    Mahesh
    Participant

    Hi @Daniel,

    Sorry there. Thank you for using Catch Box Pro.
    For gif images in slider, go to “Dashboard=> Appearance=> Theme Options=> Featured Slider (Tab)” and select Featured Image Slider in Select Slider Type option. Then scroll down you’ll see Featured Image Slider Options, click on Add/Change button in image and choose your desired gif image. After you’re done, click Save.

    Let me know if this helps with your issue.

    Regards,
    Mahesh

    in reply to: Today's Date Function and header and footer code #83656
    Mahesh
    Participant

    Hi @Mark Argentino,

    It is not necessay to follow the theme structure in child theme. Please remove the inc folder from child theme’s folder. Add the following code in child theme’s functions.php.

    function catchbox_header_details() { 
    
    	// Check to see if the header image has been removed
    	global $_wp_default_headers;
    	$header_image = get_header_image();
    	if ( ! empty( $header_image ) ) : 
         	echo '<div id="hgroup" class="site-details with-logo">';
    	else :
        	echo '<div id="hgroup" class="site-details">';     
    	endif; // end check for removed header image  ?>
     
       		<h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
           	<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
       	</div><!-- #hgroup --> 
    
    <?php
    }

    And then modify the “site-description” as desired. The modification here will override the parent theme’s function and you can see the changes in the frontend.

    Let me know if any problems.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @Lucia,

    That is because of the responsive design issue. Please add the following CSS and it will fix the issue.

    @media screen and (max-width: 1224px) {
    	#primary
    	{
    	   width: 654px;
    	}
    	#secondary {
    	   width: 340px;
    	}
    }
    
    @media screen and (max-width: 1060px) {
    	#primary
    	{
    	   width: 530px;
    	}
    }
    
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    	#primary {
    	    width: 590px;
    	}
    }
    
    @media screen and (max-width: 960px) {
    	#primary, #secondary, .no-sidebar #primary {
    	    width: 100%;
    	}
    }
    in reply to: Title not responsive on iphone #83654
    Mahesh
    Participant

    Hi @helpme,

    Thank you for your appreciation.
    Have a nice day.

    Regards,
    Mahesh

    in reply to: Limit blog page to only one category #83653
    Mahesh
    Participant

    Hi @Deborah,

    Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and make sure that you’ve selected Tips and Tricks page in Posts Page dropdown.

    The query in the above code is fine.

    Regards,
    Mahesh

    in reply to: Move primary menu below featured image #83650
    Mahesh
    Participant

    Hi @Paul,

    Its great you’ve got it working.
    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Add image size #83649
    Mahesh
    Participant

    Hi @Mouvance web,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Add image size #83458
    Mahesh
    Participant

    Hi @Mouvance web,

    Thank you for the clarification.
    For that you need to create a child theme. Please visit this LINK to find more details on creating the child theme. Then in child theme’s functions.php add the following function.

    function catchresponsive_custom_header() {
    
    	$options 	= catchresponsive_get_theme_options();
    
    	if ( 'light' == $options['color_scheme'] ) {
    		$default_header_color = catchresponsive_get_default_theme_options();
    		$default_header_color = $default_header_color['header_textcolor'];
    	}
    	else if ( 'dark' == $options['color_scheme'] ) {
    		$default_header_color = catchresponsive_default_dark_color_options();
    		$default_header_color = $default_header_color['header_textcolor'];
    	}
    
    	$args = array(
    		// Text color and image (empty to use none).
    		'default-text-color'     => $default_header_color,
    
    		// Header image default
    		'default-image'			=> get_template_directory_uri() . '/images/headers/buddha.jpg',
    
    		// Set height and width, with a maximum value for the width.
    		'height'                 => 300,
    		'width'                  => 1200,
    
    		// Support flexible height and width.
    		'flex-height'            => true,
    		'flex-width'             => true,
    
    		// Random image rotation off by default.
    		'random-default'         => false,
    
    		// Callbacks for styling the header and the admin preview.
    		'wp-head-callback'       => 'catchresponsive_header_style',
    		'admin-head-callback'    => 'catchresponsive_admin_header_style',
    		'admin-preview-callback' => 'catchresponsive_admin_header_image',
    	);
    
    	$args = apply_filters( 'custom-header', $args );
    
    	// Add support for custom header
    	add_theme_support( 'custom-header', $args );
    
    }

    Regards,
    Mahesh

    in reply to: Comment area, links and submit not working? #83457
    Mahesh
    Participant

    Hi @katta,

    Sakin will help you further with your issue.

    Regards,
    Mahesh

    in reply to: File for Site Description #83456
    Mahesh
    Participant

    Hi @husker,

    There is no color option in Catch Responsive Free. The color option in the customizer i.e Title Color and Background Color is WordPress’s default features for customizer.

    However you can change it with Custom CSS or add the CSS in child theme’s style.css if you want to change in code.

    Regards,
    Mahesh

    in reply to: Today's Date Function and header and footer code #83455
    Mahesh
    Participant

    Hi @Mark Argentin,

    If you want to change any functions or codes do not change the theme’s core files. You’ll lose it all with theme updates. It is highly recommended to use the child theme for the theme modifications. You can find more details on how to create child theme HERE.

    1. The shortcode [date] is same for both the theme, but as you are using index.html as a page, the shortcode won’t work.

    2. In Catch Box Pro, catchbox_header_details function is moved to catch-box-pro/inc/custom-header.php. It recommended not to change the code here directly, first create a child theme then in functions.php copy the function, then modify it there.

    3. For justification, CSS provided Sakin previously will work as before. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the CSS.

    4. For “Recommend this on Google” link, you can no do it with the theme without touching the code. Please follow along.
    Go to “Dashboard=> Appearance=> Theme Options=> Footer Editor Options” and add the following HTML at the very end.

    <div class="gplus-holder">
    <div class="g-plusone" data-annotation="inline" data-width="300"></div>
    </div>

    Then Go to “Dashboard=> Appearance=> Theme Options=> Web Master Tools=> Header and Footer codes=> Code to display on Footer” and add the following scripts.

    <script type="text/javascript">
    (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/platform.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
    })();
    </script>

    And lastly, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    .gplus-holder {
        width: 100px;
    }

    Regards,
    Mahesh

Viewing 20 posts - 4,641 through 4,660 (of 4,908 total)