Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: List of Tags

    #21686

    Do you have an example of this you could show us?

    Mod

    In reply to: Is there a way to turn this into buttons

    #21627

    add

    padding-top: 6px; or however much you need.

    Mod

    In reply to: Post Title Font Size

    #21608

    Here’s how I did it:

    add_filter('comment_form_defaults','comment_reform');
    function comment_reform ($arg) {
    $arg['title_reply'] = __('If you've read this far, you have to leave a comment. That's the rule.');
    return $arg;
    }

    Just added that to my child theme’s functions file. Note that because this is PHP, I had to escape the apostrophe’s.

    Mod

    In reply to: Meta Description

    #21614

    will the tagline that I use always be my website description

    This is almost entirely beyond your control, despite what SEO gurus claim they can do. What a search engine decides to show about your site on their web page is entirely up to them. Some of them will take the description from a META “desc” tag, but not all of them, and those that do will not necessarily do it consistently across your site.

    Just another reason I think SEO is over-hyped. Good structure, good content, good community — those are the keys to building a successful web presence.

    Mod

    In reply to: Meta Description

    #21612

    That is your site description. Go to Settings >> General and type something in the box marked “tagline”.

    Mod

    In reply to: Is there a way to turn this into buttons

    #21622

    You might want to check out this site, which uses Graphene in extraordinarily creative ways: http://www.gendji.eu/?p=879

    Mod

    In reply to: Slider not working

    #21642

    It might be that you are using a secure transfer protocol (https) instead of just a regular one (http). I don’t know why you need to do this, but sliders are very sensitive to link issues. Try changing from https to http and see if that fixes it.

    Moved to Support.

    Mod
    Mod

    Yep, that’s how to do it. Here’s an old example using the header widget, before action hook widget areas were available:

    https://forum.graphene-theme.com/graphene-support/how-can-i-add-adsense-to-the-background-image-1#post-5040

    The WidgetLogic plugin can control where widgets show up.

    Also moved to Support.

    Mod

    In reply to: Show Title from Header-Picture on MouseOver

    #21550

    Well, I was thinking that the new function definition would look something like this:

    $header_img = get_the_post_thumbnail( $post_id, 'post-thumbnail' );
    $header_img = explode( '" class="', $header_img);
    $header_img = $header_img[0];
    $header_img = explode( 'src="', $header_img);
    $header_img = explode( 'title="', $header_img);
    $header_img = $header_img[1]; // only the url

    But I don’t know enough PHP to figure out how to redefine this in a child theme. (Josh….?)

Viewing 10 posts - 4,681 through 4,690 (of 5,839 total)