Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Right-to-Left menu bar

    #11726

    Hi Amirkg,

    I am currently adding full RTL support for the theme, and I think it’s almost there. However, I do need to test it with an actual RTL language pack and WordPress install.

    Would you be interested to test the pre-release version of the theme that includes support for RTL languages?

    Admin

    In reply to: Display Image Excerpts in Pages

    #11789

    You don’t need to remember the default slider height. To use the default value, simply leave the slider height option empty and the theme will use the default value of 220px.

    Admin

    In reply to: Current page highlighting broken after using own menu

    #11846

    Page URL please

    Admin

    In reply to: 'About the Author' Image Error

    #11842

    Oh, you were talking about the author bio in single post pages and not the Author page…

    OK, I’ve updated the theme’s code so that it’ll display the custom author image instead of gravatar if present. Will be available in the next update.

    Admin

    In reply to: 'About the Author' Image Error

    #11840

    Please provide the URL to the page in question so that I can take a look.

    Admin

    In reply to: Display Image Excerpts in Pages

    #11786

    I noticed that there’s an extra } in your child theme’s style.css file before the .slider_post img.excerpt_thumb{ line. Try removing it.

    Admin

    In reply to: Display Image Excerpts in Pages

    #11785

    Make sure you activate your child theme in the WordPress admin.

    Admin

    In reply to: Display Image Excerpts in Pages

    #11783

    Try this instead:

    .slider_post img.excerpt_thumb{
    display:none;
    }

    For me, the best way to add excerpt image is to use the theme’s graphene_before_post_content action hook, though this may be difficult for you to achieve if you’re not familiar with PHP.

    Admin

    In reply to: Slider Image Resize?

    #11812

    Basically there’s two things that you need to do:

    1. Define a new thumbnail size using the add_image_size() function inside your (child theme’s) functions.php file.

    2. Modify the theme’s functions.php file to use the new thumbnail size. In version 1.1.2, modify line 944 to look like this:

    <?php echo graphene_get_slider_image($post->ID, array(150, 150, true)); ?>

    Change the values in the array(150, 150, true) part to reflect the width and height of the new image size that you have created in Step 1.

    When you do this, all new pictures uploaded will have a thumbnail created according to the new image size you defined, in addition to the WordPress’ default image sizes, which you can then use as the size for the image slider.

    Admin

    In reply to: Removing Blue Calendar Picture from Post

    #11845

    If you would just like to remove the blue background and keep the text, add this code to your style.css file:

    .post .date{
    background:none;
    }

    Note that removing the blue background will cause the month text to not be visible (since it’s white on a white background). You will also need to change the month colour in that case.

    If you want to remove the entire post date, just tick the Hide post date option in Graphene Display options page.

Viewing 10 posts - 5,681 through 5,690 (of 6,030 total)