[Release] DVGFX2 for phpBB 3.1.10

For style authors to post and receive feedback on 3.1.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Anti-Spam Guide
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by Prosk8er »

Notepad++ is what you should use
User avatar
deepndark
Registered User
Posts: 498
Joined: Thu Nov 03, 2011 12:48 pm
Location: Estonian Developr aka X
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by deepndark »

you'll have to do something with the site sitename and description prolly to either remove it or make it float over your banner
I want to remove the site-name and the description, do you know where to delete and what?

Thanks!

PS. I downloaded the Rapid CSS, it looks just what I need.
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by Prosk8er »

It's in the overall_header.html not home so I can't give you the exact code
User avatar
deepndark
Registered User
Posts: 498
Joined: Thu Nov 03, 2011 12:48 pm
Location: Estonian Developr aka X
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by deepndark »

Prosk8er wrote:It's in the overall_header.html not home so I can't give you the exact code
I have to wait til you get back home then. Hey, thanks for helping me out, I promise to not bother you after this anymore. :geek:
User avatar
deepndark
Registered User
Posts: 498
Joined: Thu Nov 03, 2011 12:48 pm
Location: Estonian Developr aka X
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by deepndark »

Prosk8er, I want the sitename and description to disappear from the header, but visible on the browser's name-bar. I tried to make this happen by deleting the codes from the lines, 171 and 172, but the sitename and description didn't disappear. I hope you are smarter and know what to do. :)
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by Prosk8er »

it's this code in overall_header.html

Code: Select all

			<td width="100%" align="center">
				<h1>{SITENAME}</h1>
				<span class="gen">{SITE_DESCRIPTION}</span>
			</td>
don't forget to purge the cache in the acp after and purge the cache in your browser
User avatar
deepndark
Registered User
Posts: 498
Joined: Thu Nov 03, 2011 12:48 pm
Location: Estonian Developr aka X
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by deepndark »

Thank you Prosk8er, it works now. :mrgreen:
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by Prosk8er »

deepndark wrote:Thank you Prosk8er, it works now. :mrgreen:
yup no problem
User avatar
deepndark
Registered User
Posts: 498
Joined: Thu Nov 03, 2011 12:48 pm
Location: Estonian Developr aka X
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.2

Post by deepndark »

I have a question again, i'd like to replace the "Read", "Unread" gifs to PNG format and 45 * 45 sized.

1) Where do I need to change the code to have PNG?
2) Where do I need to change the code to have 45 * 45 dimensions for the icons?

Thanks!
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.6

Post by Prosk8er »

updated to 3.1.6
Coots1982
Registered User
Posts: 17
Joined: Fri Apr 29, 2016 8:27 pm

Re: [Release] DVGFX2 for phpBB 3.1.7

Post by Coots1982 »

Support Request Template
What version of phpBB are you using? phpBB 3.1.9
What is your board's URL? http://www.phinfever.com/forums
Who do you host your board with? No answer given
How did you install your board? I used the download package from phpBB.com
What is the most recent action performed on your board? Update from a previous version of phpBB3
Is registration required to reproduce this issue? Yes
Do you have any MODs installed? No
Do you have any extensions installed? Yes
What version of phpBB3 did you update from? phpBB 3.0.6
What extensions do you have installed? Tapatalk
Ajax Chat
External links open in new window
What styles do you currently have installed? Subsilver2, Prosilver, DVGFX2
What language(s) is your board currently using? English
Which database type/version are you using? MySQL 5
What is your level of experience? New to PHP but not phpBB
What username can be used to view this issue? N/A
What password can be used to view this issue? N/A
What actions did you take (updating your board; installing a MOD, style or extension; etc.) prior to this problem becoming noticeable? No answer given
Please describe your problem. I am wanting to display the Private Message count in the navigation menu at the top of the page.

The old forum, if you had a Private Message, would display above the forums "You have X number of private message" with a link to the Inbox when you logged in or loaded the "Board Index" page..

That would be wonderful, but if that's too much, I would like to simply display the number of messages in the Inbox out beside the "Private Messages" link at the top of the forum.

Here is a pic of where I'd like it displayed.
Image

Here is the code I found in /includes/functions.php -- I'm just not sure which part I need and which I don't need and exactly where to add it since this seems to have notification in it as well. I don't want notification counts, just the Inbox count.

Code: Select all

'PRIVATE_MESSAGE_COUNT'			=> (!empty($user->data['user_unread_privmsg'])) ? $user->data['user_unread_privmsg'] : 0,
		'CURRENT_USER_AVATAR'			=> phpbb_get_user_avatar($user->data),
		'CURRENT_USERNAME_SIMPLE'		=> get_username_string('no_profile', $user->data['user_id'], $user->data['username'], $user->data['user_colour']),
		'CURRENT_USERNAME_FULL'			=> get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']),
		'UNREAD_NOTIFICATIONS_COUNT'	=> ($notifications !== false) ? $notifications['unread_count'] : '',
		'NOTIFICATIONS_COUNT'			=> ($notifications !== false) ? $notifications['unread_count'] : '',
		'U_VIEW_ALL_NOTIFICATIONS'		=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications'),
		'U_MARK_ALL_NOTIFICATIONS'		=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications&mode=notification_list&mark=all&token=' . $notification_mark_hash),
		'U_NOTIFICATION_SETTINGS'		=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications&mode=notification_options'),
		'S_NOTIFICATIONS_DISPLAY'		=> $config['load_notifications'],
Generated by SRT Generator
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.10

Post by noth »

shame the download is not a 1 stage action :geek:

the download link takes you to another site GITHUB where several actions are then needed, even then you have several pieces of the download to put together, contrib template theme license style

this compares to other styles where the entire style is just downloaded in 1 folder ready to go onto your site :( shame
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.10

Post by Prosk8er »

noth wrote:shame the download is not a 1 stage action :geek:

the download link takes you to another site GITHUB where several actions are then needed, even then you have several pieces of the download to put together, contrib template theme license style

this compares to other styles where the entire style is just downloaded in 1 folder ready to go onto your site :( shame
you click the download button and from the zip you take the style you want looks easy to me
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.10

Post by noth »

This site can’t be reached

styles.gotskillslounge.com took too long to respond.
Search Google for styles gotskillz lounge index
ERR_CONNECTION_TIMED_OUT
demo can't be reached :(
User avatar
Prosk8er
Registered User
Posts: 1744
Joined: Sun Mar 12, 2006 3:30 am
Location: Rochester, NY
Name: Tyler
Contact:

Re: [Release] DVGFX2 for phpBB 3.1.10

Post by Prosk8er »

noth wrote:
This site can’t be reached

styles.gotskillslounge.com took too long to respond.
Search Google for styles gotskillz lounge index
ERR_CONNECTION_TIMED_OUT
demo can't be reached :(
It will be fixed when i can get the time to do it
Locked

Return to “[3.1.x] Styles in Development”