Feature Requests

Discussion in 'Website Suggestions, Support and Feedback' started by Zebra Pleco, Mar 28, 2014.

  1. Zebra Pleco

    Zebra Pleco Administrator

    Joined:
    Sep 5, 2008
    Messages:
    2,017
    Likes Received:
    306
    Hi everyone.

    If you have any idea's or feature requests or extra buttons you want etc. or if you've seen something you like on another forum, let us know and we'll see if it's possible to implement them on TASA. :thumbup:
     
  2. Guest




  3. DCWarHound

    DCWarHound

    Joined:
    Feb 11, 2013
    Messages:
    1,059
    Likes Received:
    4
    Location:
    Pretoria,Sinoville
    Visitor messages,i know it was rejected in the past but it's very convenient.
     
  4. f-fish

    f-fish #unspecified

    Joined:
    Jun 27, 2009
    Messages:
    9,642
    Likes Received:
    2,259
    Location:
    JHB - Randburg
    A bit selfish but it would be cool if you can add an id on this div so that I can get rid of the wasted space ...


    [​IMG]

    Thanks Ferdie
     
  5. OP
    Zebra Pleco

    Zebra Pleco Administrator

    Joined:
    Sep 5, 2008
    Messages:
    2,017
    Likes Received:
    306
    I can't recall why it was disabled in the past, but it's enabled now. :)

    Going a bit over my head now :embarrest:. I've kind of got an idea of what you want but you'll have to walk me through it step by step, that is if I can first figure out where to do it in vb4.:p
     
  6. f-fish

    f-fish #unspecified

    Joined:
    Jun 27, 2009
    Messages:
    9,642
    Likes Received:
    2,259
    Location:
    JHB - Randburg
    Thanks but I think I have cracked it ... using CSS Path to get to the node (actually a whole new world just opened to me ;-)



    var node = document.querySelector ("#inner > div.body_wrapper > div > div:nth-child(2)");
    node.style.display = 'none';
     
  7. Swagasaurus

    Swagasaurus

    Joined:
    Dec 17, 2013
    Messages:
    1,707
    Likes Received:
    9
    Location:
    Centurion
    I miss the side bar on the left for quick access to the different forums, it is now a shlep to go find the different sections the old way...
     
  8. f-fish

    f-fish #unspecified

    Joined:
    Jun 27, 2009
    Messages:
    9,642
    Likes Received:
    2,259
    Location:
    JHB - Randburg
    Ok a slight mod but here are the results ... leaving me with a very clean and compact TASA.

    [​IMG]


    [​IMG]


    I really like the Home page now ...


    [​IMG]

    Below the Tampermokey script that works on chrome.

    Code:
    // ==UserScript==
    // @name       MyTASA usablity
    // @version    0.2
    // @description  Clean-up TASA look 
    // [USER=449]@Grant[/USER]        none
    // @include      */showthread.php*
    // @include      */showpost.php*
    // @include      */viewtopic.php*
    // @include      */index.php?showtopic=*
    // @include      */index.php?topic=*
    // @include      */index.php/topic=*
    // @include      [url="http://www.tropicalaquarium.co.za/*"]404 Not Found
    [/url]
    // @copyright  Public Domain, free for everyone
    // ==/UserScript==
    
    
    document.getElementById('header-middle').parentNode.removeChild(document.getElementById('header-middle'));
    document.getElementById('header').style.height = "90px";
    document.getElementsByClassName('above_body')[0].style.height = "121px";
    document.getElementsByClassName('below_body')[0].style.display = 'none';
    
    
    
    
    if (document.getElementById('above_postlist')){
        document.getElementById('above_postlist').parentNode.removeChild(document.getElementById('above_postlist'));
    }
    
    
    if (document.getElementById('breadcrumb')){
        document.getElementById('breadcrumb').style.marginTop = "0px";
        document.getElementById('breadcrumb').style.marginBottom = "0px";
        var node = document.querySelector ("#inner > div.body_wrapper > div > div:nth-child(2)");
        node.parentNode.removeChild(node);
        
    }
    
    
    if (document.getElementById('vba_news43')){
        var node = document.querySelector ("#inner > div.body_wrapper > div > table > tbody > tr > td:nth-child(3)");
        node.parentNode.removeChild(node);
        var node1 = document.querySelector ("#inner > div.body_wrapper > div > table > tbody > tr > td:nth-child(1)");
        node1.parentNode.removeChild(node1);
    }
    
    
    if (document.getElementById('pagetitle')){
        document.getElementById('pagetitle').style.padding = "0px 0px 0px 0px";
        document.getElementById('pagetitle').style.paddingTop = "0px";
        document.getElementById('pagetitle').style.background = "lightgray";
    }
    
    
    if (document.getElementById('thread_controls')){
        document.getElementById('thread_controls').parentNode.removeChild(document.getElementById('thread_controls'));
    }
    
    
    if (document.getElementById('above_searchresults')){
        document.getElementById('above_searchresults').parentNode.removeChild(document.getElementById('above_searchresults'));    
    }
    
    
    
    Later Ferdie
     
    Last edited by a moderator: Oct 2, 2016
  9. OP
    Zebra Pleco

    Zebra Pleco Administrator

    Joined:
    Sep 5, 2008
    Messages:
    2,017
    Likes Received:
    306
    Fixed.
     
  10. f-fish

    f-fish #unspecified

    Joined:
    Jun 27, 2009
    Messages:
    9,642
    Likes Received:
    2,259
    Location:
    JHB - Randburg
  11. Swagasaurus

    Swagasaurus

    Joined:
    Dec 17, 2013
    Messages:
    1,707
    Likes Received:
    9
    Location:
    Centurion
    Thanks.
     
  12. OP
    Zebra Pleco

    Zebra Pleco Administrator

    Joined:
    Sep 5, 2008
    Messages:
    2,017
    Likes Received:
    306
  13. TaahirS

    TaahirS

    Joined:
    Feb 23, 2015
    Messages:
    81
    Likes Received:
    1
    Location:
    Cape Town (southern suburbs)
    Under the What's new button maybe just show the thread name once, indicating that there are unread posts in that thread and not have a new one evry time someone posts in that thread. Kind of like ...(can I put forum name here?)
    Just a suggestion:):biggrin:
     
  14. OP
    Zebra Pleco

    Zebra Pleco Administrator

    Joined:
    Sep 5, 2008
    Messages:
    2,017
    Likes Received:
    306
    Use the "New Posts" link instead. :)
     
  15. TaahirS

    TaahirS

    Joined:
    Feb 23, 2015
    Messages:
    81
    Likes Received:
    1
    Location:
    Cape Town (southern suburbs)
    Last edited by a moderator: Oct 2, 2016
  16. Quue

    Quue

    Joined:
    Jul 13, 2012
    Messages:
    605
    Likes Received:
    8
    Location:
    Cape Town

    @Ferdie Front End Dev?
     
  17. f-fish

    f-fish #unspecified

    Joined:
    Jun 27, 2009
    Messages:
    9,642
    Likes Received:
    2,259
    Location:
    JHB - Randburg
    Lol - noway I am colour blind with lingering dyslexia - my first foray into html was probably around 95/96 and I was quickly told that combinations of [TABLE="class: color_table, width: 100%"]
    [TR]
    [TD]#CCCCCC
    and
    #FFCC00
    for background colours actually do not look that great for intranet pages ;-)


    While I am an in the this thread ..

    MyAquarium online aquarium database - MyAquarium tab at the top .. is it not time to put that to bed, I am not sure if anybody is using it.


    Later Ferdie



    [/TD]
    [/TR]
    [/TABLE]
     
  18. Jaco Styane

    Jaco Styane

    Joined:
    Feb 2, 2015
    Messages:
    176
    Likes Received:
    0
    Location:
    Free State
    What about a tab where you can just see all the photos that is upload by members
     

Recent Posts

Loading...
Similar Threads - Feature Requests Forum Date
RSS Feed Lionhead Goldfish – Uniquely Featured And Textured Species RSS Feeds May 1, 2020
Solar Pond/water feature pumps General Discussions Dec 1, 2018
seeking beginners advice on water feature fish Ponds Nov 8, 2014
New feature added Website Suggestions, Support and Feedback Mar 25, 2014
Bacterial Comparison Testhttp://www.youtube.com/watch?v=ZjMw5NQdCLc&fea ture=c4... Jungle Aquatics Sep 13, 2013
Maxspect R420R featured at Kelly Tarlton's conservation zone (largest aquarium EcoWorx Africa May 6, 2013
The new Waveline DC pumps are conventional pumps but with added features that se... Jungle Aquatics Jan 25, 2013

Share This Page