Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    Try adding this code to the top of the graphene_get_comment_count() function in the theme’s includes/theme-comments.php file and see if the error is still showing up:

    if ( ! get_the_ID() ) return;
    Admin

    In reply to: Padding/margin Graphene_before_post_content ads

    #37911

    Try adding this to the theme’s Custom CSS option:

    .header-widget-area .widget_text {
    background: none;
    }
    .header-widget-area .text_widget {
    margin: 0;
    }
    .entry-content .mgraphene-dynamic-widget {
    margin-left: -10px;
    overflow: visible.
    }
    Admin

    In reply to: Border around header image in IE and Chrome

    #38913

    Add this to your child theme’s style.css file:

    .header-img {
    display: none;
    }
    Admin

    In reply to: How to remove from shrinking menu titles when clicked

    #38908

    Add this to the theme’s Custom CSS option:

    #header-menu > li > a > .dojodigital_toggle_title {
    font-size: 18px;
    }
    Admin

    In reply to: How to give Theme credit in footer

    #38896

    Insert this into your child theme’s functions.php file:

    function graphene_filter_gettext( $translated, $original, $domain ) {
    $strings = array(
    'Powered by %1$s and the %2$s.' => '%2$s',
    );
    if ( ! empty( $strings[$original] ) ) {
    $translations = &get_translations_for_domain( $domain );
    $translated = $translations->translate( $strings[$original] );
    }
    return $translated;
    }
    add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
    Admin
    Admin

    In reply to: How to enable comments on certain pages

    #38872
    Quote:
    I am wondering if I might have deleted the code for allowing a comment box in the Editor when I was first setting up my site and trying to get rid of the comment box on the home page (I now know that this is a BIG no no!!). Is there any way to find the deleted code and add this code back in? my site is http://www.moash.org if that helps. I am trying to create a few pages that allow comments, as well as try to start a blog that will allow comments.

    Did you mean you deleted code from WordPress itself? If yes then just reinstall WordPress again.

    Admin

    In reply to: Padding/margin Graphene_before_post_content ads

    #37909

    Which page exactly on that site? There’s ads in the homepage and also in individual posts.

    Admin

    Then you’ll have to write the custom codes yourself. Not much different than using a plugin.

    Admin

    In reply to: pop up page?

    #38803

    Basically, you can do this using many of the Lightbox-type scripts. You will need to write custom codes implement those scripts to do what you want.

Viewing 10 posts - 1,821 through 1,830 (of 6,030 total)