Style changes from 3.0.0-RC5 up to 3.0.3

For support and discussion related to templates, themes, and imagesets in phpBB 3.0.
Suggested Hosts
User avatar
Tophon
Registered User
Posts: 214
Joined: Wed Oct 22, 2008 12:19 am
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by Tophon »

An edit missed in prosilver/template/memberlist_body.html

Find:

Code: Select all

{TOTAL_USERS} • 
					<!-- IF PAGINATION --><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE -->{PAGE_NUMBER}<!-- ENDIF -->
				</li>
			</ul>

			<span class="corners-bottom"><span></span></span></div>
		</div>
	<!-- ENDIF -->
Add After:

Code: Select all

<!-- IF S_LEADERS_SET or not S_SHOW_GROUP or not .memberrow -->
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by Raimon »

Thanks , that code seems to be missing on the text template of the code changes.
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
DABenji
Registered User
Posts: 14
Joined: Sun Nov 09, 2008 4:58 pm

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by DABenji »

will making these changes (already updated to 3.0.3) help with the problem i have with AJAX Chat on prosilver??
luckyp79
Registered User
Posts: 140
Joined: Sat Nov 10, 2007 1:54 am
Location: Minnesota
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by luckyp79 »

How about this one? Prosilver

Code: Select all

[quote]#
#-----[ OPEN ]---------------------------------------------
#
styles/prosilver/template/mcp_forum.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 24

Code: Select all
             <li class="header">
                <dl class="icon">
                   <dt>{L_TOPICS}</dt>
                   <dd class="posts">{L_REPLIES}</dd>
                   <dd class="lastpost"><span>{L_LAST_POST}</span></dd>



#
#-----[ FIND ]---------------------------------------------
# Around Line 29

Code: Select all
    <dd class="mark">{L_MARK}</dd>



#
#-----[ REPLACE WITH ]---------------------------------------------
#

Code: Select all
    <!-- IF not S_MERGE_SELECT --><dd class="mark">{L_MARK}</dd><!-- ENDIF -->



#[/quote]
luckyp79
Registered User
Posts: 140
Joined: Sat Nov 10, 2007 1:54 am
Location: Minnesota
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by luckyp79 »

and this one

Code: Select all

styles/prosilver/template/mcp_header.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 43

Code: Select all
       <div id="cp-main" class="mcp-main">
          <!-- IF MESSAGE -->
          <div class="content">
             <h2>{L_MESSAGE}</h2>



#
#-----[ FIND ]---------------------------------------------
# Around Line 48

Code: Select all
             <p>{MESSAGE}</p>



#
#-----[ REPLACE WITH ]---------------------------------------------
#

Code: Select all
             <p class="error">{MESSAGE}</p>
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by Raimon »

luckyp79 what is your question.
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
luckyp79
Registered User
Posts: 140
Joined: Sat Nov 10, 2007 1:54 am
Location: Minnesota
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by luckyp79 »

It just says to find it. Then what do you do. They say find "code" then there is no add or replace with this "code"

Am I suppose to delete those bits of code or what am I supposed to do with them.
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by Raimon »

First search for the first "find" code, after that the second "find" code.
And if you have done that, replace the last code with the "replace" code .

So this would be ;
styles/prosilver/template/mcp_header.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 43

<div id="cp-main" class="mcp-main">

Code: Select all

          <!-- IF MESSAGE -->
          <div class="content">
             <h2>{L_MESSAGE}</h2>
#
#-----[ FIND ]---------------------------------------------
# Around Line 48

Code: Select all

<p>{MESSAGE}</p>
#
#-----[ REPLACE WITH ]---------------------------------------------
#

Code: Select all

<p class="error">{MESSAGE}</p>
before you have done the edits the code part is ;

Code: Select all

<div id="cp-main" class="mcp-main">
		<!-- IF MESSAGE -->
		<div class="content">
			<h2>{L_MESSAGE}</h2>
			<p>{MESSAGE}</p>
after you done all the edit , it would be ;

Code: Select all

<div id="cp-main" class="mcp-main">
		<!-- IF MESSAGE -->
		<div class="content">
			<h2>{L_MESSAGE}</h2>
			<p class="error">{MESSAGE}</p>
:)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
luckyp79
Registered User
Posts: 140
Joined: Sat Nov 10, 2007 1:54 am
Location: Minnesota
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by luckyp79 »

oh ok. Simple enough. I was worried that I was doing something wrong or something was missing.

Thanks for your patients
User avatar
TheGrevster
Registered User
Posts: 131
Joined: Mon Sep 12, 2005 7:29 pm

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by TheGrevster »

Hey Raimon,

I just made the style changes from RC5 to RC6, and now I can't login as an Administrator? What the.....

Any ideas?
luckyp79
Registered User
Posts: 140
Joined: Sat Nov 10, 2007 1:54 am
Location: Minnesota
Contact:

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by luckyp79 »

in 3.0.3 in the meberslist body edit above you add in

Code: Select all

<!-- IF S_LEADERS_SET or not S_SHOW_GROUP or not .memberrow -->
Can I ask another silly question?
Through out that file how many

Code: Select all

<!-- IF S_LEADERS_SET or not S_SHOW_GROUP or not .memberrow -->
should there be. I may have added it in the wrong spot. Either way I have an error when viewing the memberslist.
John T. Folden
Registered User
Posts: 188
Joined: Tue Sep 04, 2007 12:16 am

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by John T. Folden »

TheGrevster wrote:Hey Raimon,

I just made the style changes from RC5 to RC6, and now I can't login as an Administrator? What the.....

Any ideas?
Are you running RC6????
The Blue Whale Pub - SPN/SF/F TV Discussion Forum
ZOMBIE ALERT: The Walking Dead are coming to AMC!
User avatar
TheGrevster
Registered User
Posts: 131
Joined: Mon Sep 12, 2005 7:29 pm

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by TheGrevster »

John T. Folden wrote:
TheGrevster wrote:Hey Raimon,

I just made the style changes from RC5 to RC6, and now I can't login as an Administrator? What the.....

Any ideas?
Are you running RC6????
I guess so, I made the changes from RC5 to RC6 so I could avoid loosing my styles, but now I can't login as Admin, but I can't see what version I am running now, as I can't login.

HELP!
John T. Folden
Registered User
Posts: 188
Joined: Tue Sep 04, 2007 12:16 am

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by John T. Folden »

TheGrevster wrote: I guess so, I made the changes from RC5 to RC6 so I could avoid loosing my styles, but now I can't login as Admin, but I can't see what version I am running now, as I can't login.

HELP!
Let's step back a minute. What version of phpBB are you running?
The Blue Whale Pub - SPN/SF/F TV Discussion Forum
ZOMBIE ALERT: The Walking Dead are coming to AMC!
User avatar
TheGrevster
Registered User
Posts: 131
Joined: Mon Sep 12, 2005 7:29 pm

Re: Style changes from 3.0.0-RC5 up to 3.0.3

Post by TheGrevster »

John T. Folden wrote:
TheGrevster wrote: I guess so, I made the changes from RC5 to RC6 so I could avoid loosing my styles, but now I can't login as Admin, but I can't see what version I am running now, as I can't login.

HELP!
Let's step back a minute. What version of phpBB are you running?
I was on RC5, then did the steps on the 1st page of this thread to upgrade to RC6, as I don't want to loose all my style changes that I applied to my site. Now I can't login as Admin, and some users are experiencing Password issues.

I think its best to just download 3.03 and upload that and start again?
Locked

Return to “[3.0.x] Styles Support & Discussion”