Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@lsdinc: Hum I am confused. There in two layout option without sidebar. One is no sidebar full with http://catchthemes.com/demo/catch-evolution/no-sidebar-full-width/ and another is No sidebar only http://catchthemes.com/demo/catch-evolution/no-sidebar/.
So, what are you trying to do it. Maybe share screenshot of your requirement.Sakin
Keymaster@lsdinc: If you don’t need any side widgets. Then you can change the site layout to “No Sidebar, Full Content” from “Appearance => Theme Options => Layout Options”. If you just want to change to full width layout to only few pages/posts, then you can edit that pages/posts and you will see Catch Evolution options below your page/post editor and there you can change the layout.
Sakin
Keymaster@alexmo: Please add that CSS and send me your site URL then I will check in what’s wrong there.
Sakin
Keymaster@glenda: Nice and child themes is a great way to customize the theme. Cheers 🙂
January 7, 2015 at 9:08 pm in reply to: Custom Header: Logo & Site Details: You do not have sufficient permissions #49696Sakin
Keymaster@Nijn: In the following code, you can edit your label where I have type in Type in your label here and then add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box:
<script type="text/javascript"> jQuery(window).load(function() { //Remove Fixed Top Menu jQuery( "#tinynav1" ).remove(); // Adding Fixed top Menu with new header jQuery('#access-top .menu').tinyNav({ active: 'current-menu-item', header: 'Type in your label here' }); }); </script>Sakin
Keymaster@prehabexercises: Sorry I don’t get it what you mean. Can you explain more in reference with your site URL.
Sakin
Keymaster@Andrew: Sorry I don’t understand it. Can you show me your URL and explain in reference with that URL so that I can check in.
Sakin
Keymaster@bobgarrett: Can you post in your site URL so that I can check in and also if you can upload screenshot of issue in your site or any photo-sharing site and send me the link of screenshot.
Sakin
Keymaster@lsdinc: Yes, you can upload the image size of 1600×200. There is no restriction on this. Just go to “Appearance => Theme Options => Header Featured Image Options” and upload it.
For content widget in post, I don’t recommend it as it is balance as per the screensize.
Sakin
Keymaster@alexmo: The CSS you have added in has space in-between # and form-allowed-tags. There shouldn’t be any space in-between. So, copy the css as below. I have tested in Catch Kathmandu Theme and it works fine.
#form-allowed-tags { display: none; }January 6, 2015 at 9:50 pm in reply to: Custom Header: Logo & Site Details: You do not have sufficient permissions #49647Sakin
Keymaster@arun: Check your upload folder permission. In Catch Everest theme, you can upload the logo image from “Appearance => Header”
Then to make your site title to appear next to your logo, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
#hgroup.with-logo { clear: none; float: left; padding-left: 10px; }Sakin
Keymaster@glenda: Post in your site URL and will see if there is anything I can do it.
Sakin
Keymaster@alexmo: I don’t get it what you mean and why you cannot add it. You can just add that CSS in Custom CSS Box.
Another option is to build child theme and remove that code. For child theme read this http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file you can add the following code:
/** * Modify Comment Form Defaults */ function catchkathmandu_comment_defaults( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; } add_filter( 'comment_form_defaults', 'catchkathmandu_comment_defaults' );Sakin
Keymaster@Riccardo: I have already replied you in http://catchthemes.com/support-forum/topic/selectively-displaying-the-homepage-featured-content/
Please don’t post same question in 2 places. It will be difficult for us to manage.
Sakin
Keymaster@Lisa: I am the Founder/Lead developer of Catch Themes and thanks for your appreciation. You can help us back by providing good review and rating at our Catch Kathmandu them in WordPress theme repo https://wordpress.org/support/view/theme-reviews/catch-kathmandu
Sakin
KeymasterFor whole header it will be as below:
.page-id-1234 #branding, .page-id-1218 #branding, .page-id-959 #branding { display: none; }Sakin
Keymaster
@Lisa: There no option to do that from Theme Options panel. This is high level of customization and required you to build child theme. So, read this http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme and then copy the following code in your child theme functions.php file.// Removing the Default Action Hook function unhook_catchkathmandu_functions() { remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 ); remove_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 10 ); } add_action( 'init', 'unhook_catchkathmandu_functions' ); add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_slider_display', 10 ); add_action( 'catchkathmandu_after_hgroup_wrap', 'catchkathmandu_secondary_menu', 15 ); -
AuthorPosts
