Forum Replies Created
-
AuthorPosts
-
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,
MaheshMahesh
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.phpadd 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,
MaheshMahesh
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,
MaheshMahesh
Participant@oanda-webmistress: Go to Dashboard=> Appearance=> Customize=> Theme Options=>Enable Secondary & Footer Menu in Mobile Devices? and check Check to enable option.
Regards,
MaheshJuly 13, 2016 at 9:38 am in reply to: Primary Menu don't disapear when selecting adding other Top Header Menu #95276Mahesh
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,
MaheshMahesh
Participant@camila: Thank you for your appreciation. Glad to know your issue is solved. Have a nice day you too!
Regards,
MaheshMahesh
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,
MaheshMahesh
Participant@agescho: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.custom-icon { vertical-align: bottom; }Regards,
MaheshMahesh
Participant@agescho: Yes, sure. You can send it to mahesh [at] catchthemes [dot] com.
Regards,
MaheshMahesh
Participant@aparente001: The code should have worked fine. I have attached the
category-question.phpfile 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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
Participant@aparante001: Please replace the code in your child theme’s
category.phpwith 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 anythingFor 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 ChangesHope this helps. Let me know if any problem.
Regards,
MaheshMahesh
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,
MaheshMahesh
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 thecontent.phpby 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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshJuly 12, 2016 at 12:26 pm in reply to: Primary Menu don't disapear when selecting adding other Top Header Menu #95189 -
AuthorPosts
