Ipb Help Topic

Discussion in 'Gaming' started by Andrew, Jun 6, 2005.

  1. TheBrotherhood

    TheBrotherhood Well-Known Member

    Posts:
    2,029
    Likes Received:
    0
    Joined:
    May 28, 2005
    My main thing was the &ispcheck=1 and &ispcheck=reg
    They work better. Also ispcheck=reg actually works for IPB v1.2/1.3 and neither one of you posted that anywhere in here.
    I was just trying to help out ^_^
     
  2. Encrypted-67

    Encrypted-67 Well-Known Member

    Posts:
    1,737
    Likes Received:
    0
    Joined:
    Jan 3, 2005
    Location:
    In GameRenders
    But i had a 'illegal' version of ipb and it still didnt have a 5555, 55555 or nothing it looked entirely legal. Just thought i say :P
     
  3. Fate

    Fate Well-Known Member

    Age:
    29
    Posts:
    5,655
    Likes Received:
    0
    Joined:
    Dec 29, 2004
    Location:
    Manchester, UK
    It's possible to make illegal IPB look like legal IPB, pretty simple really.
     
  4. donkey313

    donkey313 Well-Known Member

    Posts:
    522
    Likes Received:
    0
    Joined:
    Jul 3, 2005
    Skinblizzards domain expired.
     
  5. BumD!ckBum

    BumD!ckBum Well-Known Member

    Age:
    37
    Posts:
    874
    Likes Received:
    0
    Joined:
    Jun 6, 2005
    Location:
    UK
    any chance of getting some help installing rep and money mod for my ipb..?

    will use credits to pay.

    couple of quwestions too.

    i was wondering if you need to acytually pay for the board to install mods?

    also how do you upload to your board ?

    ..im such a noob its quite tragic really :)
     
  6. MayurP

    MayurP Well-Known Member

    Posts:
    481
    Likes Received:
    0
    Joined:
    May 9, 2005
    Location:
    Chicago, Illinois
    umm i think you would need a paid version because i heard trial versions are encoded. not sure tho.
     
  7. ShotokanTiger

    ShotokanTiger Well-Known Member

    Posts:
    2,283
    Likes Received:
    0
    Joined:
    Jul 13, 2005
    Location:
    Palestine
    thanks alot , very helpful things , but i dont understand how to add icons:-
    {ipb.lang['tb_help']}< href="{ipb.script_url}act=Help">{ipb.lang['tb_help']}</a>

    please explain more , thanks
     
  8. 1337 Pwn4g3

    1337 Pwn4g3 Well-Known Member

    Posts:
    1,777
    Likes Received:
    0
    Joined:
    May 4, 2005
    How do you install the shop mod?
     
  9. donkey313

    donkey313 Well-Known Member

    Posts:
    522
    Likes Received:
    0
    Joined:
    Jul 3, 2005
    Where is skin blizzards?
     
  10. ShotokanTiger

    ShotokanTiger Well-Known Member

    Posts:
    2,283
    Likes Received:
    0
    Joined:
    Jul 13, 2005
    Location:
    Palestine
    BFTP plz explain more about adding icons..
     
  11. MayurP

    MayurP Well-Known Member

    Posts:
    481
    Likes Received:
    0
    Joined:
    May 9, 2005
    Location:
    Chicago, Illinois
    Do this.

    1) Go to admin cp
    2) Go to Skin Manager under Skins & Templates
    3) Click on the skin then Edit Root Skin Template HTML
    4) All Global HTML >> global_board_header
    5) Find {ipb.lang['tb_help']} or something similar like that and if you know basic html then you should be fine ;)
     
  12. ShotokanTiger

    ShotokanTiger Well-Known Member

    Posts:
    2,283
    Likes Received:
    0
    Joined:
    Jul 13, 2005
    Location:
    Palestine
    thanks alot Mayur , that really helps but my problem isnt only me not knowing where this code is , i wanna know how .. by using this peice of html , could i (add , edit , remove) buttons from the from , and link them to pages...
    thx again
     
  13. MayurP

    MayurP Well-Known Member

    Posts:
    481
    Likes Received:
    0
    Joined:
    May 9, 2005
    Location:
    Chicago, Illinois
    alrite i teach you. here is the default skins code for the navigation links.

    Code:
    [url="{ipb.vars['home_url']}"]{ipb.vars['home_name']}[/url]</p>
      
    
    
    <if="ipb.vars['blog_default_view'] != """>
    [url="{ipb.script_url}automodule=blog"]{ipb.lang['blog']}[/url]
    </if>
    <if="ipb.vars['gallery_images_path'] != ''">
    [url="{ipb.script_url}act=module&module=gallery"]{ipb.lang['gallery']}[/url]
    </if>
    
    	[url="{ipb.script_url}act=Help"]{ipb.lang['tb_help']}[/url][url="{ipb.script_url}act=Search&amp;f={ipb.input['f']}"]{ipb.lang['tb_search']}[/url][url="{ipb.script_url}act=Members"]{ipb.lang['tb_mlist']}[/url][url="{ipb.script_url}act=calendar"]{ipb.lang['tb_calendar']}[/url]
      
    Now lets say you want to add a link to the shop and you want it to appear in front of the help button. then you would add this code in front of the one for help.

    Code:
    [url="{ipb.script_url}act=store"]Store[/url]
    so now your navigation code should look something like this

    Code:
    [url="{ipb.vars['home_url']}"]{ipb.vars['home_name']}[/url]</p>
      
    
    
    <if="ipb.vars['blog_default_view'] != """>
    [url="{ipb.script_url}automodule=blog"]{ipb.lang['blog']}[/url]
    </if>
    <if="ipb.vars['gallery_images_path'] != ''">
    [url="{ipb.script_url}act=module&module=gallery"]{ipb.lang['gallery']}[/url]
    </if>
    
    	[url="{ipb.script_url}act=store"]Store[/url][url="{ipb.script_url}act=Help"]{ipb.lang['tb_help']}[/url][url="{ipb.script_url}act=Search&amp;f={ipb.input['f']}"]{ipb.lang['tb_search']}[/url][url="{ipb.script_url}act=Members"]{ipb.lang['tb_mlist']}[/url][url="{ipb.script_url}act=calendar"]{ipb.lang['tb_calendar']}[/url]
      
    you can place the links whereever you please. this is just an example for adding a button to the shop. if you need anything else then just let me know ;)
     
  14. mohib2

    mohib2 Well-Known Member

    Posts:
    1,002
    Likes Received:
    0
    Joined:
    Feb 25, 2005
    +rep Awesome thread man !!!

    great help for IPB Junkies
     
  15. donkey313

    donkey313 Well-Known Member

    Posts:
    522
    Likes Received:
    0
    Joined:
    Jul 3, 2005
    How do you get that donate link and there name comes already filled in?
     

Share This Page