Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@subper: Just add the following CSS in “Custom CSS” box in your Theme Options panel to hide the text in Featured Post Slider
#main-slider .entry-container { display: none; }
Sakin
Keymaster@verena.v: I don’t know what didn’t work in our theme. Can you elaborate it more. Nextgen Gallery plugin should be working fine.
Sakin
Keymaster@futureblu: Just add the following CSS in “Custom CSS” box in your Theme Options panel.
.entry-meta ul li { background: none; }
.entry-meta .author, .entry-meta .last { display: none; }
Sakin
Keymaster@heeralc: In Catch Everest theme, the Header image is flexible. We only suggested 300 by 125. Just upload the large image and click on “Skip Cropping, Publish Image as Is” button. This will make your header image as the original image.
Sakin
Keymaster@arichardc: You can just change that form your Discussion Settings.
Login to your WordPress and then go to “Settings => Discussion” which will open this page http://www.androideveryday.com/wp-admin/options-discussion.php then in the 10th line you will see “Comments should be displayed with the comments at the top of each page” set this to newer and click on Save Changes.Sakin
Keymaster@Rafeek and @famulan-fr: We don’t allow users to remove copyright information from footer if you are using free theme. As this is the only form of recognition that we received for giving all these hard work of Design, Development and Support.
We are planning to release the Pro version soon, where you will be able to remove the information with footer editor option.
I hope you understand this.
Sakin
Keymaster@Dane30 and @Dan Davies: Thanks for reporting. I have found the issue and submitted the update to WordPress.org and they will make it available soon.
But for now: You can go to “Appearance => Editor” and then click on “catcheverest-functions.php” from right sidebar of Editor. Then the editor will option the file catcheverest-fucntions.php file. Then copy the code from this file http://themes.svn.wordpress.org/catch-everest/0.1.2.2/inc/catcheverest-functions.php and paste there and click on Update File button.
If you don’t feel confident about making changes then send email to at support[at]catchthemes[dot]com with your WordPress site access and I will do that for you.
Sakin
Keymaster@abyteofthisnthat: It is clearly mentioned in our Theme Instruction about the layout option that we have in Pro version.
Catch Box Pro in responsive theme with 2 column layout design. It is not designed for 3 column as you have asked.
Thanks and I have noted down. We will check on the feature and will try to add in near future.
Sakin
Keymaster@acoulte: Post IDs are shown in the address bar when you edit or add new post. But if you still cannot find the post ID. Then we have developed Catch IDs plugin http://wordpress.org/extend/plugins/catch-ids/ . You can install this plugin and it will show the respective IDs of post in your Post Panel. Or see this video which shows how to find post ID without any plugin. https://www.youtube.com/watch?v=fLg2T1AvmFE
Sakin
Keymaster@farshad: To increase the width is bit complicated as it is responsive design. So, I don’t want you to change it. Please post this type of customization in http://jobs.wordpress.net/ or tweaky.
I have already given you the css code to hide the Tags and category name (below excerpts)
Sakin
Keymaster@muichan: this function is not there in Simple Catch Theme. I think best option will be to search for plugin and adding it. To customization you need to have information regarding featured image and WordPress coding.
Sakin
Keymaster@hjnelson: You need to upload the image of width 1140px and height 450px and set it as featured image in the post. This will make it same as the demo page.
See theme instruction of all the details http://catchthemes.com/theme-instructions/catch-everest/
Sakin
Keymaster@allisonh: There is no option to add image under the Menu bar. But yes you can add the Featured Post Slider under the Menu bar. See the Theme Instruction http://catchthemes.com/theme-instructions/simple-catch/ for instruction on adding Featured Post Slider.
For adding music you might need to search in WordPress Plugins in http://wordpress.org/extend/plugins/
Sakin
KeymasterNavigation container is id nav-below
Next is class nav-next
Previous is class nav-previous
post are in class hentrySakin
Keymaster@farshad: For responsive width we cannot add it in “Custom CSS” it has to be done with style.css by building child theme.
I don’t see The “About Author Name” in h2.
You can hide it by adding the following CSS in “Custom CSS” box in Theme Options panel.
footer.entry-meta { display: none; }
Sakin
Keymaster@subper: Right now we don’t have Dark color scheme for Catch Everest Theme. But you can add the CSS in “Custom CSS” box in your Theme Options panel and change the background colors.
I have help you with this. But let me know the section which you want to change with the colors as well. So, I can help you with css.
Sakin
Keymaster@subper: Your site URL please. So you mean to remove the title only or both title and excerpt.
Sakin
KeymasterThere is no white border in the header but your logo has border see this http://proba.renatalehnert.com/wp-content/uploads/2013/03/logo1.jpeg
You can further decrease the padding top
#site-logo { padding-top: 0; }
Sakin
Keymaster@zhangciwu: To translate Catch Everest theme to chinese, you can just install the http://poedit.net/ software and then create .mo and .po file from catcheverest.pot that you will find inside the language folder in the Theme.
See this for details: http://wp.tutsplus.com/tutorials/theme-development/translating-your-theme/
Sakin
KeymasterIt’s in the function catchbox_headerdetails() in custom-header.php. You need to build child theme and then you can just remove the action by adding the following code in functions.php in your child theme.
remove_action( 'catchbox_headercontent', 'catchbox_headerdetails', 11 );
Then build your function with changes such as catchbox_headerdetails_child() and hook with action hook
add_action( 'catchbox_headercontent', 'catchbox_headerdetails_child', 12 );
-
AuthorPosts