Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@bigstes: Sorry, but you are not using our theme and we only support theme developed my us. So, you should consider posting this question in the theme authors support forum.
April 14, 2017 at 7:50 am in reply to: Changing Language in Promotional Headline + Featured Content #113948Sakin
KeymasterHello Anca,
Sorry, for that you need to create
wpml-config.xml
file and use string translation as show in https://polylang.pro/doc/strings-translation/. So, I recommend you to upgrade to pro version where you don’t need to add these functions andwpml-config.xml
.Regards,
SakinApril 6, 2017 at 12:32 pm in reply to: Changing Language in Promotional Headline + Featured Content #113614Sakin
Keymaster@ancageorgescugmail-com: Please copy the code properly. the code you have paste here is different then the one that I gave you.
Sakin
Keymaster@controluce: I check in and went to url http://www.tommasogiorgetti.it/contatti/ and it’s showing just one image.
Sakin
Keymaster@marsha: Thanks for your appreciation and if you like our support and Simple Catch theme, then please support us by providing your valuable review and rating at https://wordpress.org/support/theme/simple-catch/reviews/?filter=5
April 3, 2017 at 12:57 pm in reply to: Changing Language in Promotional Headline + Featured Content #113398Sakin
Keymaster@ancageorgescugmail-com: Sorry there is no easy way to do that except upgrading to pro version. To do this is free version, you need to know little technical details. First, you need to build child theme, for child theme refer to https://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file.
if ( ! function_exists( 'adventurous_poly_invalidcache' ) ) : /** * Template for Clearing Polylang Invalid Cache */ function adventurous_poly_invalidcache() { delete_transient( 'adventurous_post_sliders' ); delete_transient( 'adventurous_page_sliders' ); delete_transient( 'adventurous_category_sliders' ); delete_transient( 'adventurous_image_sliders' ); delete_transient( 'adventurous_homepage_headline' ); delete_transient( 'adventurous_homepage_featured_content' ); delete_transient( 'adventurous_footer_content' ); delete_transient( 'adventurous_footercode' ); delete_transient( 'adventurous_featured_image' ); } // adventurous_wpml_invalidcache endif; add_action( 'after_setup_theme', 'adventurous_poly_invalidcache' );
Sakin
Keymaster@marsha: Thant is default from WordPress code
the_archive_title
function. To remove that, you need to user filter hook. So, first build child theme. For child theme, refer to https://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in child themefunctions.php
file.add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } return $title; });
Sakin
Keymaster@banno2000: Thanks for your appreciation and if you like our support and theme, then please support us by posting your review and rating at https://wordpress.org/support/theme/helena/reviews/?rate=5#new-post
Sakin
Keymaster@olaf-boehmebissantz-de: This looks more of Plugin issue. Can you check in with WPML support at
https://wpml.org/forums/forum/english-support/Sakin
Keymaster@banno2000: Theme has responsive video support from Jetpack plugin. I see that you already have “Jetpack” plugin install. So, don’t embed video like that. Just add in the video URL in your post editor and it will work fine.
Just add like:
https://www.youtube.com/watch?v=dB4kiR4--Uw
Sakin
Keymaster@marsha: Yes, you can go to “Plugins” in your WordPress Dashboard and then deactivate that plugin. But, if you don’t want to deactivate that plugin, then check that plugin font color options and change the color there. This is not from our theme.
Sakin
Keymaster@marsha: I see that you have made changes thorough Easy Google Font Plugin. Also, I don’t understand your question: Do you want to remove that black background in the post title? or Do yo want to add that black baground int eh post title in posts in Frontpage?
Sakin
Keymaster@mtp525: The option to change the header image position is there in Catch Base Pro theme. In Pro version, you will get option “Featured Header Image Position” where you can select from “Before Header / Before Menu / After Menu / After Slider”. You can check out more about additional features in Pro version at https://catchthemes.com/theme-instructions/catch-base-pro
If free version, if you want your logo to be at the top full width then you need to upload logo of at least 1200px width, then add the following css in “Appearance => Customize => Additional CSS”. But this is not recommended way to do it.
#masthead, #masthead .wrapper, #site-branding { padding: 0; }
Sakin
Keymaster@adetoyipeter12gmail-com: Sorry, I just check in your site and see that you are not using theme from Catch Themes. This support forum is only for theme developed by us. Check out our themes at https://catchthemes.com/themes/category/premium/
Sakin
Keymaster@themecatcher: Sorry there is no option in theme to have another slider in different pages. So, in this case you need to use plugin and maybe adjust code by building child theme. As Pratik suggested, please consider hiring a customizer. You can post message from https://catchthemes.com/hire-customizer/.
I check in our system, but sorry we haven’t received any message from your account to hire a customizer. I will send you email with CC to our cuztomizer team.
Sakin
Keymaster@mauryeel: Thanks for your appreciation and if possible would you please submit your review at https://wordpress.org/support/theme/fabulous-fluid/reviews/?filter=5
Thanks 🙂Sakin
Keymaster@mauryeel: Replace the previous css with the following. Make sure, you copy all 4 lines of CSS:
.site-branding { width: 100%; text-align: center; } .site-branding .header-site-details { float: none; padding: 0; } #site-navigation { clear: both; float: none; margin: 0; text-align: center; } #site-navigation ul li { float: none; display: inline-block; }
Then for the title, remove the all caps, you can add the following css:
.site-branding .site-title { text-transform: none; }
Finally for the font size changes, I am not going to change that for mobile. So, you can change the font size in the following css as per your need and add it in “Appearance => Customize => Additional CSS”
@media screen and (min-width: 990px) { .site-branding .site-title { font-size: 28px; } .site-branding .site-description { font-size: 14px; } }
Sakin
Keymaster@mauryeel: For header arrangement, you can add the following css in “Appearance => Customize => Additional CSS”
.site-branding { width: 100%; text-align: center; } .site-branding .header-site-details { display: inline-block; padding: 0; } #site-navigation { clear: both; float: none; margin: 0; text-align: center; } #site-navigation ul li { float: none; display: inline-block; }
About the white background below your header image. That is there from “Featured Content”. I see that, you have activated featured content and use “page featured content”, but you haven’t selected any page to be displayed. So, if you don’t want featured content then just go to “Appearance => Customize => Featured Content” and in “Enable Featured Content on” select “Disabled”. Then the white background will go from there.
Sakin
Keymaster@sshellerina: Now, custom css has been supported by WordPress from version 4.7. So now you can add custom css in “Appearance => Customize => Additional CSS”. What’s not working can you let me know? When I check in your site it working fine.
-
AuthorPosts