Forum Replies Created

Viewing 20 posts - 3,261 through 3,280 (of 4,908 total)
  • Author
    Posts
  • in reply to: google search-result #95312
    Mahesh
    Participant

    @konstance: Your Title for the site in the browser tab is not displaying. Are you using any plugin? If yes try disabling it and check if this resolves the issue. For SEO we recommend you to use Yoast SEO or you may use other SEO plugin of you choice.
    Let me know further.

    Regards,
    Mahesh

    in reply to: How to add a News Ticker in header area #95305
    Mahesh
    Participant

    @petermilliken: You have to create child theme for this. You can find more on how to create child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'catchresponsive_child_ticker_below_slider' );
    function catchresponsive_child_ticker_below_slider() {
    	//Display Ticker below Slider
    	add_action( 'catchresponsive_before_content', 'catchresponsive_display_ticker', 11 );
    	
    	//Display Ticker Below Social Icons
    	//add_action( 'catchresponsive_after_header', 'catchresponsive_display_ticker', 19 );
    }
    
    function catchresponsive_display_ticker() {
    	if( function_exists( 'ditty_news_ticker' ) ) {
    		ditty_news_ticker(218);
    	}
    }

    Note: In the above code
    add_action( 'catchresponsive_before_content', 'catchresponsive_display_ticker', 11 );
    will display ticker before Slider
    And
    add_action( 'catchresponsive_after_header', 'catchresponsive_display_ticker', 19 );
    will display ticker before Social Icons. Please use any one, and comment the other. For now I’ve displayed the ticker below slider.

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #95304
    Mahesh
    Participant

    @sheilalowe: Do you mean theme customization or customizer settings? Customizer settings are retained on theme updates, you can update the theme without losing any settings. But if you have done some customization to the theme, all of them will be lost during update. That is where child theme comes in handy. You can find more on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: secondary menu not displaying on Smart Phone #95278
    Mahesh
    Participant

    @oanda-webmistress: Go to Dashboard=> Appearance=> Customize=> Theme Options=>Enable Secondary & Footer Menu in Mobile Devices? and check Check to enable option.

    Regards,
    Mahesh

    Mahesh
    Participant

    @nomada: For that, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following code:

    add_action( 'init', 'clean_journal_child_remove_primary_menu' );
    function clean_journal_child_remove_primary_menu() {
    	remove_action( 'clean_journal_after_header', 'clean_journal_primary_menu', 20 );
    }

    Note: This will completely remove Primary Menu from the theme, if you want to have primary menu again, you’ll need to remove this function.

    Regards,
    Mahesh

    in reply to: FEATURED SLIDER STOPPED WORKING #95242
    Mahesh
    Participant

    @camila: Thank you for your appreciation. Glad to know your issue is solved. Have a nice day you too!

    Regards,
    Mahesh

    in reply to: Silder not working with https #95241
    Mahesh
    Participant

    @petermilliken: Glad to know everything is working fine now. Sometimes plugins do create issue and deactivating then reactivating it may solve some issues, strange. 🙂
    Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: specs for social media icons #95240
    Mahesh
    Participant

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

    .custom-icon {
        vertical-align: bottom;
    }

    Regards,
    Mahesh

    in reply to: specs for social media icons #95238
    Mahesh
    Participant

    @agescho: Yes, sure. You can send it to mahesh [at] catchthemes [dot] com.

    Regards,
    Mahesh

    in reply to: category archive #95237
    Mahesh
    Participant

    @aparente001: The code should have worked fine. I have attached the category-question.php file in the link below, please try and check if this helps. I checked it in our server and worked fine.
    https://goo.gl/bPliQa
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: FEATURED SLIDER STOPPED WORKING #95230
    Mahesh
    Participant

    @camila: I’ve replied you in the other post, so I’ll skip this one. Please do not post the same issue twice.

    Regards,
    Mahesh

    in reply to: FEATURED SLIDER STOPPED WORKING #95229
    Mahesh
    Participant

    @camila: I checked your site and seems you have mailchimp plugin and embed.js script of the plugin is causing the issue. Please try disabling the plugin and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: specs for social media icons #95226
    Mahesh
    Participant

    @agescho: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: category archive #95218
    Mahesh
    Participant

    @aparante001: Please replace the code in your child theme’s category.php with the code below:

    <?php
    /**
     * The template for displaying Category Archive pages.
     *
     * @package Catch Themes
     * @subpackage Catch_Evolution_Pro
     * @since Catch Evolution 1.0
     */
    
    get_header(); ?>
    
    			<?php if ( have_posts() ) : ?>
    
    				<header class="page-header">
    					<h1 class="page-title"><?php
    						printf( __( 'HELPline Test', 'catch-evolution' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    					?></h1>
    
    					<?php
    						$category_description = category_description();
    						if ( ! empty( $category_description ) )
    							echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );
    					?>
    				</header>
    
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php
    						/* Include the Post-Format-specific template for the content.
    						 * If you want to overload this in a child theme then include a file
    						 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    						 */
    						get_template_part( 'content', get_post_format() );
    					?>
    
    					<?php
    						$withcomments = "1";
    						comments_template( '', true );
    					?>
    
    				<?php endwhile; ?>
    
    				<?php catchevolution_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<article id="post-0" class="post no-results not-found">
    					<header class="entry-header">
    						<h1 class="entry-title"><?php _e( 'Nothing Found', 'catch-evolution' ); ?></h1>
    					</header><!-- .entry-header -->
    
    					<div class="entry-content">
    						<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catch-evolution' ); ?></p>
    						<?php get_search_form(); ?>
    					</div><!-- .entry-content -->
    				</article><!-- #post-0 -->
    
    			<?php endif; ?>
    
    			</div><!-- #content -->
    		</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer();

    This will resolve two of your issues.
    – change the way the page title appears
    – display all the comments, without requiring the visitor to click on anything

    For the other two, you’ll have to change some settings. Please follow along:
    – display the full content of each post in this category (not an excerpt)
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Full Content Display in Full Content Display and click on Save Changes

    – display only the 50 most recent posts in this category
    Go to Dashboard=> Settings=> Reading and put 50 in Blog pages show at most field and click on Save Changes

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Silder not working with https #95209
    Mahesh
    Participant

    @petermilliken: I checked the URL, it says, “Maintenance mode is on”. Are you using any plugins? If yes, try disabling plugins one by one and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Protected posts are displaying and should not #95208
    Mahesh
    Participant

    @sueschalk: The Password Protected post will be listed but the content is hidden and only displayed after you have put in the password. This is working fine.
    Word “foot” displaying in the top left corner of each post.
    Have you modified content.php file? Seems you have put foot text in the content.php by mistake and that is why it is displaying there. You’ll need to check for it and remove it manually.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Links in posts not working on first page #95207
    Mahesh
    Participant

    @alex1337: The issue is because of excerpt content. Using excerpt will strip all the HTML tags and will only display plain text. For resolving the issue, you’ll have to display full-content instead of excerpt. Go to Dashboard=> Appearance=> Theme Options=> Layout Options and select Show Full Content (No Featured Image).
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Select Featured Content #95203
    Mahesh
    Participant

    @rollik:
    Hi Rolf,

    Thank you for using Clean Business Pro theme. Yes, this can be done through Customizer. Go to Dashboard=> Appearance=> Customize=> Featured Content => Featured Content Options and select Featured Category Content in Select Content Type then select your desired category in Select Categories.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: change layout homepage #95202
    Mahesh
    Participant

    @wouwonline: For Homepage without sidebar, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select No Sidebar (Content-Width) in Default Layout option. If you want No Sidebar (Full Width), I recommend you to upgrade to Pro since the option is only available in Pro version.
    You can also use Custom CSS for removing the content with blog posts and sidebar. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #content {
        display: none;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @nomada: Sorry, my bad, its .nav-primary. Can you please explain in details what you want to do by change template.

    Regards,
    Mahesh

Viewing 20 posts - 3,261 through 3,280 (of 4,908 total)