Forum Replies Created
-
AuthorPosts
-
May 23, 2015 at 10:13 pm in reply to: Polylang: translating Featured Content title and description #58203
Sakin
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/
Sakin
Keymaster@Creese: Sorry I don’t understand it. I don’t think Catch Responsive theme has blue slider area. Can you post in your site URL and then I will check in for you.
Sakin
Keymaster@Massimo: I need to check your homepage settings. Can you post in your site URL and then I can check in for you.
Sakin
Keymaster@nonno john: You can change that from “Appearance => Customize => Theme Options => Layout Options => Single Page/Post Image Layout”
Sakin
Keymaster@JOSHUA: due to security reason, it will not that that all onmouseover and our event. So, it will just load as
<a href="http://rez.opentable.com/reservation/start/3012?source=selfhost"><img src="http://giantstepdesign.com/TESTER/wp-content/uploads/2015/05/rollover1jpg.jpg" /></a>This is not possible in Promotion Headline Options from Customizer. For this, you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then you need to copy function
fullframe_promotion_headline()fromfullframe-core.phpfile to your child themefunctions.phpfile and edit the code as per your need.Sakin
Keymaster@Maria: ok trying adding in the following css in “Appearance => Theme Options => Custom CSS” box:
.home .entry-header { display: none; }Sakin
Keymaster@johnbatt: You can remove that from “Appearance => Theme Options => Header Right Options”.
Sakin
Keymaster@Laurent: I have send you email in laurent[dot]juvigny[at]free[dot]fr on May 11, 2015.
Can you check your spam folder in your email. You can use this form http://catchthemes.com/contact-us/ and then we will reply from there.Sakin
Keymaster@olaf: In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
Catch Evolution theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
Sakin
Keymaster@Gunter:
1. Yes, this is minor issue. The image URL that is in your “Appearance => Theme Options => Header Featured Image Options => Featured Header Image URL”. So, either add new image URL there or disable that by checking in options “Disable” in “Enable Featured Header Image” and save changes.2. Not sure which font are you using for your logo text. But don’t worry, we have coded theme in such a way that even if you have logo only it will be good for SEO as it text your site title and tagline as well. For that just make sure you have added nice site title and tagline as per your need. Check it at “Settings => General”
3. I don’t know what type of plugin you are looking. We normally use our own social icons and then for likes and all, we use Jetpack plugin “Sharing” module http://jetpack.me/support/sharing/ and “Extra Sidebars” http://jetpack.me/support/extra-sidebar-widgets/
Sakin
KeymasterHello Peter,
Actually this theme uses fluid width for youtube videos. So, it make it responsive to make it 100% the width of your site wrapper so it’s best fitted in your mobile devices and all. If you want to add maximum width then you can wrap your youtube code with extra div html code like below.
<div style="max-width: 500px;">Your Youtube Embed code</div>Note: To add this code, you need to go to text mode in your page/post editor like this https://www.pinterest.com/pin/548594798332210926/
Sakin
Keymaster@Massimo: There is no option like that. You can use CSS using page ID to hide title on those pages. For example, you can add the following css to hide the title for 3 pages with page ID 1735, 200 and 174. Similarly, you can do to your pages. You need to add this type of css in “Appearance => Customize => Theme Options => Custom CSS” box or in your child theme style.css
.page-id-1735 .entry-header, .page-id-200 .entry-header, .page-id-174 .entry-header { display: none; } -
AuthorPosts
