Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: How to exclude single Category when swipe to next post

    #46190

    Not at the moment, but we’ll add this feature in the next update.

    Admin

    In reply to: Disqus comments count

    #46191

    The front page counts the comments in the WordPress database. Make sure you enable “Comment importing” in Disqus settings, which will sync the comments on Disqus with your site’s database. This happens periodically though, so new comments won’t be reflected immediately in the comment count.

    Admin

    In reply to: Site logo in "Franz Josef"

    #46188

    Please provide a link to your site so that we can take a look. Thanks.

    Admin

    In reply to: Stacks css classes not working for widgets

    #46177

    Hi Gendji,

    Thanks for the report. We are currently working on the fix and will make it available in the next update.

    Admin

    In reply to: Bbpress submit reply very often doesnt work

    #46169

    Thanks for the test user account.

    In order to narrow down the issue and rule out plugins conflict, can you try to deactivate all the plugins, except the ones used for GM Neo and bbPress?

    Admin

    In reply to: Disable continue reading button

    #46120

    The easiest would be to hide it using CSS. Enter this code in the theme’s Custom CSS option:

    .archive .entry-footer .more-link {
    display: none;
    }
    Admin

    In reply to: Featured Image thumbnail for post is cropping

    #46157

    You can specify the size to be used as an argument to the the_post_thumbnail() function:

    <?php the_post_thumbnail( 'full' ); ?>
    Admin

    In reply to: Bbpress submit reply very often doesnt work

    #46167

    Hi trehesten,

    Can you provide us with a testing account on the forum so that we can investigate this further? It would also be helpful if you can list down specific steps to reproduce the issue.

    Let me know and thanks!

    Admin

    In reply to: Highlight active current section

    #46170

    This is beyond the scope of this support forum, but generally you would need to write custom javascript codes that achieve something like this:

    1. Remove .current-menu.item class from the active menu.
    2. Detect the current scroll position of the page.
    3. Add the .current-menu-item class to the menu item that corresponds to the anchor at the current scroll position of the page.
    Admin

    In reply to: Centering the header

    #46171

    Add this to the theme’s Custom CSS feature:

    @media (min-width: 992px) {
    .navbar-header {
    float: none;
    line-height: 50px;
    }
    .navbar-header .site-title {
    text-align: center;
    margin-top: 10px;
    }
    .navbar-header .site-title img {
    display: inline-block;
    }
    .header .navbar-right {
    float: none !important;
    text-align: center;
    }
    .navbar-nav > li {
    float: none;
    display: inline-block;
    }
    .header .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 5px;
    }
    }

Viewing 10 posts - 941 through 950 (of 6,030 total)