MyBB Community Forums

Full Version: Rush 1.8.7
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12
Okay, I hit a snag.

My forum is in a folder, so the url is example.com/forum.

In the little popup in the header_welcomeblock_member--(EXCEPT for Subscribed Threads, UCP, MCP, and ACP, which all work perfectly)--the links resolve to incorrect urls (just example.com--no /forum).


I have rush on another site as well, and those links go exactly where they're supposed to. But that forum doesn't have a folder--it's just the domain (example.com). 

The forum link in the footer works fine. Using the default mybb template, all links work fine. 

So I need to find/edit whatever those links call for the forum url. Where do they find the urll? 

Thank you!


PS In the very top menu, there is a drop down for Extras--they go to example.com/forum. 
Where can I program those links? Thanks!
(2014-10-06, 03:41 PM)Alia Wrote: [ -> ]Okay, I hit a snag.

My forum is in a folder, so the url is example.com/forum.

In the little popup in the header_welcomeblock_member--(EXCEPT for Subscribed Threads, UCP, MCP, and ACP, which all work perfectly)--the links resolve to incorrect urls (just example.com--no /forum).


I have rush on another site as well, and those links go exactly where they're supposed to. But that forum doesn't have a folder--it's just the domain (example.com). 

The forum link in the footer works fine. Using the default mybb template, all links work fine. 

So I need to find/edit whatever those links call for the forum url. Where do they find the urll? 

Thank you!


PS In the very top menu, there is a drop down for Extras--they go to example.com/forum. 
Where can I program those links? Thanks!

Templates > Header templates> Header
Thank you iAndrew!

AND I SOLVED the original problem--edit the url called by the links in the dropdown on the  header_welcomeblock_member!

When I checked them carefully, all the broken links began with a slash

 <div class="popup_item_container">
        <a href="/search.php?action=getnew" class="popup_item">View new content</a>
      </div>


The one link that worked had no slash.

     <div class="popup_item_container">
        <a href="usercp.php?action=subscriptions" class="popup_item">Subscribed threads</a>

So I took out all the slashes, and now the links work perfectly!

If anyone else has their forum in a folder, removing the slash from those links might help them, too On the other hand, next time you update, taking out all those slashes might help--since the other install has the same pattern, but all the links work.


PS Thank you again for this beautiful theme. It is classic and soothing. I am enjoying it very much. I made a new background image too [attachment=32707]. 
Hi, I love this theme, thanks for it.

I've edited this because I solved my original question. My new question is, I notice that the logo has a hover that makes it brighter. I'd love it to be that bright all the time. Can you tell me where that setting might be?

Thanks.
Go into Templates > header templates > Header and remove these bold bits

<div id="fadehover"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div></div>

Then go into themes > Rush > rush.css and remove this bit

#fadehover img {
opacity: .5;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

#fadehover img:hover{
opacity: 1;
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}
Perfect, thanks!

Also, Just to confirm what Alia said above, the links in the member dropdown in the header all led to 500 errors except subscribed threads. The slashes need to be removed.
At the bottom of the Rush theme's index page, there are icons for Facebook, Google+, YouTube, Twitter and Tumbler. How can I edit that line? I've looked in the Template files and am not finding what I'm looking for.

Thanks!

Found it: Templates > Index Page Templates > index_boardstats

Oh, a different question. When I view my profile (or anyone else's for that matter), I see "Extra Link" off on the right side. It links to a page that pulls up saying "Content Here." What is that for and how do I edit it?
(2014-10-14, 03:33 AM)jaihare Wrote: [ -> ]Oh, a different question. When I view my profile (or anyone else's for that matter), I see "Extra Link" off on the right side. It links to a page that pulls up saying "Content Here." What is that for and how do I edit it?

Templates > Rush > Member templates > Profile

It's just an extra content box i added in case people wanna add some more stuff in it.
(2014-10-15, 03:39 AM)edusuliano Wrote: [ -> ]how can i make user group images appear in postbit??? i can see usergroup only in profile Sad


Go to Templates > Rush > Post Bit Templates > Postbit and Postbit_classic

Add {$post['groupimage']} below {$post['userstars']}
Pages: 1 2 3 4 5 6 7 8 9 10 11 12