Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@medialegends: Please post in your site url.
Regards,
MaheshMahesh
Participant@banno2000: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. You can override the category heading with the following code. Add the following code into the child theme’s
functions.phpadd_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( 'Put your text here: ', false ); } return $title; });Regards,
MaheshMahesh
Participant@dschwartzer: Glad to know you’ve solved the issue. Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@m-mommers: Are you using any pluigns? If so try disabling theme one by one check if that resolves the issue. From when did this issue occur? From post titled Heggenmus, all contents are displaying fine.
Regards,
MaheshMahesh
Participant@banno2000:
1. This has been answered in your previous post.
https://catchthemes.com/support-forum/topic/remove-author-and-date-at-top-of-posts/#post-110527And for other two changes you’ve mentioned above, you’ll need to customize the theme further.
Regards,
MaheshMahesh
Participant@banno2000: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
/* Hide author and date on the top */ #main .entry-header .entry-meta { display: none; }And for disabling comments, go to edit post, click on Screen Options on the top right just beside Help. Some options will slide down. Check on Discussion checkbox. Then scroll down below the content and uncheck Allow Comments checkbox then click Update.
Please repeat the process of unchecking Allow Comments checkbox for the posts. Hope this helps.Regards,
MaheshMahesh
Participant@banno2000: Yes, this can be done. Go to Dashboard=> Appearance=> Menu and add the sub categories into the menu and drag it as sub menu and save the menu. No coding required. Just drag and drop. Let me know if any problem.
Regards,
MaheshMahesh
Participant@cjdodaro: This is a repeat post, so I’ll skip this one. Please refer to the link below:
https://catchthemes.com/support-forum/topic/disable-infinite-scrolling-in-my-catch-box-theme/#post-110520Regards,
MaheshMahesh
Participant@omenicus: Please post in your site url. What seems to be the problem? Have you tried deactivating the plugins? Please try so and let me know further.
Regards,
MaheshMahesh
Participant@joshuacgibson: Please post in your site url.
Regards,
MaheshMahesh
Participant@cjdodaro: Seems you are using Jetpack plugin and infinite scroll is enabled. Please disable the infinite scroll from jetpack’s setting and you’ll be good to go.
Regards,
MaheshMahesh
Participant@clive: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#sidebar-header-right { display: none; }Regards,
MaheshFebruary 23, 2017 at 9:59 am in reply to: Adjust partial backgroundcolor, footercolor and logo size #110517Mahesh
Participant@nico: If you mean the background color, this feature is included in Free version, go to Dashboard=> Appearance=> Customize=> Background Image and change the Background Color. Make sure you’ve removed the Background Image.
Footer color options is available in Pro version. I recommend you to upgrade to Pro.
For logo a bit bitter after scrolling, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:.is-sticky .site-logo img { max-height: 80px; }Regards,
MaheshMahesh
Participant@tinus53: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#main-slider .entry-header .entry-title a { color: #ff00ff; }Note: Please use your desired color.
Regards,
MaheshMahesh
Participant@andra4a: Well, we haven’t actually tested the plugin in our theme. May be it is not compatible and causing the issue.
Regards,
MaheshMahesh
Participant@falkr1979: Yes, this can be done. For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.phpadd the following codes.function catchevolution_posted_on() { /* Check Author URL to Support Google Authorship * * By deault the author will link to author archieve page * But if the author have added their Website in Profile page then it will link to author website */ if ( get_the_author_meta( 'user_url' ) != '' ) { $catchevolution_author_url = esc_url( get_the_author_meta( 'user_url' ) ); } else { $catchevolution_author_url = esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ); } printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date updated" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'catch-evolution' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date( 'F j, Y g:i A' ) ), $catchevolution_author_url, esc_attr( sprintf( __( 'View all posts by %s', 'catch-evolution' ), get_the_author() ) ), get_the_author() ); }Regards,
MaheshMahesh
Participant@oly: You can try our other full-width themes:
* Full Frame
* Rock Star
* Clean Business
* Parallax Frame
* Fabulous Fluid
* Clean Magazinehttps://catchthemes.com/themes/category/premium/
Regards,
Mahesh -
AuthorPosts
