Forum Replies Created

Viewing 20 posts - 4,741 through 4,760 (of 4,888 total)
  • Author
    Posts
  • in reply to: WP-PageNavi does not work anymore #82771
    Mahesh
    Member

    Hi @EirikurVa,

    We checked out the theme with WP-pagenavi plugin and is working fine. Maybe the problem is due to one of your plugin. Try the following.
    – deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).
    – switching to the default theme to rule out any theme-specific problems?

    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: moving post navigation (previous and next) to the very top #82736
    Mahesh
    Member

    Hi @radeko,

    In child theme’s function.php add the following codes,

    add_action( 'init' , 'catchresponsive_child_move_single_post_nav' );
    function catchresponsive_child_move_single_post_nav() {
            remove_action( 'catchresponsive_after_post', 'catchresponsive_post_navigation', 10 );
    	add_action( 'catchresponsive_before_post_container', 'catchresponsive_post_navigation', 5);
    }

    Regards,
    Mahesh

    in reply to: adding a string to a post title in the archive #82735
    Mahesh
    Member

    Hi @radeko,

    The correct file to make the changes for the above issue is content.php not archive.php. I prefer you to create child theme and make change in child theme because you’ll lose all your changes after theme updates. Create a child theme first, check this LINK for more details on create child theme.
    Then copy content.php from Catch Responsive theme to the child theme. Open child theme’s content.php and modify line 25 (below line):
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    to look like the code below
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?> Your String Here</a></h1>
    Note: Please replace “Your String Here” in the above code with you desired string.

    Regards,
    Mahesh

    Mahesh
    Member

    Hi @radeko,

    I think I misunderstood you earlier, you mean to make the site title link to point to http://54.83.45.133 despite of any language selected. I thought you meant to make the site’s url to http://54.83.45.133 for any language e.g for english, german etc. Sorry for my misunderstanding.

    No, there is no such options to change that variable via an option. Either Free or Pro, you have to create a child theme and override that function.
    First create a child theme, please check this LINK for more details on how to create a child theme, then in child theme’s function.php add the following function.

    function catchresponsive_site_branding() {
    		//catchresponsive_flush_transients();
    		$options 			= catchresponsive_get_theme_options();
    
    		//$style 				= sprintf( ' style="color:#%s;"', get_header_textcolor() );
    
    		//Checking Logo
    		if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    			$catchresponsive_site_logo = '
    			<div id="site-logo">
    				<a href="' . esc_url( site_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
    					<img src="' . esc_url( $options['logo'] ) . '" alt="' . esc_attr(  $options['logo_alt_text'] ). '">
    				</a>
    			</div><!-- #site-logo -->';
    		}
    		else {
    			$catchresponsive_site_logo = '';
    		}
    
    		$catchresponsive_header_text = '
    		<div id="site-header">
    			<h1 class="site-title"><a href="' . esc_url( site_url( '/' ) ) . '">' . get_bloginfo( 'name' ) . '</a></h1>
    			<h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2>
    		</div><!-- #site-header -->';
    		
    
    		$text_color = get_header_textcolor();
    		if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    			if ( ! $options['move_title_tagline'] && 'blank' != $text_color ) {
    				$catchresponsive_site_branding  = '<div id="site-branding" class="logo-left">';
    				$catchresponsive_site_branding .= $catchresponsive_site_logo;
    				$catchresponsive_site_branding .= $catchresponsive_header_text;
    			}
    			else {
    				$catchresponsive_site_branding  = '<div id="site-branding" class="logo-right">';
    				$catchresponsive_site_branding .= $catchresponsive_header_text;
    				$catchresponsive_site_branding .= $catchresponsive_site_logo;
    			}
    			
    		}
    		else {
    			$catchresponsive_site_branding	= '<div id="site-branding">';
    			$catchresponsive_site_branding	.= $catchresponsive_header_text;
    
    		}
    		
    		$catchresponsive_site_branding 	.= '</div><!-- #site-branding-->';
    		
    		echo $catchresponsive_site_branding ;	
    	}

    Regards,
    Mahesh

    in reply to: Increase the content width #82730
    Mahesh
    Member

    Hi Pia,

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

    .site-content {
    width: 100%;
    }

    Note: Default width for this is 1100px.

    Regards,
    Mahesh

    in reply to: Change Header Top Default Text #82711
    Mahesh
    Member

    Hi OliverJames,

    The feature you are interested is already built-in in Pro version, so I recommend you to upgrade to Pro version.

    But if you want to change the header text in free version instead, follow these steps.
    1. Create child theme, you can find more details on creating child theme HERE.
    2. In child theme’s function.php add the following code:

    function clean_journal_header_top() {
    		if ( '' == ( $clean_journal_social_icons = clean_journal_get_social_icons() ) && !has_nav_menu( 'header-top' ) ) { ?>
    			<div id="header-top" class="header-top-bar">
    		        <div class="wrapper">
    		            <div class="header-top-left full-width">
    		                <section id="widget-default-text" class="widget widget_text header_top_widget_area">    
    		                    <div class="widget-wrap">
    		                        <div class="textwidget">
    		                            <p><?php _e( 'Sample Text', 'clean-journal' ); ?></p>
    		                        </div>
    		                    </div><!-- .widget-wrap -->
    		                </section><!-- #widget-default-text -->
    		            </div><!-- .header-top-left -->
    		        </div><!-- .wrapper -->
    	    	</div><!-- #header-top -->
    		<?php 
    		}
    		else { 
    			if ( '' != ( $clean_journal_social_icons = clean_journal_get_social_icons() ) && has_nav_menu( 'header-top' ) ) { 
    				$classes = 'normal-width';
    			}
    			else {
    				$classes = 'full-width';
    			}
    			?>
    			<div id="header-top" class="header-top-bar">
    				<div class="wrapper">
    					<?php if ( has_nav_menu( 'header-top' ) ) { ?>
    						<div class="header-top-left <?php echo $classes; ?>">
    							<?php clean_journal_header_top_menu(); ?>
    						</div>
    					<?php
    					} ?>
    			       	<?php if ( '' != ( $clean_journal_social_icons = clean_journal_get_social_icons() ) ) { ?>
    			       		<div class="header-top-right <?php echo $classes; ?>">
    							<section class="widget widget_clean_journal_social_icons" id="header-right-social-icons">
    								<div class="widget-wrap">
    									<?php echo $clean_journal_social_icons; ?>
    								</div><!-- .widget-wrap -->
    							</section><!-- #header-right-social-icons -->
    						</div><!-- .header-top-right -->
    					<?php 
    					} ?>
    			    </div><!-- .wrapper -->
    			</div><!-- #header-top -->
    			<?php
    		}
    	}

    Note: Please replace “Sample Text” in the above code with your desired text.

    Regards,
    Mahesh

    Mahesh
    Member

    Hi @adunning,

    Finally understood your problem.
    Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #hgroup-wrap {
        padding: 0;
    }
    #site-logo {
        padding-top: 0;
    }

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: Get rid of arrows #82635
    Mahesh
    Member

    Hi @jascmeen,

    Thank you for using Full Frame Pro.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #feature-slider .cycle-prev, 
    #feature-slider .cycle-next {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: the site title – always content url for different languages #82634
    Mahesh
    Member

    Hi @radeko,

    The theme is translation ready. And the translation is done with the help of plugins such as WPML, Qtranlate etc. The site url for each language may vary according to the plugin used. This is beyond the theme scope, I suggest you to contact the Plugin support.

    Regards,
    Mahesh

    in reply to: widget archives #82633
    Mahesh
    Member

    Hi @marcodimi,

    This is not a theme issue, I think you have some redirection problem, because which ever month you click in the archive the page is always redirecting to the home page. i.e.
    If you see the link for the month of December, you’ll see the url to be “http://marcodimizio.com/2015/12/&#8221; but page loads with url “http://marcodimizio.com&#8221;.

    This is because of the WordPress SEO plugin.
    To fix this, go to “Dashboard => SEO=> Title & Metas=> Archives” then in “Duplicate content prevention” section uncheck “Disable the date-based archives” option and click “Save Changes”

    Regards,
    Mahesh

    in reply to: Buttom border on the primary meny #82632
    Mahesh
    Member

    Hi @Lena,

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

    #header-menu {
        border-bottom: 2px solid #ccc;
    }

    Let me know if this fixes your issue, if not please post in your site url.

    Regards,
    Mahesh

    in reply to: change color subheadline text #82630
    Mahesh
    Member

    Hi @[email protected],

    For changing footer text color, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.

    #site-generator {
        color: #6b3089;
    }

    For logo in the footer, you have to create a child theme, you can find detail about creating a child theme HERE. Then in child theme’s function.php, add the following codes.

    function catchresponsive_child_footer_content() {
    	//catchresponsive_flush_transients();
    	if ( ( !$catchresponsive_footer_content = get_transient( 'catchresponsive_footer_content' ) ) ) {
    		echo '<!-- refreshing cache -->';
    
    		// get the data value from theme options
    		$options	= catchresponsive_get_theme_options();
    
    		$defaults 	= catchresponsive_get_default_theme_options();
    
    		$search = array( '[the-year]', '[site-link]' );
    
            $replace = array( date( 'Y' ), '<a href="'. esc_url( home_url( '/' ) ) .'">'. esc_attr( get_bloginfo( 'name', 'display' ) ) . '</a>' );
    
            $options['footer_content'] = str_replace( $search, $replace, $options['footer_content'] );
    
    		$footer_content 	= $options['footer_content'];
    
    		if ( '' != $footer_content ) {
    			$catchresponsive_footer_content .=  '
    	    	<div id="site-generator">
    	    		<div class="wrapper">
    	    			<div id="footer-content" class="copyright">' . $footer_content . '
    	    			<img class="float-right" src="' . esc_url( 'http://placehold.it/20x20' ) . '" />
    	    			</div>
    	    		</div><!-- .wrapper -->
    			</div><!-- #site-generator -->';
    
    	    	set_transient( 'catchresponsive_footer_content', $catchresponsive_footer_content, 86940 );
    	    }
        }
    
        echo $catchresponsive_footer_content;
    }
    
    add_action( 'init' , 'catchresponsive_child_modify_footer' , 15 );
    function catchresponsive_child_modify_footer() {
            remove_action( 'catchresponsive_footer', 'catchresponsive_footer_content', 100 );
    		add_action( 'catchresponsive_footer', 'catchresponsive_child_footer_content', 100);
    }

    Note: Please replace “http://placehold.it/20×20&#8221; in img src in the above code with your desired logo url.

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

    .float-right {
        float: right;
    }

    Regards,
    Mahesh

    in reply to: Creating a blog page with all posts listed with thumbnails #82629
    Mahesh
    Member

    Hi @Marijn,

    Thank you for your appreciation.

    Regards,
    Mahesh

    Mahesh
    Member

    Hi @Lucia,

    Thank you for your appreciation.
    We’re gradually going to remove the Theme Options and use Customizer instead. But all the features and functionality will be the same. It is faster, simpler and more user friendly, and all customization can be done with live preview. It will be available in next version update. Hope you’ll find it nice too.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #82627
    Mahesh
    Member

    Hi @FOEC,

    It is the id of the menu item, you can find it out by right clicking the page and select inspect element or with a firebug.

    //For your english site

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

    //For your french site

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

    Hi @adunning,

    You mean the logo, the one in the top? I’ve just check your site and the image is displaying fine and is in full width, I don’t see any white borders.

    Please check it and let me know if any problems.

    Regards,
    Mahesh

    in reply to: politcy privacy #82625
    Mahesh
    Member

    Hi @marcodimi,

    The code you’ve put in the footer is fine. Please go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Footer” box and make sure the following code is there, if not then paste it there.
    <script type=”text/javascript”>(function (w,d) {var loader = function () {var s = d.createElement(“script”), tag = d.getElementsByTagName(“script”)[0]; s.src = “//cdn.iubenda.com/iubenda.js”; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(“load”, loader, false);}else if(w.attachEvent){w.attachEvent(“onload”, loader);}else{w.onload = loader;}})(window, document);</script>

    Go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Header” box and remove all codes from there.
    Then click “Save”.

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: politcy privacy #82455
    Mahesh
    Member

    Hi @marcodimi,

    Please share the script and html codes provided to you for the “Privacy Policy”.

    Regards,
    Mahesh

    in reply to: Featured Page Slider for certain pages only #82444
    Mahesh
    Member

    Hi @Pia,

    That’s great, you’ve figured it out yourself.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: politcy privacy #82443
    Mahesh
    Member

    Hi @marcodimi,

    I think you’ve some unclosed html tags in the footer code, please replace your footer code with the codes below:

    <div class="copyright">Autore del Blog: <a href="http://marcodimizio.com/" title="Marco Di Mizio"><span>Marco Di Mizio</span></a></div>
    <div class="powered"></div>
    <a href="//www.iubenda.com/privacy-policy/463315" class="iubenda-white iubenda-embed" title="Privacy Policy">Privacy Policy</a>

    Currently in your site, I am seeing 3 “Privacy Policy” buttons, one in “Footer Widget”, one in “Footer” and one in the “Bottom-Right Corner”. The above code is for the one in the “Footer”. It will place the “Privacy Policy” button just below “Autore del Blog: Marco Di Mizio” aligning left.

    Let me know if this solves your issue.

    Regards,
    Mahesh

Viewing 20 posts - 4,741 through 4,760 (of 4,888 total)