Forum Replies Created

Viewing 20 posts - 3,021 through 3,040 (of 4,888 total)
  • Author
    Posts
  • in reply to: "Author" and "updated" missing in pages structured data #97276
    Mahesh
    Member

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

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

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

    @moskito7: Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Member

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

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

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

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

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

    @mayapour: Please post in your site url.

    Regards,
    Mahesh

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

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

    Regards,
    Mahesh

    in reply to: 2 of my Main Menu tabs show Blog Sidebar #97230
    Mahesh
    Member

    @kuczekross: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Large website #97228
    Mahesh
    Member

    @mayapour: Catch Responsive is a boxed layout theme. So the page width in the theme is set to 1200px. For full-width slider, I recommend you to use our other themes like Full Frame, Adventurous, Catch Adaptive etc.
    If you want to make the whole site full-width, you can do it with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .site {
        width: 100%;
    }
    
    #feature-slider .cycle-slideshow {
        max-width: none;
    }

    Note: Please use large images.

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #97226
    Mahesh
    Member

    @catwingz: The problem is because the editor’s content width is defined by the theme so that is match the actual content width of the site. You have now customized the theme by increasing the content width through custom CSS. But the width of editor’s content stayed the same and caused the issue. If you would like to do this level of customization. I recommend you to use the child theme. You can find more details on creating child theme HERE then add the CSS to child theme’s style.css
    And for the editor’s content width, copy editor-style.css file to your child theme and edit and change line 7 to max-width: 860px;
    so it would look like following:

    html .mceContentBody {
        max-width: 860px;
    }

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Problem with Featured Content Layout #97225
    Mahesh
    Member

    @wendy: There are some empty <a> tags there, which is causing the problem. I don’t know where is it coming from in your site. I checked the theme in our sever and had no such issue. Are you using any plugins? If so, try disabling the plugins one by one and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Activate Comments for static page #97224
    Mahesh
    Member

    @sarahf: For displaying blog on static pages, you’ll need to customize a theme a bit. So please use a child theme. You can find more details on creating child theme HERE. Then in your child theme, create front-page.php file and paste the code from the link below:
    http://bit.ly/2aTlONc

    *Remove the “footer” of the blog saying “this blog post was published in uncategorized by (author) permalink”
    -> Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #content footer.entry-meta {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Remove the date #97220
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Activate Comments for static page #97137
    Mahesh
    Member

    @sarahf: Do you mean to show comment section for blog in the front page? Can you please clarify more.

    For showing whole post without Read More link, go to Dashboard=> Appearance=> Customize=> Theme Options=> Content layout and select Show full content option. And for hiding author and date of blog, you can use Custom CSS, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-header .entry-meta {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: "Save and Pubish" doesn't work #97135
    Mahesh
    Member

    @hosefkuhnt: I checked you site and Custom CSS Manager plugin was causing the issue. I deactivated the plugin and try to save the Settings (Promotion Headline) in Customizer and it worked just fine. For now I have re-activated the plugin so your site will be as it is. Please disable that plugin and try for yourself.

    Regards,
    Mahesh

    in reply to: Remove header search box? #97134
    Mahesh
    Member

    @griffith: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-right-search {
        display: none;
    }

    Regards,
    Mahesh

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