Forum Replies Created

Viewing 20 posts - 2,201 through 2,220 (of 14,496 total)
  • Author
    Posts
  • in reply to: Post Didn't Appear on Page #67222
    Sakin
    Keymaster

    @cinta: Can you check your settings at “Appearance => Customize => Theme Options => Homepage / Frontpage Options”, then either select all categories or unselect all.

    in reply to: A couple of questions.. #67221
    Sakin
    Keymaster

    @Stian: Check your settings. Go to “Appearance => Customize => Theme Options => Layout Options” and make sure you have unchecked “Check to hide meta information on archive pages”.

    If you want different page to be your blog. Then first you need to create page from “Pages => Add New” and then assign that page that blog page to “Posts page” from “Appearance => Customize => Static Front Page” and then check in “A static page” and then select that page in “Posts page”.

    To add items as per your need in menu, you need to create custom menu from “Appearance => Menus” and add menu location from “Appearance => Menus => Manage Locations”. For more about custom menu, check out http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: simple catch menu #67220
    Sakin
    Keymaster

    @roche5000: Yes, for that you can add custom menu widget to your sidebar from “Appearance => Widgets”.

    Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #header #mainmenu { display: none; }

    in reply to: Add website made from wordpress into social menu #67219
    Sakin
    Keymaster

    @Pia: That code will not work in Custom CSS. For that, first you need to build child theme. For child theme and sample child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following css in your child theme style.css

    .social-menu ul .visitpingcon a:before {
       content: "\f442";
    }
    in reply to: Menu (color) Menu (on iphone) And one column width #67218
    Sakin
    Keymaster

    @vichewordpress: Thanks a lot 🙂

    in reply to: Enter custom CSS #67217
    Sakin
    Keymaster

    @christiane: Cool that you found it.

    in reply to: Advertisement #67162
    Sakin
    Keymaster

    @Herbie: We don’t have that. We only have Advertisement Widget which you can add it in widgetized area from “Appearance => Widgets”. For shortcodes ads, you can search for plugin and add in.

    in reply to: Post titles options #67161
    Sakin
    Keymaster

    @Herbie: You can hide it by adding the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .entry-meta { display: none; }

    in reply to: Space between site-title and site-description #67160
    Sakin
    Keymaster

    @Guillaume: You can add the margin top for that. So, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #site-description { margin-top: 10px; }

    in reply to: Enter custom CSS #67158
    Sakin
    Keymaster

    @christiane: For this type of functions, either you need to add it by building child theme and adding it in child theme functions.php file or you need to add it from plugin.

    in reply to: ts-frontend-css #67146
    Sakin
    Keymaster

    @Paul: That is generated from plugin. So, check for the plugin which added this file. To check that, you need to deactivate plugin one by one.

    in reply to: header size / Search button #67145
    Sakin
    Keymaster

    @Herbie: Ok then you can add the following css in “Appearance => customize => Theme Options => Custom CSS Optons” box:
    #masthead, #site-branding { padding-top: 0; padding-bottom: 0; }

    Sorry, I don’t see search in your header.

    in reply to: New blog post won't show up on main page #67144
    Sakin
    Keymaster

    @Bobby: Ok then check your settings at “Appearance => Customize => Theme Options => Homepage/Frontpage Options”. In Select Categories, either you need to select or or unselect all to show post from all categories.

    in reply to: New blog post won't show up on main page #67121
    Sakin
    Keymaster

    @Bobby: It is showing in main page. Can you refresh your browser and check in.

    in reply to: Title and H1 – which to remove/how to remove? #67120
    Sakin
    Keymaster

    @219inc: Yes, you are right. If you only want to remove permalink then replace following code
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>

    with the following:
    <h1 class="entry-title"><?php the_title(); ?></h1>

    in reply to: Category Title; Description (Static Text); url #67119
    Sakin
    Keymaster

    You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-title { visibility:hidden; }
    .page-title span { visibility:visible; float: left; }

    Then to remove the category in url, you can use plugin like Yoast SEO and go to “SEO => Advanced => Permalinks” and then click on “Strip the category base (usually /category/) from the category URL.” and save it.

    in reply to: Problem with sidebars and plugins #67118
    Sakin
    Keymaster

    @Deborah: Ok I will check in the issue as soon as possible and update it. Looks like there is issue in options panel.

    in reply to: Widget "Search" to the Top in Mobile View? #67117
    Sakin
    Keymaster

    @Christian: You can add the following css to hide sidebar in mobile view.

    @media screen and (max-width: 960px) {
        #secondary { display: none; }
    }
    in reply to: Header Image won't let me change size #67107
    Sakin
    Keymaster

    @Chris: That is just recommended size, you can upload any size as you like it. Just click on “Don’t Crop”. See this screenshot https://www.pinterest.com/pin/548594798331307420/

    in reply to: Title and H1 – which to remove/how to remove? #67106
    Sakin
    Keymaster

    @219inc: You can hide that by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #content .entry-header { display: none; }

    But if you want to remove it, then you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. You can also download child theme from there. Then you can copy content-page.php file to your child theme and remove the following code:

    <header class="entry-header">
    	<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    </header><!-- .entry-header -->
Viewing 20 posts - 2,201 through 2,220 (of 14,496 total)