Forum Replies Created

Viewing 20 posts - 1,281 through 1,300 (of 2,016 total)
  • Author
    Posts
  • in reply to: Disable Responsive Style #97843
    Pratik
    Participant

    @Dome: To do that , you will need to do a bit of customization. First, make a child theme. For details about child theme, visit this link.

    Then, add following code in child theme’s functions.php file:

    
    function clean_journal_head() {
    	?>
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width, initial-scale=.5, maximum-scale=12.0, minimum-scale=.25, user-scalable=yes"/>
    	<link rel="profile" href="http://gmpg.org/xfn/11">
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    	<!--[if lt IE 9]>
    		<script src="<?php echo get_template_directory_uri(); ?>/js/html5.min.js"></script>
    	<![endif]-->
    	<?php
    }
    

    This should work. Let me know how it goes.

    Regards,
    Pratik

    in reply to: Adding tag "nofollow" to Catch Themes link in footer #97770
    Pratik
    Participant

    Hi Franchesco,

    You can checkout the details of Pro theme here: Gridalicious Pro.

    in reply to: White space above header #97769
    Pratik
    Participant

    @poul2015: Try following code in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    #masthead {
        display: none;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Disable Responsive Style #97766
    Pratik
    Participant

    @dome:
    I cannot understand what you mean by zoom out, since you have removed responsiveness, it is supposed to be that way. I do not think you will be able to zoom out.

    in reply to: Link decoration: underscore #97764
    Pratik
    Participant

    Before I provide you the solution, are you talking about the links in footer?

    in reply to: upload the theme on wordpress.org #97719
    Pratik
    Participant

    What do you mean by WordPress.org, you cannot upload our themes to WordPress.org. If you are talking about WordPress.com, then you cannot upload custom themes there. You can only use their themes.

    Now, if you want to upload it to custom site, then problem might be safari browser. Safari automatically unzips the zip file, so you need to either rezip it or use another browser.

    Regards,
    Pratik

    in reply to: Adding tag "nofollow" to Catch Themes link in footer #97709
    Pratik
    Participant

    @warmmastering: Thank you for using Gridalicious theme. For your query, I am afraid it is not possible to achieve what you want in free version of the theme. We can provide custom CSS to hide the footer credits, but as per your requirement, this will not be of much help.

    You will need to upgrade to pro version if you want to edit the links. I know this is a stretch as you just want to add nofollow attribute but it is not possible to do it in free theme.

    Regards,
    Pratik

    Pratik
    Participant

    @berndwessel: Use following code instead of ones in catch-base/inc/catchbase-core.php lines 782-786:

    
    printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>',
        sprintf( __( '<span class="screen-reader-text">Posted on</span>', 'catch-base' ) ),
        esc_url( get_permalink() ),
        $time_string
    );
    
    Pratik
    Participant

    Hi Henriët,

    Thank you for your follow up. As long as the problem is solved, everything’s well.
    Let me know if there are any other theme related issues 😉

    Regards,
    Pratik

    in reply to: Move site title & description #97683
    Pratik
    Participant

    @paul-mac: You are welcome 😀

    in reply to: More than 20 posts in slider #97682
    Pratik
    Participant

    @klawr: Its great as long as your problem is solved . Cheers 😀

    in reply to: Disable Responsive Style #97681
    Pratik
    Participant

    @dome: I am afraid this is not possible. You can try removing codes from styles.css, but its recommended to use a child theme rather than editing the main core theme file.

    Pratik
    Participant

    It looks like the password field does not appear initially in your site. Have you used any templates that override WooCommerce Templates?
    I will need to check your child theme too. Can you email it to me at **edited out**?

    Also, try activating the parent theme and see if the problem persists?

    in reply to: Move site title & description #97667
    Pratik
    Participant

    @paul-mac:
    If you want logo above and site title below slider image/header image, then you will need to do something different. Remove the previous code provided by Mahesh and add in following code:

    
    function catchkathmandu_header_image() {
    	//Get Theme Options Data
    	global $catchkathmandu_options_settings;
    	$options                    = $catchkathmandu_options_settings;
    	$header_image               = get_header_image();
    	$catchkathmandu_header_logo = '';
    
    	?>
    	<div id="header-left">
    		<?php
    		//Checking Logo/Header Image
    		if( function_exists( 'has_custom_logo' ) ) :
    			if( has_custom_logo() ) :
    				$catchkathmandu_header_logo = '<div id="site-logo">' . get_custom_logo() .  '</div><!-- #site-logo -->';
    			endif;
    		elseif ( !empty( $header_image ) ) :
    			$catchkathmandu_header_logo = '
    			<div id="site-logo">
                	<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '">
                		<img src="' . esc_url( $header_image ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" />
    				</a>
    			</div><!-- #site-logo -->';
    		endif;
    
    		echo $catchkathmandu_header_logo;
    		?>
    
    	</div><!-- #header-left"> -->
    <?php 
    }
    
    function catchkathmandu_child_site_header_only() {
    	echo '
    		<div class="container" id="hgroup-wrap">
    			<div id="hgroup">
    				<h1 id="site-title">
    					<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '</a>
    				</h1>
    				<h2 id="site-description"> ' . esc_attr( get_bloginfo( 'description', 'display' ) ) . '</h2>
    			</div><!-- #hgroup -->
    		</div>';
    }
    add_action( 'catchkathmandu_before_main', 'catchkathmandu_child_site_header_only', 15 );
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Disappearing horizontal bars #97666
    Pratik
    Participant

    @latinoliteratures:
    Parent child relationships are on server level, not on browser level, so that should not be a problem. This is a browser specific issue. Can you post in your site url and let me check it. Any more specifications woud make my work easy.

    in reply to: More than 20 posts in slider #97665
    Pratik
    Participant

    @kawr:
    If you try it from Appearance=> Theme Options=> FEATURED POST SLIDER=> Slider Options, you should be able to add as many as you like. Let me know how it goes.

    Regards,
    Pratik

    in reply to: Remove "Theme:adventurous" and link in footer #97664
    Pratik
    Participant

    @jeampama:
    This option in available in pro version of the theme. Check out other features for pro version as well: http://catchthemes.com/theme-instructions/adventurous-pro

    Pratik
    Participant

    I was waiting on your reply for the updated version installed or not as you mentioned, you need to check child theme as well.

    I did read your reply and tried it on my server, but everything seems to be working fine on my end.

    Sorry it its taking time because your site is in a different language and it is difficult to navigate for me. But I am working things out.

    The password field appears on my text site, but for some strange reason, does not appear on your checkout page.

    Can you try deactivating/activating the plugin(if you haven’t already)?
    Let me know asap.

    in reply to: Menu bar #97661
    Pratik
    Participant

    @micha:
    I do not think there were any changes made to menu designs. I looked at the site and to me, menu bar is not stretching over two lines. Check the screenshot here.

    May be you are viewing it from smaller screen, and this is the default behaviour if there are too many/ling items in menu, they will move to next line.

    Pratik
    Participant

    @berndspring:
    We will fi this in next theme update. If you want to fix it now, then do following:
    1. Goto clean-journal/inc/clean-journal-core.php on line 802-806 and replace it with following lines:

    
    printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>',
        sprintf( __( '<span class="screen-reader-text">Posted on</span>', 'clean-journal' ) ),
            esc_url( get_permalink() ),
    	$time_string
    );
    

    Let me know how it goes.

Viewing 20 posts - 1,281 through 1,300 (of 2,016 total)