Forum Replies Created
-
AuthorPosts
-
Mahesh
MemberHi @Kenta,
For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.php, add the following codes./** * Adding tags in header_meta * */ function adventurous_header_meta() { $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'adventurous' ), get_the_author() ) ), get_the_author() ); // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'adventurous' ) ); // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. if ( $tag_list ) { $utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span> | </span><span class="in-tag">Tagged %3$s</span>', 'adventurous' ); }else{ // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. $utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' ); } printf( $utility_text, $date, $author, $tag_list ); }Regards,
MaheshJanuary 31, 2016 at 10:56 am in reply to: URGENT: After Reactivating Original Theme After Child Theme — LOST WORK #84215Mahesh
MemberHi @pal_coche,
This has been an issue with the WordPress’s customizer. When a child theme used, it doesn’t inherit the settings from the parent theme and vice versa. The issue you are facing now is the same. Now what can be done is, create a child theme and activate it, you’ll get all your settings back and if you want to switch to the parent theme then you need to move all the settings that were changed in the child theme one by one by setting it again in the parent theme manually. There hasn’t been any alternative for this yet.
Regards,
MaheshMahesh
MemberHi @Anton,
For zoom on hover in slider, go to “Dashoboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#feature-slider .slider-image a img { transition: all .3s ease-in-out; } #feature-slider .slider-image a:hover img { transform: scale(1.1); } #feature-slider .slider-image { max-height: 513px; overflow: hidden; }Regards,
MaheshMahesh
MemberHi @jie66,
Hope you are good. Just to let you know that Catch Box 4.3 is live now. Please update to the latest version. “Continue Reading” translation is fixed now.
Regards.
MaheshMahesh
MemberHi @Loudmind,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#feature-slider .slider-image img{ width: 100%; }Regards,
MaheshMahesh
MemberHi @Sharon,
No, we didn’t mean you to ignore any test of your website. We just tested the same with the demo and showed you the result.
Yes, it would be better to have your web url, please post it in.Regards,
MaheshMahesh
MemberHi @Shana Shanti,
Have you made any changes to the code? The feature is not available in free version, only in pro version. Even if the feature was removed in upgrade (which is not), featured image should go away for the previous posts as well. In your site, previous post is showing featured image but latter is not.
Let me know if I can help you further.
Regards,
MaheshMahesh
MemberHi @Jos,
We are not sure about that.
They do provide support.
Please visit the link: https://wordpress.org/support/plugin/page-builder-sandwichMahesh
MemberHi Carina,
Hope you’ve followed the instruction as in the site for creating child theme. And where have you uploaded the Child theme folder in the server? It should be in “Your site’s WordPress Installation Folder/wp-content/themes/”. What do you see in the Themes pages? Is there any mentioning of broken themes or something like that?
Regards,
MaheshMahesh
MemberMahesh
MemberHi @Jos,
Okay, I’ve forwarded the issue to our technical team and they will deal with it. We’ll be contact you if any problem.
Regards,
MaheshMahesh
MemberMahesh
MemberHi @rflores,
We’ll need to check the code and need the admin access for it. We will soon contact you through email.
Regards,
MaheshMahesh
MemberHi @Raielene,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
.featured-slider a:hover img.wp-post-image { opacity: 0.7; }Note: Please change value for opacity as per required. Default value is 0.9.
Regards,
MaheshMahesh
MemberHi @Elyunn,
Yes, this can be achieved with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#masthead { padding-top: 0; padding-bottom: 10px; } #site-branding { padding: 0 20px; } .sidebar.sidebar-header-right.widget-area{ padding: 0 20px; }Regards,
MaheshMahesh
MemberHi @Jos,
If you have already purchased Catch Responsive Pro, you can download it from My Account page.
http://catchthemes.com/my-account/Regards,
MaheshMahesh
MemberHi @rebzuleger,
It seems you are using Catch Responsive Free version. The feature you’re seeking is available in Catch Responsive Pro version. I recommend you to upgrade to Pro version.
Regards,
MaheshMahesh
MemberHi @Sharon,
Catch Evolution is a responsive theme. We also performed “Google Mobile-Friendly Test” and result is “Awesome! This page is mobile-friendly.” We checked it with our demo (Catch Evolution Pro). Both Catch Evolution and Catch Evolution Pro has same CSS.
Link to Catch Evolution Pro demo: http://catchthemes.com/demo/catch-evolutionRegards,
Mahesh -
AuthorPosts
