Forum Replies Created
-
AuthorPosts
-
December 27, 2015 at 7:11 pm in reply to: changing catchresponsive_entry_meta in "single" view #81722
Pratik
Memberhi @Alexandre,
I thought you wanted the meta to be only shown on single page and not index pages?Pratik
MemberHi @emree025,
If you check the link I gave you for child themes, near the bottom of the post, there are sample child themes. If you get the one for Catch box, it will have a functions.php file. Then just paste that function and change the text as I mentioned in the lines. Easier way would be to upgrade to pro. Pro theme has these options.Pratik
MemberHi @JurgenDoe,
About the Font issue, can you let me know which font you want to use, maybe then I can provide you correct CSS.Pratik
MemberHi @Keith,
I am sorry as there is no other way to embed something from other source. You can also use<object>and<embed>but the results will be the same, i.e. you wont be able to edit the contents of the source. You can check the answer hereA bit advanced answer would be for you to get the video url and display it using html, but the source that you are using should give you the video url and permissions to access it. This is a bit tough as you need to know quite a bit about html5, server Post Messages, and even a bit of jQuery Plugin if you want to make video work in past browsers like old Internet Explorer version as well.
Hope I made the answer clear. Please feel free to ask again if this is not sufficiently described.
Regards,
PratikPratik
MemberHi @JurgenDoe,
You have the option to change font family in Simple Catch Pro Version. However, in free version, you will need to add following CSS code in Appearance=> Customize=> Theme Options=> Custom CSS Box:#site-title { font-family: "Arial Black", Gadget, sans-serif; }You can change the font family to any one you desire. Here, I have kept Arial Black As Font.
To remove sidebars on only those pages, you can follow steps below:
1. Edit the required page from Dashboard.
2. On the page’s edit page, there is a Select Sidebar Layout Metabox near the bottom of the page.
3. In that, Select the layout with no sidebar: Either No Sidebar or No Sidebar, Full Width
Here is a screenshot: ScreenshotPratik
MemberPratik
MemberHi @Bandit,
Please try following code:#secondary-menu { font-size: 20px; }Again, pleas post in your site url if this does not work.
Pratik
MemberHi @JurgenDoe,
Thanks for using Simple Catch and sorry for the inconvenience caused to you.
Your image has two issues so I will assist you as follows:
1. The text in the top is not logo but text. It is your main site title. You can change the text from two places, through Appearance=> Customize => Site Identity => Site Title or Settings=> General Settings=> Site Title. The first option will show you live preview.
2. Continue Reading a &rarr: About This is a known issue and will be fixed on next version update. For now, can you try changing it from Appearance=> Theme Options => Excerpt / More Tag Settings =>More Tag Text and it should work.Let me know if this solves your issue or not.
Regard,
PratikPratik
MemberHi @Bandit,
Do not edit the core css files. We have given a feature Custom CSS for changing any custom CSS.
It would be better if you could have given your site link but I think following code will work.Goto Appearance=> Customize=> Theme Options=> Custom CSS and add following code:
#access { font-size: 20px; }Then click on Save & Publish button.
You can increase or decrease 20px to have same effect on the display.
Let me know if this solves your issue or not. If it does not, please post in your site url.
December 26, 2015 at 8:30 am in reply to: changing catchresponsive_entry_meta in "single" view #81684Pratik
MemberHi @Alexandre,
Yes, all the customization has to be made via Child Theme.To achieve what you want, you can follow the steps below:
1. You will need to create a child theme for Catch Responsive Pro. Its details can be found here. (Just download your respective Child Theme from Samples newr the bottom of the post)
2. Then you can past this code in your child theme’s functions.php/** * Prints HTML with meta information for the current post-date/time and author. * * @since Catch Responsive 1.0 */ function catchresponsive_entry_meta() { if( !is_single() ) { //Bail early if it is not a post page return; } echo '<p class="entry-meta">'; $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>', sprintf( _x( '<span class="screen-reader-text">Posted on</span>', 'Used before publish date.', 'catch-responsive' ) ), esc_url( get_permalink() ), $time_string ); if ( is_singular() || is_multi_author() ) { printf( '<span class="byline"><span class="author vcard">%1$s<a class="url fn n" href="%2$s">%3$s</a></span></span>', sprintf( _x( '<span class="screen-reader-text">Author</span>', 'Used before post author name.', 'catch-responsive' ) ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ); } if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) { echo '<span class="comments-link">'; comments_popup_link( esc_html__( 'Leave a comment', 'catch-responsive' ), esc_html__( '1 Comment', 'catch-responsive' ), esc_html__( '% Comments', 'catch-responsive' ) ); echo '</span>'; } edit_post_link( esc_html__( 'Edit', 'catch-responsive' ), '<span class="edit-link">', '</span>' ); echo '</p><!-- .entry-meta -->'; }The code on the top of function is the addition that does the work you desire. Let me know if this works out or not.
Pratik
MemberHi @emree025,
This option is not available in free version but is available in Catch Box Pro version.If you want to do it in a free version, you need to do a bit of customization via Child theme. Follow following instructions:
1. You will need to create a child theme for Catch Box. Its details can be found here
2. If you go through theme file catch-box-pro/inc/catchbox-menus.php file, you can find functions named catchbox_mobile_header_nav_anchor() and catchbox_mobile_footer_nav_anchor().
3. You can copy and paste these functions in your child theme’s functions.php and make the modifications in this the lines 218, 232 and 259 (with reference to the original file). The three lines are for Primary Menu, Secondary Menu and Footer Menu respectively.This will work if you do it properly. Hope this helps. Let me know how things work out.
Pratik
MemberHi @adunning,
Sorry for late reply. You can create a different post for your issue with a ref link to this post.About the issue, Catch IDs will work fine till WordPress version 4.4 on all themes.
Pratik
MemberHi @Julie,
Thanks for using Catch Everest Pro. The mountain image you are referring to must be from the slider. So to change that, you can follow the instructions here and look at Featured Slider section (Just do a Ctrl + F search with Featured Slider on that page). The instructions should be clear but if you still have problems, please let me know and I will assist you further.
Pratik
MemberHi @Kieth,
I think this theme is Catch Box Pro rather than Catch Base Pro. However, since the video is added via iframe, the Custom CSS will not work on it. CSS will not work on cross domain.
Pratik
MemberHi @Keith,
It looks like you are using Catch Box Pro Theme but posted it in Catch Base Pro Forum. No worries though. I am leaving this one for @Sakin. He will answer this as it looks like it is a bit tough issue.Pratik
MemberHi @whatmoviethisweek,
You have added some Custom CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box. If you remove those, i.e. following code, then this error will go away.
#secondary { width: 22%; } #primary { width: 100%; } #content { width: 68%; }Let me know if this solves your issue or not.
December 19, 2015 at 8:12 pm in reply to: problem with featured content after updating to 4.4 virsion #81395Pratik
Memberhi @adamsh,
The option is working fine in our servers. Can you change other options and let me know if they are being changed? Also, please post in your site url so I can check it.
Pratik
MemberHi @Bram,
Assuming that you want the search icon same color as other menu items, use following code in “Appearance=> Theme Options=> Custom CSS”:/* Change Search Button Color */ #header-search { color: #fff; } /* Change Search Button Hover Color */ #header-search:hover { color: #5d91bf; } /* Change Header Right Border Top */ #header-right .header-search-wrap { border-top: 3px solid #5d91bf; }You can change the hex color values to any other color it you like.
Let me know if this helps.
-
AuthorPosts
