miniBB ® 

miniBB

®
Support Forums
  
 | Start | Register | Statistics | File Bank | Manual |
miniBB Support Forums / Search
Search for
[+] Formatting  [+] Fields  [+] Forum  [+] Period  [+] Username
Formatting
Fields
Forum
Period from to
Username
 
Results found: 605
» Messages | Topic titles 
Page  Page 28 of 31:  « Previous  1  ...  27  28  29  30  31  Next » 
 
541. Posted: 13 Dec 2004 05:13 - Master Class / forum iframe
    just use the link for a given topic for your iframe. add your iframe it to main_header.html template 

542. Posted: 22 Nov 2004 02:11 - Master Class / Using {$...} tags in custom header.php and footer.php?
    Is it possible to make the {$l_menu[0]} etc. tags in the custom header.php and footer.php files work? I have a page with a quite long header and I wouldn't want to have almost the same long code in both ./inc/header... 

543. Posted: 20 Nov 2004 13:43 - The Other / navigating search results links - is this a bug?
    ... it can't be done - the way browser's Back button works is unpredictable and unreliable in terms of scripted sites and we need to set/check cookies each time so we can't send any other headers to "hack" the way browsers back button works. You should use miniBB's native links and buttons when doing a search. 

544. Posted: 16 Nov 2004 11:03 - News / miniBB 2.0 BETA RELEASED!
    Changes comparision: 2.0 RC1 - 2.0 RC1a ******************************************** * bb_functions.php: load_header(): now, with more efficient code used for including user's site header. * bb_func_pthread.php: fixed email text procedure in a email notification process * _install... 

545. Posted: 12 Nov 2004 11:30 - News / miniBB 2.0 BETA RELEASED!
    ... $_COOKIE, $GLOBALS, $_SESSION variables. * Optimized template parser * Possibility to integrate miniBB with existing users database (structure must be kept original) * Possibility to use your own PHP header/footer when intergrating into the site * Include-files optimization for exotic servers like Novell * Possibility to login at any page w/o posting * Date function is replaced to the... 

546. Posted: 2 Nov 2004 10:25 - How To / how to get rid of the faq and language link in index.php??
    Remove {$l_menu[4]} and {$l_menu[8]} from templates/main_header.html 

547. Posted: 19 Oct 2004 20:04 - How To / How to set up switch language link?
    ... query string to a link that switches to the other language (I always know that if I'm viewing English I want to switch to Spanish, and vice-versa)? I will also be making some other mods to include headers/footers/email templates specific to each language, so if you're interested in that code I'll share it when I finish. THANKS in advance for your reply. 

548. Posted: 21 Aug 2004 00:30 - How To / Changing Page Titles / Generic Forum title
    ... This is the way. Much simpler than it sounds. Edit this line in setup_options.php: $sitename='put your site title here'; Then, save your company logo as img/logo.gif, or edit templates/main_header.html, replacing logo.gif with the url to your image. 

549. Posted: 5 Jul 2004 14:38 - Official Addons and Solutions / Memberlist
    in my forum everywere every link is shown. No link disappears. you need to edit the main_header.html this way: Insert this: <b> {$l_sepr} <a href="index.php">Home</a> {$l_sepr} <a href="index.php?action=stats">Statistik</a> {$l_sepr}... 

550. Posted: 5 Jul 2004 00:59 - Official Addons and Solutions / Memberlist
    you have to edit the main_header.html in your templates-directory: Just add {$l_sepr} <a href="addon_members.php">Members</a> in this line <td class=caption2><b> {$l_menu[0]}{$l_menu[7]}{$l_menu[3]}... 

551. Posted: 24 May 2004 10:27 - Custom Tutorials and Modifications / When posts are sorted in DESC order, after posting a topic, the forum redirects to the last page
    This is redirect algorithm. You need to change also bb_pthread. When header("location"...) goes to page=-1, it goes to the last page. You need to set location's page to 0. 

552. Posted: 13 May 2004 20:01 - How To / getting rid of everything above messages (including the words "Last Poster" and "Message" as well)
    ... width=16 valign=top class=caption3><img src="./img/forum_icons/{$forumIcon}" width=16 height=16 alt=""></td> <td width="100%" class=caption3><span class=header>&nbsp;<a href="{$indexphp}"><b>{$sitename}</b></a> <b class=bulletHead>—›</b> <a href="{$indexphp}action=vtopic&amp;forum={$forum}"><b>{$forumName}</b>... 

553. Posted: 24 Apr 2004 00:47 - Re-cycled / Changing the title from miniBB forums to my own choice
    Is there any way to change the title minibb forums :: to something like mypage.com :: . I know that I can change it in header at $title, but then it doesn't change when the user tries to register or something else. 

554. Posted: 12 Apr 2004 04:57 - Specific / can I change the .html template files to .shtml
    I need some help bad! I've read the manual and read previous post on including your own php into the main_header.html, but for some reason things are working out for me. I have another php script that places a random banner (image) on the clients website. I want the banner displayed in the main_header... 

555. Posted: 7 Apr 2004 17:32 - Re-cycled / PHP in header and/or footer
    You need to read contents of this file into variable (for example, from bb_plugins.php) and then simply to include this variable in main_header.html For example: $my_variable='Content Content Content Content etc.'; Then paste {$my_variable} into main_header.html... $my_variable can have any content... 

556. Posted: 7 Apr 2004 17:27 - Re-cycled / PHP in header and/or footer
    This is what I want to do - include /files/topheader.html in main_header.html 

557. Posted: 6 Apr 2004 01:10 - Specific / Wordpress' PHP Header/footer
    ... fwrite($pipes[0], $code); fclose($pipes[0]); $res=""; while(!feof($pipes[1])) { $res .= fgets($pipes[1], 1024); } fclose($pipes[1]); $phpfooter = $res; proc_close($process); } return $res; } $phpheader = execute('./templates/php_header.php'); $phpfooter = execute('./templates/php_footer.php'); ?> good luck. Rusty 

558. Posted: 26 Mar 2004 17:44 - Re-cycled / PHP in header and/or footer
    How can I add PHP in the header/footer 

559. Posted: 9 Feb 2004 07:34 - Specific / Wordpress' PHP Header/footer
    arthuc01 :) yes you can .. you need to learn a bit programming though for example in some php script there's $wpheader variable you include this script in bb_plugins.php for example using include 'somescript.php'; directive and then $wpheader becomes available in all other... 

560. Posted: 8 Feb 2004 22:16 - Specific / Wordpress' PHP Header/footer
    The trouble I have with that is that if I want to include PHP in the header and footer. If all I needed to do was include plain text I can do bb_plugins.php.... <?php $wpheader="my site"; $wpfooter="blah"; ?> And... 

» Messages | Topic titles
Page  Page 28 of 31:  « Previous  1  ...  27  28  29  30  31  Next » 
 
miniBB Support Forums Powered by Forum Software miniBB ® Home  Features  Requirements  Demo  Download  Showcase  Gallery of Arts
Compiler  Premium Extensions  Premium Support  License  Contact Us
Get the Private Messaging add-on: allow your miniBB-forums members to communicate with each other.


  ⇑