Redsy

Started by Daniel, April 03, 2015, 05:19:26 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

shinamec

That worked flawlessly!  Thank you for your amazing support and this amazing theme!

You can close this topic if you like!  Thanks!

xxxjoelxxx

Hey Guys!

First off, loving the themes you guys are providing - great job!

My question is specific to the redsy theme. I wanted to know how I go about changing the following:

Question 1: Board Icons. I'd like to change the board icons to something where members can distinguish them between 'new and old post'. Unfortunately, I can't change them. Even when using a board icon mod and directing it to a url, it still wont change. Are the icons in this theme programmed differently? I have no problems changing icons in the Reseller theme, so I am a little confused at the moment.

Question 2: I can't get the shop credits to show up under the members avatars. It will show credit, inventory and send but will not show the number of credits. I made sure to tick on the the theme prior to installing the mod.

Any help you guys can give me would be greatly appreciated. Thanks again for all you do for the SMF community.

Early Bird

First big compliments for the beautiful template.

I have 1 issue.
I miss the name of the writer and see only her/his avatar.
This is only when i use a smartphone.
I hope you can solve this problem for me.
Excuse my English, i am Dutch

With kind regards,
Wil

Last Edit: May 18, 2015, 03:53:35 AM by Early Bird

Dominik523

I can approve this. I've asked the same thing on the smf forums. I really hope this can be fixed.

Daniel

Index.css (Themes/Redsy/css)
Search:
@media (max-width: 991px) {
.poster h4, .poster ul
{
display: none;
}
.buttonlist li span
{
display: none;
}
}

Replace with:
@media (max-width: 991px) {
.buttonlist li span
{
display: none;
}
}

prach_kp

Deal Alls,

In the main page of SMF it normal shows Recent Post (http://www.xxx.com/webboard/index.php#recent) and User Online (http://www.xxx.com/webboard/index.php#users) by defualt. I have set to show Recent Post in the front page of my webboard, but it doesn't show that position that I set, It show the same as users tab. For example:- When I click recent tab, it shows Users Stat or Users Online and When I click users tab, it shows Users Stat or User Online same too.

Thank you for your suggestion.
Prach Konphet

Early Bird

Awesome,  thank you very much.
I and the forum users are very happy!

Dominik523

Quote from: Daniel on May 19, 2015, 05:34:17 PM
Index.css (Themes/Redsy/css)
Search:
@media (max-width: 991px) {
.poster h4, .poster ul
{
display: none;
}
.buttonlist li span
{
display: none;
}
}

Replace with:
@media (max-width: 991px) {
.buttonlist li span
{
display: none;
}
}


Thank you very much Daniel!

Daniel

BoardIndex.template.php (Themes/Redsy)
Search:
<div class="hslice tab-pane" id="recent_posts_content recent" role="tabpanel">
Replace with:
<div class="hslice tab-pane" id="recent" role="tabpanel">

prach_kp

It's worked.
Thank you very much

prach_kp

Could you tell me more about default the first tab? Now it shows the fourth tab (#users) by default, I would like to show the first tab (#recent) by default.

Tab Lists of My Webboard
1. #recent
2. #calendar
3. #stats
4. #users

Thank you for advanced.

jaeason

Quote from: prach_kp on May 21, 2015, 10:00:11 PM
It's worked.
Thank you very much

Yes, thank you. I had the same problem and the solution worked for me.

Also interested in changing the default tab as well.

Thanks,
Allan
vx800forum.com

Daniel

BoardIndex.template.php
Search:
<li role="presentation">
<a href="#recent" aria-controls="recent" role="tab" data-toggle="tab">

Replace with:
<li role="presentation" class="active">
<a href="#recent" aria-controls="recent" role="tab" data-toggle="tab">

Search:
<li role="presentation" class="active">
<a href="#users" aria-controls="users" role="tab" data-toggle="tab">

Replace with:
<li role="presentation">
<a href="#users" aria-controls="users" role="tab" data-toggle="tab">

Search:
<div class="hslice tab-pane" id="recent" role="tabpanel">
Replace with:
<div class="hslice tab-pane active" id="recent" role="tabpanel">
Search:
<div class="tab-pane active" id="users" role="tabpanel">
Replace with:
<div class="tab-pane" id="users" role="tabpanel">

prach_kp

Dear Daniel,
That's worked again.
Thank you very much.
Prach Konphet

prach_kp

Dear Alls,
I found the another problems.
index.template.php
Search:
<a href="', !empty($settings['facebook_text']) ? $settings['facebook_text'] : 'http://www.facebook.com ' ,'" title="', $txt['rs_facebook'], '"><i class="fa fa-twitter fa-2x"></i></a>

Replace with:
<a href="', !empty($settings['facebook_text']) ? $settings['facebook_text'] : 'http://www.facebook.com ' ,'" title="', $txt['rs_facebook'], '"><i class="fa fa-facebook fa-2x"></i></a>

Search:
<a href="', !empty($settings['twitter_text']) ? $settings['twitter_text'] : 'http://www.twitter.com' ,'"><i class="fa fa-facebook fa-2x"></i></a>

Replace with:
<a href="', !empty($settings['twitter_text']) ? $settings['twitter_text'] : 'http://www.twitter.com' ,'"><i class="fa fa-twitter fa-2x"></i></a>