Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Adding an additional sub-header and footer

Asked Modified Viewed 4,553 times
C
ctokepa
C
  • Member, joined since
  • Contributed 86 posts on the community forums.
  • Started 22 threads in the forums
  • Started this discussions
asked
Member

I'm writing here because the next.php-fusion.com is not working again and cannot open it. I really love the php-fusion cms but the themes are quite boring and require more modification to get something interesting. This is an example site that I've made and it's quite different from the common fusion design. So my suggestion is to add something like a custom panel below the sub-header which we can activate, deactivate or change for the pages news.php, forum/index.php etc.
An example is this template http://livedemo00.template-help.com/w...ess_38124/. Imagine that the additional sub-header is the slideshow. In that way you can customise it to be shown on the front page only. When you open downloads it could be another slideshow with categories and so on or just columns with some information. This will definately make the site look more professional and dynamic. In addition to that we can make the same thing and add an extra footer that changes content in the different pages like categories for downloads, artices, news etc.
In the end just wanna add that I love the simpicity of PHPFusion and if someone developes these new features the designers will have a vast possibilities for creating great looking themes easier and won't have to modify the core files in most of the complicated themes.
0 replies

6 posts

J
jikaka
J
jikaka 10
www.rusfusion.ru - russian nss
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 82 threads in the forums
answered
Veteran Member

slightly disagree with you
php-fusion, you can put any design and the control elements can be done via the Admin Panel
but I totally agree that the extensions needed
0 replies
H
Homdax
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,247 posts on the community forums.
  • Started 108 threads in the forums
answered
Fusioneer

sigh, i wish we had some tutorials on how to make fusion look that awesome as that site...:|
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
answered
Veteran Member

Believe me, your are only limited by your imagination in PHPFusion if you have some PHP knowledge. Everything you just mentioned above can be done already, no mods to the core, just a theme.
For example here is a snippet which you can use to show a slider, a different footer w/e you like only on selected pages.
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]$url = htmlspecialchars($_SERVER['REQUEST_URI']);
$page = FUSION_SELF;
//Pages to show the content on
$allowed_pages = array("news.php", "downloads.php", "articles.php"wink;
//Check
if (!strpos($url, '/administration/'wink && in_array($page, $allowed_pages)) {
echo $page;
}[/syntaxhighlighter]
to show/change something only while in forums you can use
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]if (strpos($url, '/forum/'wink) {
echo $page;
}[/syntaxhighlighter]
0 replies
H
Homdax
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,247 posts on the community forums.
  • Started 108 threads in the forums
answered
Fusioneer

Groovy, well I should know, right ;)
0 replies
B
BlackDragon
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

I agree with more module positions, and need to change subheader in core file to can be dropdown :) , because people like me with little knowladge about programming have a lot trouble to make drop down menu on php fusion :S
0 replies
C
ctokepa
C
  • Member, joined since
  • Contributed 86 posts on the community forums.
  • Started 22 threads in the forums
  • Started this discussions
answered
Member

Quote

JoiNNN wrote:

Believe me, your are only limited by your imagination in PHPFusion if you have some PHP knowledge. Everything you just mentioned above can be done already, no mods to the core, just a theme.
For example here is a snippet which you can use to show a slider, a different footer w/e you like only on selected pages.
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]$url = htmlspecialchars($_SERVER['REQUEST_URI']);
$page = FUSION_SELF;
//Pages to show the content on
$allowed_pages = array("news.php", "downloads.php", "articles.php");
//Check
if (!strpos($url, '/administration/') && in_array($page, $allowed_pages)) {
echo $page;
}[/syntaxhighlighter]
to show/change something only while in forums you can use
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]if (strpos($url, '/forum/')) {
echo $page;
}[/syntaxhighlighter]

Yes that is a great idea. But what about the others that don't know PHP very well? Won't it be easier to get these functions in the content administration?
0 replies

Category Forum

Themes Support

Labels

None yet

Statistics

  • Views 0 views
  • Posts 6 posts
  • Votes 0 votes
  • Topic users 5 members

5 participants

H
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,247 posts on the community forums.
  • Started 108 threads in the forums
C
C
  • Member, joined since
  • Contributed 86 posts on the community forums.
  • Started 22 threads in the forums
  • Started this discussions
J
J
jikaka 10
www.rusfusion.ru - russian nss
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 82 threads in the forums
J
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
B
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet