Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: page text is highlighted

    #32273

    Link to site?

    Admin

    Throw this code 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.' => 'This site does not have Super Cow power!',
    );
    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 );

    Obviously, change the text This site does not have Super Cow power! to whatever text you want to put there.

    Admin

    In reply to: Verification Codings in header

    #32257

    Marking thread as resolved. You can do this yourself as well.

    Admin

    In reply to: Menu help

    #32223

    Try setting a value of 200 in Graphene Options > Display > Navigation Menu Options > Dropdown menu width.

    Btw, always make sure that you describe your issue with enough detail for us to know what the problem is. Just simply saying something is not working or you’re having problem does not help much. Always explain in what way is it not working, or what exactly is the problem you’re having.

    Admin

    In reply to: Changes added to child theme do not work

    #32244

    Moved to Support. Please post in the correct section next time.

    What changes did you make to your child theme?

    Admin
    Admin

    In reply to: Front page not loading collum right

    #32131

    Your website’s HTML code stopped right after the comment section. Try setting WP_DEBUG to true in the wp-config.php file and see what error message comes up.

    Admin

    In reply to: Reducing the Load Time

    #32110
    Quote:
    The question is, how do I fix it?

    It’s not really “fixing”, since nothing is really broken. And there’s no simple answer to that question. You’re staring down the path of website performance optimisation, which is a subject in and of itself, totally separate from website customisation.

    Often the practice of optimising a website’s performance requires technical knowledge. Even installing plugins like the one Prasanna mentioned could actually make things worse for your site, if you don’t know how to properly configure it. Even some of the low-hanging fruits, like installing the WP Minify plugin to combine and minify your CSS and JS files to reduce the number of requests on every page load, often require you to at least have an idea on how to troubleshoot if the combining/minifying process didn’t go smoothly, which is not unusual.

    But of course, if you’re happy with your site in terms of customisation and content at the moment, by all means go explore that path. It’s not easy, but the results will be well worth it.

    Admin

    In reply to: Slider feature request

    #30654

    It’s the 0.8 in this bit:

    .bgimage-excerpt .slider-entry-wrap {
    background: rgba(256,256,256,0.8);
    }

    It only works in modern browsers though. If you want to make it work for IE8 and older, see this page:

    http://www.quirksmode.org/css/opacity.html

    Admin

    In reply to: Slider width and white borders

    #31006

    Oops.. the px shouldn’t be in there:

    function graphene_custom_slider_image_width(){
    return 960;
    }
    add_filter( 'graphene_slider_image_width', 'graphene_custom_slider_image_width' );

    But, Graphene 1.8 already has an option to extend the slider to the full width of the site, so you don’t need to do the above anymore.

Viewing 10 posts - 2,771 through 2,780 (of 6,030 total)