Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Nicole G: Please post in appropriate support forum. This is Catch Everest Support Forum. Since, you question is general, I am going to answer it here.
Yes, the current version of Catch Evolution Free is version 2.4.1. Who said you will loose the structure of the site when you update the theme. You site will be just as it is, no need to worry about it if you have made changes in your site properly using theme options panel, widgets and menus. You can just update it.
But if you have customized any core theme files inside ‘catch-evolution-pro’ folder then you will loose that customization. As when you update the theme, it just load the original files in ‘catch-evolution-pro’ folder. You said you are newbie, so I don’t think you have customize any files inside ‘catch-evolution-pro’ folder
Sakin
Keymaster@Eduardo:
1. To disable the website field, you don’t need to change anything. Just go to “Appearance => Theme Options => Comments Options”, check in “Disable Website Field” and save it.2. Then your child theme functions.php file should be like below to add the text Este campo es opcional:
<?php /** * Catch Box Pro Child Theme functions and definitions * */ /** * Altering Comment Form Fields * @uses comment_form_default_fields filter */ function catchbox_child_comment_form_fields( $fields ) { $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $commenter = wp_get_current_commenter(); $fields['email'] = '<p class="comment-form-email"><label for="email">' . esc_attr__( 'Email', 'catchbox' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . sprintf( esc_attr__( '%s', 'catchbox' ), $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /><span class="email-optional">Este campo es opcional</span></p>'; return $fields; } add_filter( 'comment_form_default_fields', 'catchbox_child_comment_form_fields', 30 );Sakin
Keymaster@Camel1021: Just change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#colophon { border-color: #1b5f7d; }Sakin
Keymaster@Caducassau: This option will make the theme heavy and not good for website optimization. So, if you are looking for advance font options then I suggest you to install Font plugin. Try searching here at https://wordpress.org/plugins/search.php?q=fonts
Sakin
Keymaster@Denys: Yes as all social icon is supported to open in New Browser tab. Since, email doesn’t have link page like other social icons such as facebook and twitter. That is why it is showing blank page after opening your email.
Sakin
Keymaster@Lisa: I have already answered you about Header left sidebar trick at you post
http://catchthemes.com/support-forum/topic/header-left-sidebar-widget/Sakin
Keymaster@bigoslesli: Thanks for your help
Sakin
Keymaster@Cricket: Sorry I don’t know how your Free version used to look like after the customization. But I can suggest you the css based on your requirement to your site.
1. First delete the following css from “Appearance => Theme Options => Custom CSS” box:
#site-logo, #hgroup { display: inline; float: right;}2. To make the logo left, go to “Appearance => Theme Options => Header Options” and then uncheck “Move Site Title and Tagline”.
3. Then add the following css in “Appearance => Theme Options => Custom CSS” box:
.logo-wrap { display: block; width: 100%; } #site-logo { float: left; width: 50% } #hgroup { float: right; width: 50% } #branding #s, #branding #s:focus { width: 270px; }Sakin
Keymaster@Lisa Which space are you talking about? There is no space that title is taking after your have added that css to hide the title.
If you are talking about the margin bottom below your Homepage Featured Content, then you can remove that by adding the following css in “Appearance => Theme Options => Custom CSS” box:
#featured-post { border: none; margin-bottom: 0; }Sakin
Keymaster@bigoslesli: Thanks for your help
Sakin
Keymaster@Lisa: Sorry that is not possible with this theme options. It’s not designed for that. If you really want then you can do that by hiring developer to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme you can do your customization.
I can suggest you one ticket but not sure if this will work as per your need or not. So, if this doesn’t work then hire developer to work on it.
1. First add widget in your Header Top Sidebar and Header Right Sidebar from “Appearance => Widgets”. Once, you have widgets in these both places. I am going to make this header top sidebar as Left header and Header Right Sidebar as right header.
2. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:/* Left and Right Header Sidebar Custom CSS */ #header-top { float: left; width: 25%; } #header-top .container { padding: 0 30px; } #header-top .container .widget { float: left; } #hgroup-wrap { clear: none; float: right; padding-left: 0; padding-right: 0; width: 75%; } #header-left { width: 65%; } #header-right { width: 35%; } #header-right .widget { padding: 0 30px; } #secondary-menu { clear: both; } /* Responsive Mobile to make it 100% */ @media screen and (max-width: 960px) { #header-top, #hgroup-wrap, #header-left, #header-right { clear: both; width: 100%; } #header-top .container .widget { float: none; } }Sakin
Keymaster@Ellen: Thanks a lot for choosing Create Pro and Catch Themes as your preferred theme. It’s really nice to see good website build on it. Really awesome. Congratulations 🙂
Sakin
Keymaster@Wade: Sorry we haven’t look at team members plugin much. For plugins, there are lot of options that you can choose. You can select from https://wordpress.org/plugins/search.php?q=team+members.
Maybe you are recommend one to use after you try it. Then we will add support for that plugin 🙂
Sakin
Keymaster@Gunter:
1. I am bit confused about this. Which background are you talking about? Also if you are using Catch Kathmandu Pro theme then you can change that background color from “Appearance => Theme Options => Color Options => Menu Color Options”. There you can change primary menu color and save changes.2. You can adjust the padding and font size in the following css to adjust the button size in Homepage Headline. Then add it in “Appearance => Theme Options => Custom CSS” box:
#homepage-message .right-section a { font-size: 26px; padding: 10px 30px; }Sakin
Keymaster@Sandra1970: Thanks for your appreciation.
Sakin
Keymaster@Kim: It’s not no way. It will be hard way. You need to build child theme and do high level of customization. So, you need to hire developer for this.
Sakin
Keymaster@luismarioochoa:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:#slider .slider-title { font-weight: bold; } #slider .sep { display: none; } #slider .slider-excerpt { clear: both; display: inline-block; }2. Just change the font size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap .featured-text { font-size: 14px; }3. If you want to remove the slider excerpt then please remove the following css from answer 1. That is
#slider .slider-excerpt { clear: both; display: inline-block; }
Then add the following css instead:
#slider .slider-excerpt { display: none; }February 13, 2015 at 12:56 am in reply to: Category only displays first 1-2 posts in Catch Everest (free) #51603Sakin
Keymaster@FinnJackson: No need to pay if you are happy with the free version. I will provide support for both free and paid version. But I don’t understand your issue in Case Study category. It is displaying 10 posts. Can you explain please?
-
AuthorPosts
