Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster2. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.header-sidebar .widget { clear: none; margin-right: 10px; }3. You can adjust the margin top and bottom as per you need to reduce the grey area and then add it in “Appearance => Theme Options => Custom CSS” box:
.site { margin-top: 40px; margin-bottom: 40px; }4. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
#site-title, #site-description { float: left; }Sakin
Keymaster@mosign: Yes, for Catch Responsive Pro you can use http://catchthemes.com/support-forum/forum/catch-responsive-pro-premium/. But to change menu position, you can use the same code as below in Catch Responsive Pro child theme.
Sakin
Keymaster@machoyouk: It doesn’t matter if it’s page or post or category or link. You just count the number in which position that link is and then remove it.
For 1st, it will be:
#tinynav1 option:nth-child(1n) { display: none; }for 15th, it will be:
#tinynav1 option:nth-child(15n) { display: none; }Sakin
Keymaster@roderick: You can change the font size in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
/* For Site Title */ .site-title { font-size: 38px; } /* For Footer Text */ #site-generator { font-size: 13px; }Sakin
Keymaster@roderick: In Catch Responsive Pro theme, you can change the site tagline text color from “Appearance => Customize => Color Options => Header Color Options” and then change the color of “Tagline Color” and save it.
Sakin
Keymaster@Panayot: thanks and it’s great that your plugin developer fixed it.
Sakin
Keymaster@marksp: I check in your site from Firefox and it is showing no sidebar full width in your homepage. Can you upload screenshot and show me what’s not working in your browser.
May 23, 2015 at 10:48 pm in reply to: How to embed opt-in form in place of right header search bar #58206Sakin
Keymaster@greydoolin: Thanks for understanding and supporting us.
Sakin
Keymaster@Juan: We are doing fine and we are slowing recovering.
Yes, it will not take custom post type. For that you need to build child theme, refer to child theme at http://catchthemes.com/blog/create-child-theme-wordpress/
1. Then copy
catchbox_sliders()function to your child themefunctions.phpfile and then edit the following code:$get_featured_posts = new WP_Query( array( 'posts_per_page' => $postperpage, 'post__in' => $options[ 'featured_slider' ], 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ));In the above code you need to add in post_type. So, it will be as below:
$get_featured_posts = new WP_Query( array( 'posts_per_page' => $postperpage, 'post_type' => 'post,events', 'post__in' => $options[ 'featured_slider' ], 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ));Note: you need to change that events with your post type.
May 23, 2015 at 10:13 pm in reply to: Polylang: translating Featured Content title and description #58203Sakin
Keymaster@widespread: For this you need to add xml file
wpml-config.xmlincatch-basetheme directory.<wpml-config> <admin-texts> <key name="catchbase_options"> <key name="featured_content_headline"/> <key name="featured_content_subheadline"/> </key> </admin-texts> </wpml-config>Then add the following code in your theme functions.php file
/** * Template for Clearing WPML Invalid Cache * * To override this in a child theme * simply create your own catchbase_wpml_invalidcache(), and that function will be used instead. * * @since Catch Base */ function catchbase_wpml_invalidcache() { delete_transient( 'catchbase_featured_content' ); } // catchbase_wpml_invalidcache endif; add_action( 'after_setup_theme', 'catchbase_wpml_invalidcache' );Note: We need to work on this to make our theme Polylang plugin ready. It’s getting late as we are suffering from earthquake and after shocks in Nepal. So, it will be delayed for now.
Sakin
Keymaster@knudkp: Can you check your Featured Content Options. Go to “Appearance => Customize => Featured Content Options” and Featured Content Settings, you can choose “Disabled” in Enable Featured Content on option. I see that you have select Featured Content type as Featured Page Content and then you haven’t selected pages.
Sakin
Keymaster@Creese: ok then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#feature-slider { background-color: #fff; }Sakin
Keymaster@mosign: It would have been easy for me to explain if you had your site live. So, I could check in your slider and featured image. Also, you shouldn’t edit any core theme files such as header.php, index.php, functions.php, style.css and so on which are inside
catch-responsivetheme directory. As all these edits will be reverted back to original when you update or upgrade your theme.If you want to edit any core theme files then you need to build child theme and edit it. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/. You can download sample child theme from there and then add the following code in your child theme functions.php file.
// Unhook default Catch Responsive functions function unhook_catchresponsive_functions() { remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 ); } add_action( 'init', 'unhook_catchresponsive_functions' ); //Adding menu after slider add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );Sakin
Keymaster@Kathy: It’s css from your plugin css http://new.stoneimpressions.com/wp-content/uploads/bb-plugin/cache/446-layout.css. So, either change that css or add the following css in “Appearnce => Customize => Theme Options => Custom CSS Options” box:
.site .fl-photo-caption { text-overflow: clip; }Sakin
Keymaster@Creese: Just go to “Appearance => Customize => Colors” and change the “Background Color” as per your need.
Sakin
Keymaster@Massimo: Try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box
.home #content_sidebar_wrap #main { display: none; } @media screen and (min-width: 991px) { .home.three-columns.equal-columns #content_sidebar_wrap, .home.three-columns.equal-columns .sidebar-secondary { width: 50%; } .home.three-columns.equal-columns .sidebar-primary { width: 100%; } }Sakin
Keymaster@johnbatt: You can try this https://www.printfriendly.com/, even they have plugin https://wordpress.org/plugins/printfriendly/
-
AuthorPosts
