• Hello,

    I LOVE LOVE LOVE your theme! I also use Encounters Lite and love that one too! I have added a sidebar on the left with a new page template and everything ?? You’ve done a great job of commenting your code, and it makes it easy to customize. Thank you Thank you Thank you!

    Just FYI, I added the following code to get my custom post types to appear in category archive pages. You might want to consider including something like this in your next release as I was not able to view my custom post types with out it.


    // This was required in order to include custom post types in the category archive
    function any_ptype_on_cat($request) {
    if ( isset($request['category_name']) )
    $request['post_type'] = 'any';

    return $request;
    }
    add_filter('request', 'any_ptype_on_cat');`

    Take care!
    Valerie

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Styled Themes

    (@gejay)

    Thanks for the great comments and also the code snippet you provided. Would you be able to contact me from my website and then once I reply, to get a copy of the file you changed with that code? I will then check it out and consider it for the theme(s).

    Thread Starter vmallder

    (@vmallder)

    Sure thing!

    Thread Starter vmallder

    (@vmallder)

    I have a question for you. Is there any way to make the widgets in the showcase header be placed horizontally across the showcase header? I am trying to put a slider and an image slide show in it. And provided they both “fit”, I’d like them to be placed next to each other rather than on on top of the other.

    Theme Author Styled Themes

    (@gejay)

    The only way to do that is to either do some custom coding in the theme files or use a text widget and inline columns (create two columns) with each element in each column.

    Either way, you will be doing some coding.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘AWESOME Theme!!’ is closed to new replies.