Search found 305 matches

by PayBas
Wed Nov 26, 2008 1:23 pm
Forum: [3.0/Olympus] New features discussion
Topic: Components by the phpBB team for phpBB 3.2?
Replies: 7
Views: 19374

Re: Components by the phpBB team for phpBB 3.2?

iWisdom wrote:As an aside, the blog is actually Wordpress.
Well that can hardly be classified as a "shocker", but luckily for yexusbeliever, wordpress can be easily integrated with phpBB.
by PayBas
Wed Nov 26, 2008 1:21 pm
Forum: [3.0/Olympus] New features discussion
Topic: Many minor issues
Replies: 7
Views: 15783

Re: Many minor issues

Custom profile fields will probably become much more powerful.
Does this mean that we can use basic stuff now that i.m.o. should have been included from the get-go?

$tpl_fields['blockrow'][] = array(
'PROFILE_FIELD_OPTIONID' => $optionid, // This is very handy for templates using the optionid ...
by PayBas
Mon Nov 10, 2008 3:35 pm
Forum: [3.0/Olympus] New features discussion
Topic: Template inheritance feedback.
Replies: 3
Views: 12666

Re: Template inheritance feedback.

Just did some testing and when changing (in functions.php):
'T_SUPER_TEMPLATE_PATH' => (isset($user->theme['template_inherit_path'])) ? "{$phpbb_root_path}styles/" . $user->theme['template_inherit_path'] . '/template' : '',

To:
'T_SUPER_TEMPLATE_PATH' => ((isset($user->theme['template_inherit ...
by PayBas
Mon Nov 10, 2008 3:03 pm
Forum: [3.0/Olympus] New features discussion
Topic: Template inheritance feedback.
Replies: 3
Views: 12666

Re: Template inheritance feedback.

At the moment that doesn't work because even if there is no super template, it will still out a string like:

Code: Select all

.styles//template
Of course I could change the whole thing to:

Code: Select all

<!-- IF T_SUPER_TEMPLATE_PATH eq '.styles//template' -->
But that is very ugly.
by PayBas
Sun Nov 09, 2008 10:31 am
Forum: [3.0/Olympus] New features discussion
Topic: Template inheritance feedback.
Replies: 3
Views: 12666

Template inheritance feedback.

At the moment I am working on a rather large styling project for phpBB which relies heavily on phpBB 3.0.3 template inheritance. I actually released a beta a few days ago which requires 3.0.3 RC1 because of it. For more info look here: http://www.phpbb.com/community/viewtopic.php?f=185&t=1008155 ...