• ResolvedTheme Author Ben Sibley

    (@bensibley)


    Version 1.06 has a bug that puts all the images on the right side. There is a fix on the way in v1.07 that should be downloadable soon.

    If you are comfortable with PHP, you can add the following code to the bottom of the functions.php file:

    function compete_themes_oddeven_post_class( $classes ) {
    
       global $current_class;
       $classes[] = $current_class;
       $current_class = ($current_class == 'odd') ? 'even' : 'odd';
       return $classes;
    }
    
    add_filter ( 'post_class' , 'compete_themes_oddeven_post_class' );
    global $current_class;
    $current_class = 'odd';

    Make sure you add it before the closing PHP tag ?> or it will cause an error.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Ben.

    Great. Many thanks for the Fix. The tracks theme is superb, I really fell in love when I saw it. I’m running it on a website of my own. https://www.thehiddenangle.com

    However i have some requests to see if it’ possible to add. I think they will improve even more your work.

    * First, if you look at the footer, I had to include some hard code in the footer to make some social icons to appear. Since your theme needs a full screen size, the only possible place to put things is either in the header or the footer as there is no space for a sidebar. Is it possible to add some functionalities to the footer or header or an extra menu in the footer?

    * I also wanted to put a search box in the header, but i did not managed it properly to appear without looking detached from the main theme. Is it possible to add one that smoothly integrates with the design?

    This is so far what i really miss. If you are interested I may come up with a few other ideas, but thank you really for your work. It looks really amazing.

    Albert.

    Theme Author Ben Sibley

    (@bensibley)

    Albert,

    Thanks so much, I really appreciate the feedback and support!

    Those are both very reasonable requests. I’m going to be releasing a premium version of Tracks eventually, but I have some more features in the pipeline for the free version including logo positioning tools. I will add social media icons to the list of free updates.

    For the search bar, I’ll have to think about the best way to integrate that, but it can certainly be done.

    Theme Author Ben Sibley

    (@bensibley)

    v1.08 is now live with the fix. Marking as resolved.

    Thanks Ben!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘All images on right side’ is closed to new replies.