Syahir Hakim

Keymaster

Forum Replies Created

  • Admin
    function graphene_filter_gettext( $translated, $original, $domain ) {
    $strings = array(
    'Category Archive: <span>%s</span>' => '<span>%s</span>',
    '%1$s Archive: %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

    In reply to: Add a custom action-hook in a child-theme?

    #30729

    What about just using the graphene_adsense hook? It’s in includes/theme-loop.php.

    Admin

    In reply to: My edit page has gone wonky

    #30767

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

    As for your issue, try going to Graphene Options > Display > Column Width Options, delete all the width values in that option box and save the settings.

    Admin

    In reply to: Three items on homepage panes

    #30481

    Try this:

    .homepage_pane {
    margin: 20px 10px 15px !important;
    }
    .homepage_panes .alpha {
    clear: none;
    }
    .homepage_panes .omega {
    float: left;
    margin-right: 10px;
    }
    #container .two-columns .homepage_pane {
    width: 30% !important;
    }

    You might also need to set a fixed height for the panes.

    Admin

    In reply to: Graphene Mobile

    #30716

    If you’re using Graphene theme, you don’t need to add code to anything, it has already been taken care of for you.

    Admin

    In reply to: Front page posts categories setting not working?

    #30690

    I just tried the feature on my local dev server and it’s working properly. Try turning on WP_DEBUG to see if there’s any error notices being thrown out?

    Admin

    In reply to: Only get Post title when trying to read whole post

    #30692

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

    As for your issue, it seems that the page stops loading right after this block of code:

    <script type="text/javascript">
    function dtauthorpe(){
    var productElement = document.getElementById("dtauthor_tracking");
    if (productElement == null)
    {
    document.getElementById("authorprofilebox").innerHTML = " ";
    }
    }
    </script>
    <script type="text/javascript">
    function dtpixell(){
    var productElement = document.getElementById("dtpixell");
    if (productElement == null)
    {
    document.getElementById("authorprofilebox").innerHTML = " ";
    }
    }
    </script>

    It might have been added by a plugin that you use, so try turning off all plugins and see if the issue is resolved. Otherwise, open your site’s wp-config.php file and change the value for WP_DEBUG from false to true so that error notices are displayed on the site.

    Admin

    In reply to: sitemile with Graphene integration ?

    #30688

    That Auction theme is a theme, so no, there’s no easy way you can use it with a Graphene theme, since you can’t use two completely separate and different themes and simply join them together. You will have to port over all the auction features from the auction theme into Graphene theme, which is what they’re proposing to do for you.

    Admin

    In reply to: Slider feature request

    #30649

    Add this to the theme’s Custom CSS feature:

    .bgimage-excerpt .slider-entry-wrap {
    background: rgba(256,256,256,0.8);
    }
    .bgimage-excerpt .slider_post h2 a,
    .bgimage-excerpt .slider_post h2 a:visited {
    color: #000
    }
    .bgimage-excerpt .slider_post_entry p {
    color: #333
    }
    Admin

    In reply to: Slider feature request

    #30646

    Graphene Options > Slider > Slider display style > Background image and excerpt.

Viewing 10 posts - 2,951 through 2,960 (of 6,030 total)