Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi @sailgoldshell,
No need to post it again. For Future reference, the forum for Simple Catch is here.About the empty space, it is because there is an empty <p> tag between the title and the image. It may have been there because and extra “enter” while editing the text. Just find the space in the editor and delete it, it will be removed.
Let me know how things work out.
Regards,
PratikPratik
MemberHi @RobertB,
I will point out a few things:
1. The error is due to line 2946 in your style.css, which is as follows:#site-branding, #main, #content_sidebar_wrap, #content_sidebar_wrap #main, .sidebar-primary { width: 50%; }This should be as follows, and this issue will go away:
#site-branding, #main, #content_sidebar_wrap, #content_sidebar_wrap #main, .sidebar-primary { width: 100%; }2. You should never edit the main theme files. If you do this, all changes will be lost on updating the theme.
If you want to change the CSS, you can simply go to “Appearance=> Customize=> Theme Options=> Custom CSS” box and add in new CSS if they are a few. This will override the original CSS.
If there is a lot of CSS to be changed, it should be done via child theme. The details on child theme is here.
Let me know if things work out or not.
Regards,
PratikPratik
MemberHi @sailgoldshell,
I checked your site and the theme is Simple Catch and not Catch Base.Further, I checked following links and did not find the whitespace issue.
- http://www.sailinghound.com/2015/12/hf-weather-fax-ais-receiver-noaa.html
- http://www.sailinghound.com/2015/12/introduction-and-our-plan-of-sailing.html
- http://www.sailinghound.com/2015/12/one-easy-task-easilly-turns-into.html
- http://www.sailinghound.com/2015/12/restoration-of-teak-handrails-on.html
- http://www.sailinghound.com/2015/11/antiquated-wind-speed-depth-and-compass.html
- http://www.sailinghound.com/2015/11/its-sad-day-when-sailboat-is-tucked.html
- http://www.sailinghound.com/2015/11/veterans-day-is-more-then-just-day-off.html
- http://www.sailinghound.com/2015/11/replacing-antiquenon-functioning-manua.html
It will be better if you could post in a few posts with the issues.
Regards,
PratikPratik
MemberHi @RobertB,
Assuming discoveryarcade.com is your site, is it possible to view the site, as currently it asks for password.Also, can you check Clean Journal Demo and let me know if the problem persists there too?
Regards,
PratikJanuary 3, 2016 at 9:20 am in reply to: Recommended shopping cart plug in for Catch Responsive Pro #82102Pratik
MemberHi @Brook,
For Catch Responsive Pro, WooCommerce Plugin is recommended for e-commerce solutions. Just install the Plugin and go through their installation guide/setup and it should work.Let me know if there is anything else.
Regards,
PratikPratik
MemberHi @Into Explorer,
Thank you for using Catch Box. Although a Site URL will be good, this is a plugin related issue, so it is better to ask for support on the plugin support forum rather than here.If you want to try a different plugin, you can search for it in WP.org Plugins repo.
Pratik
Member@Sakin: Thanks.
@adunning: There is a mistake in your Custom CSS because of an extra ” near the top. Just replace all codes in “Custom CSS” box with following (just edited your current content, with a slight edit):#main-slider .entry-container { display: none; } #footer-sidebar { background-color: #FF9999; } .site { margin: 0 auto; } /* Hide Primary Menu */ #header-menu { display: none; } /* For Site Title */ #site-title { font-size: 52px; font-family: sans-serif,Arial; } /* For Site Tagline */ #site-description { font-size: 20px; font-family: sans-serif,Arial; }Let me know if this works or not.
Regards,
PratikDecember 30, 2015 at 9:00 am in reply to: changing catchresponsive_entry_meta in "single" view #81870Pratik
MemberHi,
Ok, same steps need to be followed, but with exception to the function. Use following code instead:/** * 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() ) { //Meta info for single page 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 -->'; } else { //Meta for pages other than single 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 -->'; } }You need just a bit of programming knowledge for this though. There are two blocks, if and else. The if block (With comment //Meta info for single page) will be used for single view and the else block(With comment //Meta for pages other than single) will be used for index views. Just edit those blocks.
Let me know how it goes.
Regards,
PratikPratik
Memberhi @adinnung,
I will try to check if there is anything wrong. Sorry for the inconvenience.Regards,
PratikPratik
MemberHi @whatmoviethisweek,
Great to know. If you like our support and Catch Box theme then please support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-box?rate=5#postform
Pratik
MemberHi @Frank,
This looks a bit hard to do as all the Responsive design will suffer. I will tag @Sakin. Maybe he can come up with a better solution.Regards,
PratikPratik
MemberHi @emree025,
Since you only use Primary Menu, add following function below the existing code in functions.php:/** * This function loads Mobile Menus Anchor in Header Section * * @get the data value from theme options * @uses catchbox_after_headercontent action to add in the Header */ function catchbox_mobile_header_nav_anchor() { //Getting Ready to load options data $options = catchbox_get_theme_options(); // Header Left Mobile Menu Anchor if ( has_nav_menu( 'primary' ) ) { $classes = "mobile-menu-anchor primary-menu"; } else { $classes = "mobile-menu-anchor page-menu"; } ?> <div class="menu-access-wrap clearfix"> <div id="mobile-header-left-menu" class="<?php echo $classes; ?>"> <a href="#mobile-header-left-nav" id="header-left-menu" class="genericon genericon-menu"> <span class="mobile-menu-text"><?php _e( 'Alternate Primary Menu Text', 'catch-box' );?></span> </a> </div><!-- #mobile-header-menu --> <?php if ( ( !empty ( $options ['enable_menus'] ) && has_nav_menu( 'secondary' ) ) ) { $classes = "mobile-menu-anchor secondary-menu"; } else { return; } ?> <div id="mobile-header-right-menu" class="<?php echo $classes; ?>"> <a href="#mobile-header-right-nav" id="header-right-menu" class="genericon genericon-menu"> <span class="mobile-menu-text"><?php _e( 'Secondary Menu', 'catch-box' );?></span> </a> </div><!-- #mobile-header-menu --> </div><!-- .menu-access-wrap --> <?php }In above code, you will find Alternate Primary Menu Text. Change this to your desired text.
Pratik
MemberHi @Frank,
This is a duplicate post of http://catchthemes.com/support-forum/topic/limit-page-wide-to-1150px, so I am ignoring this one.Regards,
PratikPratik
MemberHi @minion,
I am glad it worked out. If you liked our theme and support, please support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postformPratik
MemberHi @minion, Catch Responsive Free version is not WooCommerce Ready. The pro version is. However, it looks like you have customized your page a bit and it has a few issues. The first one is that the page has two div with id content. And you have a container div, which in not there by default. Add the code below in "Appearance=> Customizer=> Theme Options=> Custom CSS" and it should work.#container .products {
width: 100%
}
#content #container {
float: left;
width: 820px;
}
`If this does not work, you will need to revert to the original classes and content and it will work, otherwise, you will need to hire a customizer.
-
AuthorPosts
