Redoger
Redoger WordPress theme is a 3 columns fixed width WordPress template by MagPress.com. This Reddish WP theme has featured content slider, featured categories, Adsense ready, etc.

- tested with wp 3.8.1
- remove ads link in theme options
- new paging code
- remove deprecated twitter widgets
- remove and change credits links
* replace only sidebar.php and lib/functions/theme-functions.php
- add pagination end trail on permalink to prevent blank page in some host server.
- Minor change on lib/functions/theme-functions.php.
- fix ie media query issue
- paging condition if use default wp permalink
- fix twitter social issue
- Initial release v1.0.
Version and Changelog
- tested with wp 3.8.1
- remove ads link in theme options
- new paging code
- remove deprecated twitter widgets
- remove and change credits links
* replace only sidebar.php and lib/functions/theme-functions.php
- add pagination end trail on permalink to prevent blank page in some host server.
- Minor change on lib/functions/theme-functions.php.
- fix ie media query issue
- paging condition if use default wp permalink
- fix twitter social issue
- Initial release v1.0.
Hi Ronald,
This may be simple. I really love this theme, but I would like to make the middle section wider throughout the site. Do you have any suggestions?
what do you mean ‘middle section’ ?
Hi i use this theme and i love it… i want to know why on internet explorer 8 and below we dont see the black border at the top with transparency and still dont see the title of my post ??
for now i replace the line of the post entry article with a single color… not a gradient cause seem to dont work…
#post-entry article .post-top {
padding: 2% 4%;
margin: 0px;
width: 92%;
float: left;
background: #1F4F6C;
Hey ronald , if i want to inverse my post… I want my new post only show at the last page. is this possible ?
not sure but try this, open index.php and replace this code
[php]if (have_posts()) : while (have_posts()) : the_post();[/php]
with
[php]global $query_string; if (have_posts()) : query_posts( $query_string . ‘&order=ASC’ ); while (have_posts()) : the_post();[/php]
Hi there Ronald and crew. Firstly, I wanted to write a couple of kind words of thanks for all the Magpress themes made available. They’re wonderful.
I’ve tried several 3-column themes with my QA environment blog (test. instead of www.) I’ve found several of them that format my content OK. However, I can’t figure out how exactly to set the excerpt and/or thumbnnail size on any of them including Redoger, which I’m now using in test.
I’m pretty adept with UNIX, WordPress, PHP, and all. But none of my tinkering has solved the issue of my images being cropped to something like 540 or 489 by 250 or so. Is there anyway to specify the thumbnail size either globally or per post?
Again, many thanks.
-Freddy
hi freddy, the images were pulled using the_post_thumbnail ‘large’ size image.
you can edit the image size prefrence in dashboard->setting->media.
Wow! Thanks for the super speedy response!
That’s good advice. I tried changing those settings, but they’re still being overridden somewhere on the them to wide-aspect cropping.
Tinkering with index.php, I now replaced the ‘get_featured_post_image’ line entirely., with the_content as I have all my posts pre-formated with the ‘more’ tag already. The images and articles format properly but I’m now left with double images on each excerpt.
If you look at test.thetruthaboutbartending.com you can see what I’m referring to. Is there now a way to simply get rid of the default thumb?
Thanks again.
hi using original index.php try delete this code
[php]<div class="post-thumb">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php echo get_featured_post_image(500, 200, "alignnone", "large", ‘image-‘.get_the_ID() ,get_the_title()); ?>
</a>
</div>[/php]
and replace
[php]<?php get_the_featured_excerpt($excerpt_length=40); ?>[/php]
with
[php]<?php the_content( __(‘…read more’, TEMPLATE_DOMAIN) ); ?>[/php]
Wow! That’s perfect! You rock! I’ve going to keep tweaking it then consider moving to production =)
Finally the new version of the theme fixed my issue thanks!
Hey, is there any way to change the border colors red to a different?
hi, you can try this. open style.css add to the bottom of the stylesheet.
[php]
/* navigation color */
#custom #main-navigation {background:#333;}
#custom #main-navigation .sf-menu ul {background:#333 none !important;}
#custom #main-navigation .sf-menu li li {border-bottom:1px solid #444 !important;}
/* sidebar and post header color */
#custom .post-top, #right-sidebar h3.widget-title, #left-sidebar h3.widget-title {
background:#333 none !important;
text-shadow: 0 0 0 transparent !important;
}
/* remove post header shadow */
#custom .post-top h1 {text-shadow: 0 0 0 transparent !important;}
[/php]
change the HEX color accordingly to your own choice.
cheers
where is the style sheet? i dont know one thing about codes lol sorry
i found it and copied paste where do i go to change da colors?
hi you need to edit/change the hex color #333 and #444 to your own desired hex color.
I really love the magpress theme from long time. My all the blogs have magpress theme. According to me magpress is the number 1 for wordpress theme. I really appreciate them for there work.
thanks for the kind word roger 🙂
Hi, Really great theme in there and the support is quick.
I use the theme Redoger and is about a couple hour now im tryin to make appear my youtube video in my frontpage… index.php
i try to change some line in the index.php but that still dont work. Someone can help me ?
try using page instead, create new page and go to settings->reading and set the youtube page as static frontpage.
No cause i want my front page show all my posts and not just video..
hi, try open index.php line 47+ and edit this code
[php]
<?php get_the_featured_excerpt($excerpt_length=40); ?> [/php]
edit to
[php]
<?php the_content(); ?>
[/php]
that should show the embed video in post. cheers
Almost but if you go check www.rebelridez.com/2013 i have all my post with 2 images. I just put one image and the post give me two .. dont know ??
that’s odd, the second image shouldn’t be appearing, did you made any edits to index.php?
try redownload the theme and replace the index.php ( backup your current one first ).
Ronald you the best !
THANK A LOT that working finally
I am having the same problem as Stephen for www.icallsports.com. When I press the page button for page two, nothing happens. I don’t want to try what Stephen did if it’s going to mess up the site. Can anyone help?
Thanks,
Kelley
hi version 1.2.1 should fix this issue.
try download the latest 1.2.1 version and replace lib/functions/theme-functions.php and lib/templates/paginate.php