Forum Replies Created

Viewing 20 posts - 3,021 through 3,040 (of 4,908 total)
  • Author
    Posts
  • in reply to: stop scrolling on header and main nav #97390
    Mahesh
    Participant

    @hidemyage: Have you changed your site’s design, it looks a bit different that what it looked before. May be the image wasn’t displaying before. Any way, please use the following CSS instead.

    @media screen and (min-width: 941px) {
        #branding {
            position: fixed;
            z-index: 10;
            margin: 0 auto;
            left: 0;
            right: 0;
        }
    
        #header-menu {
    	position: fixed;
    	z-index: 5;
            margin: 0 auto;
            left: 0;
            right: 0;
            top: 161px
        }
        #main-wrapper {
            margin-top: 217px;
        }
    }

    Let me know further.

    Regards,
    Mahesh

    in reply to: Activate Comments for static page #97389
    Mahesh
    Participant

    @sarahf: In the example site you’ve mentioned above, it is using the static page with no blog posts. Do you want the same? If so, go to Dashboard=> Appearance=> Customize=> Static Front Page and select Static front page in Front page displays option then choose desired page in Front page you want to display as home page and a blog page in Posts page.
    Then go to Dashboard=> Pages and edit the page you’ve selected as Front page. On the edit page there is a button Screen Options on the left upper section beside Help, click it so some option slides down then check on Discussion option. Then scroll down to find display tab below content area and check on Allow comments option and click Update.
    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: 2 of my Main Menu tabs show Blog Sidebar #97331
    Mahesh
    Participant

    @kuczekross: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: HTML Template #97330
    Mahesh
    Participant

    @mmhgloba: I don’t quite get what you mean. Can you please clarify more.

    Regards,
    Mahesh

    in reply to: Remove the date #97329
    Mahesh
    Participant

    @mauitheatre: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Remove the date #97320
    Mahesh
    Participant

    @mauitheatre: For hiding date in featured content, you’ll need to add the following custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #featured-content .meta-info {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Remove the date #97313
    Mahesh
    Participant

    @mauitheatre: Please post in your site url so that I could help you further.

    Regards,
    Mahesh

    in reply to: "Author" and "updated" missing in pages structured data #97311
    Mahesh
    Participant

    @warmmastering: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: 2 of my Main Menu tabs show Blog Sidebar #97310
    Mahesh
    Participant

    @kuczekross: If that’s the case, forget the code above I’ve given above. This can be managed through the metabox in post within the theme itself. Go to the Dashboard=> Posts and edit this post, then scroll down to Gridalicious Options and chose No Sidebar (Content Width) option in Layout Option and then click Update. Do the same for the post you want like this.
    Note: If default layout is set here then it will use the layout you’ve set in Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options‘s Default Layout. This options gives you freedom to choose between different layout for different pages and posts.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: "Author" and "updated" missing in pages structured data #97276
    Mahesh
    Participant

    @warmmastering: Basically, these data are displayed for post only not for pages so the theme doesn’t include it. But if you do want to have it in pages anyway, it can be done with some customization. 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 create a new file content-page.php and add the following code into it and save it.

    <?php
    /**
     * The template used for displaying page content in page.php
     *
     * @package Catch Themes
     * @subpackage Gridalicious
     * @since Gridalicious 0.1
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	<?php
    	/**
    	 * gridalicious_before_page_container hook
    	 *
    	 * @hooked gridalicious_single_content_image - 10
    	 */
    	do_action( 'gridalicious_before_page_container' ); ?>
    	<div class="entry-container">
    		<header class="entry-header">
    			<h1 class="entry-title"><?php the_title(); ?></h1>
    
    			<?php gridalicious_entry_meta(); ?>
    		</header><!-- .entry-header -->
    
    		<div class="entry-content">
    			<?php the_content(); ?>
    			<?php
    				wp_link_pages( array(
    					'before' => '<div class="page-links"><span class="pages">' . __( 'Pages:', 'gridalicious' ) . '</span>',
    					'after'  => '</div>',
    					'link_before' 	=> '<span>',
                        'link_after'   	=> '</span>',
    				) );
    			?>
    		</div><!-- .entry-content -->
    		<?php edit_post_link( __( 'Edit', 'gridalicious' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>' ); ?>
    	</div><!-- .entry-container -->
    </article><!-- #post-## -->

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: "Save and Pubish" doesn't work #97275
    Mahesh
    Participant

    @josefkuhnt: May be some bug with the plugin itself. Whenever the plugin is activated it gives 500 error. Please contact the plugin support.

    Regards,
    Mahesh

    in reply to: Remove title only on homepage #97274
    Mahesh
    Participant

    @moskito7: Can you please post an image for reference so I can help you further.

    Regards,
    Mahesh

    in reply to: Remove title only on homepage #97265
    Mahesh
    Participant

    @moskito7: Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Participant

    @bashstreet: Thank you for using Catch Base Pro theme. The issue is because you are using static front page and blog page is set to Newsletter page. So for displaying blog list in homepage instead, go to Dashboard=> Appearance=> Customize=> Static Front Page and select Your latest posts option in Front Page Displays.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #97263
    Mahesh
    Participant

    @catwingz: Glad to know. Thank you for your appreciation. If you like my support and Catch Flames theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-flames?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Large website #97262
    Mahesh
    Participant

    @mayapour: It seems, you are using a plugin called “Vignette” which is causing the issue. Please disable the plugin to fix the issue.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: 2 of my Main Menu tabs show Blog Sidebar #97261
    Mahesh
    Participant

    @kuczekross: Seems the sidebar is only displaying on the blog page. All other pages is using No Sidebar (Content Width). Its strange, how your blog cateogry page is displaying sidebar. If you do want to make the blog page same layout, you can use the custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Optoins=> Custom CSS box and add the following CSS:

    .archive.category-blog #main {
        display: block;
        float: none;
        margin: 0 auto;
        width: 820px;
    }
    .archive.category-blog .sidebar-primary {
        display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: 2 of my Main Menu tabs show Blog Sidebar #97238
    Mahesh
    Participant

    @kuczekross: I just checked your site and seems you are using No Sidebar (Content Width) as the default layout. All other pages are displaying with that particular layout and not the category page. This is kinda strange. I checked for the same on our server and had no such issue. Are you using any plugin? If so, try disabling the plugins and check if that resolves the problem.

    Let me know further.

    Regards,
    Mahesh

    in reply to: Large website #97237
    Mahesh
    Participant

    @mayapour: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Make "featured content" Categories rather than pages #97232
    Mahesh
    Participant

    @maxxbogner1988: Yes, and it includes other more options. Please check https://catchthemes.com/themes/full-frame-pro/

    Regards,
    Mahesh

Viewing 20 posts - 3,021 through 3,040 (of 4,908 total)