Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@TJBraatveit: This is bit complicated process. I suggest you to take help from professionals.
First you have to unhook the parent theme function for which you want to change it.
For example let’s unlook the parent theme simplecatch_headerdetails function
// Unhook default Simple Catch Pro functions
function unhook_simplecatch_functions() {
// Don't forget the position number if the original function has one
add_action( 'simplecatch_before_sidebartop', 'simplecatch_headerdetails', 10 );
}
add_action( 'init', 'unhook_simplecatch_functions' );
Then you need to build the child theme function to change that
add_action( 'simplecatch_before_sidebartop', 'simplecatch_headerdetails_child', 10 );
function simplecatch_headerdetails_child() {
//delete_transient( 'simplecatch_headerdetails' );global $simplecatch_options_settings;
$options = $simplecatch_options_settings;if ( ( !$simplecatch_headerdetails = get_transient( 'simplecatch_headerdetails' ) ) && ( empty( $options[ 'remove_header_logo' ] ) || empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) ) {
echo '<!-- refreshing cache -->';$simplecatch_headerdetails = '<hgroup class="logo-wrap clearfix">';
if( empty( $options[ 'remove_header_logo' ] ) ) {
$simplecatch_headerdetails .= '<h1 id="site-logo">'.'<a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">';
if ( !empty( $options[ 'featured_logo_header' ] ) ):
$simplecatch_headerdetails .= '<img src="'.esc_url( $options['featured_logo_header'] ).'" alt="'.get_bloginfo( 'name' ).'" />';
else:
// if empty featured_logo_header on theme options, display default logo
$simplecatch_headerdetails .='<img src="'. get_template_directory_uri().'/images/logo.png" alt="logo" />';
endif;
$simplecatch_headerdetails .= '</a></h1>';
}if ( empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) {
$simplecatch_headerdetails .= '<div id="site-details">';
if( empty( $options[ 'remove_site_title' ] ) ) {
$simplecatch_headerdetails .= '<h1 id="site-title"><span><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'.esc_attr( get_bloginfo( 'name', 'display' ) ).'</a></span></h1>';
}
if( empty( $options[ 'remove_site_description' ] ) ) {
$simplecatch_headerdetails .= '<h2 id="site-description">'.esc_attr( get_bloginfo( 'description' ) ).'</h2>';
}
$simplecatch_headerdetails .= '</div>';
}$simplecatch_headerdetails .= '</hgroup>';
set_transient( 'simplecatch_headerdetails', $simplecatch_headerdetails, 86940 );
}
echo $simplecatch_headerdetails;
} // simplecatch_headerdetails
Sakin
Keymaster@jonSellers: This is responsive theme and there will be image scaling as per the screen size used.
Sakin
Keymaster@JanneS: In you post edit there will be “Excerpt” box. Just add the text in there. If you want to control the exact line.
March 18, 2013 at 3:36 pm in reply to: responsive menu bug (exists on most if not all Catch themes) #5356Sakin
Keymaster@pitaandfreddy: the menu defined in the theme is perfectly fine. As we focus on Custom Menu feature of WordPress. Not the page menu. Custom Menu adds in current-menu-item for the current item.
If you see at the demo of Catch Everest. http://catchthemes.com/demo/catch-everest/ Where is the bug. It is selecting the proper menu.
No problem in demo of Catch Box http://catchthemes.com/demo/catchbox/
No problem in demo of Catch Box Pro http://catchthemes.com/demo/catchbox-pro/No problem in demo of Catch Mustang http://catchthemes.com/demo/catch-mustang/
No problem in demo of Catch Responsive http://catchthemes.com/demo/catchresponsive/
No problem in Simple Catch Pro http://catchthemes.com/demo/simplecatch-pro/
Please post the support query if you have problem. I will personally help you. But please don’t post false judgement.
Sakin
Keymaster@chandrathompson: Youe site URL please.
Sakin
Keymaster@chandrathompson: It would have better if you have posted your question in New Thread. Send me your site URL and then I will provide you CSS to hide the Page titles.
Sakin
Keymaster@luckygirl: Yes for that also you need to upgrade to Catch Box Pro where there is extra Header Right Sidebar and you can just drag and drop Social Widget to Header Right Sidebar.
Sakin
Keymaster@micahrj: Add the following css
#main { padding-top: 0; }
.home .entry-header { display: none; }
But there is extra
<br />in your homepage content which is also pushing the content down.Sakin
KeymasterLooks like you have change the theme folder. Your style.css is showing the path of http://livluvdesign.com/wp-content/themes/catch_everest-lld/style.css where as it should be http://livluvdesign.com/wp-content/themes/catch-everest/style.css .
The social icon image “social-profile.png” in inside catch-everest => image folder. Since your style.css is showing catch_everest-lld and cannot find the path. You need to correct that.
Sakin
Keymaster@richardcharlesandrews1: Oh finally I got you. That is page title not the breadcrumbs. Ok you can hide the page title in the content area by adding the following css in “Custom CSS” box in Theme Options Panel.
.entry-title { display: none; }Sakin
Keymaster@@richardcharlesandrews1: There is no breadcrumbs. You are using wrong terminology. When I check in your site. Your site structure is as below:
1. Logo
2. Primary Menu
3. Featured Post Slider
4. Left Sidebar you have various widgets
5. Right Content – In Right content, you have page title, page image and page content.
6. FooterWhere is the breadcrumbs???
Sakin
Keymaster@@richardcharlesandrews1: “Sheriff Racing” , “Sponsorship Package” and “Race News” are menu not the breadcrumbs. so want to hide the whole menu.
Sakin
Keymaster@CFarone: This is not box theme that is why it is not there. Catch Everest is simple theme without boxed. But if you want to add in then, you can try adding in the following CSS in “Custom CSS” box in theme options panel.
#secondary .widget { background-color: #fafafa; border: 1px solid #e6e6e6; padding: 20px; padding: 2rem; }Sakin
Keymaster@richardcharlesandrews1: I don’t see any Breadcrumbs in your site. I think you are talking about different thing. Can you explain bit more.
Sakin
Keymaster@mogulbill: Yes to change the link color in Featured Post Slider box, just add the following css in your “Custom CSS” box in Theme Options panel.
#slider-wrap a.more-link { color: #fff; }Sakin
Keymaster@heeralc: You are using featured post slider which means it will redirect to respective post. But if you don’t want that to redirect to respective post then you can use redirection plugin and adjust the link as per your need. To remove the link it’s not there in Catch Everest Free theme.
I don’t understand your other 2 questions. Also can you post your site URL and explain bit more and then I will be able to help you.
Sakin
Keymaster@prius4f: If you want the primary menu to have same background like the secondary menu then just add the following css in your “Custom CSS” box in your Theme Options panel
#branding #access { background: none #e6e6e6; }
#branding ul.menu a { color: #373737; }
#branding ul.menu li { border-color: #dedede; }
-
AuthorPosts
