Forum Replies Created

Viewing 20 posts - 1,901 through 1,920 (of 2,006 total)
  • Author
    Posts
  • in reply to: How to change the word "menu" in mobile version #82225
    Pratik
    Member

    HI @emree025,
    Can you try to use ü instead of that character. It should work.

    in reply to: White Space in between post title and post #82119
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: Mobile version #82118
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: White Space in between post title and post #82104
    Pratik
    Member
    in reply to: Mobile version #82103
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: Recommended shopping cart plug in for Catch Responsive Pro #82102
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: Round image widget not round #82101
    Pratik
    Member

    Hi @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.

    in reply to: Removing main menu in Catch Everest FREE theme #81888
    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,
    Pratik

    in reply to: changing catchresponsive_entry_meta in "single" view #81870
    Pratik
    Member

    Hi,
    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,
    Pratik

    in reply to: Removing main menu in Catch Everest FREE theme #81868
    Pratik
    Member

    hi @adinnung,
    I will try to check if there is anything wrong. Sorry for the inconvenience.

    Regards,
    Pratik

    in reply to: widget alignment in sidebar #81824
    Pratik
    Member

    Hi @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

    in reply to: Limit Page wide to 1150px #81810
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: How to change the word "menu" in mobile version #81807
    Pratik
    Member

    Hi @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.

    in reply to: Limit Page wide to 1150px #81770
    Pratik
    Member

    Hi @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,
    Pratik

    in reply to: Limit Page wide to 1150px #81769
    Pratik
    Member

    Hi @Frank,
    I will need your site url for this.

    in reply to: Use 1 Header-Image on frontpage instead of slider #81768
    Pratik
    Member

    Hi @Frank,
    Can you please post in your site url?

    in reply to: Removing main menu in Catch Everest FREE theme #81767
    Pratik
    Member

    Hi @adunning,
    Please post in your site url.

    in reply to: sidebar is under content due to woocommerce #81750
    Pratik
    Member

    Hi @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#postform

    in reply to: sidebar is under content due to woocommerce #81724
    Pratik
    Member
    
    Hi @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.

    in reply to: Removing main menu in Catch Everest FREE theme #81723
    Pratik
    Member

    Hi @adunning,
    Add following code in Appearance=> Theme Options => Custom CSS box:

    
    #access {
    display: none;
    }
    

    This will hide the Primary Menu. Let me know if this works or not.

    Regards,
    Pratik

Viewing 20 posts - 1,901 through 1,920 (of 2,006 total)