The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
4 posters

    I need to change the location of the forum`s description.(see the S.S for more info)..

    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 25/1/2016, 04:22

    Technical Details


    Forum version : #phpBB2
    Position : Founder
    Concerned browser(s) : Mozilla Firefox, Google Chrome, Internet Explorer, Opera, Safari, Other
    Screenshot of problem : (https://i.servimg.com/u/f68/19/09/35/48/want_t10.png) , (https://i.servimg.com/u/f68/19/09/35/48/want_h10.png)
    Who the problem concerns : All members
    Forum link : http://lt-rp.forumur.net

    Description of problem

    Hello,

    I want to move the forum`s description inside the forum..(see the attached screen shots for more info) plzz help me guys
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by SLGray 25/1/2016, 04:26

    AP > General > Forum > Categories & Forums
    Modify the ones you want and add the  information in the forum description box.



    I need to change the location of the forum`s description.(see the S.S for more info).. Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 25/1/2016, 04:31

    SLGray wrote:AP > General > Forum > Categories & Forums
    Modify the ones you want and add the  information in the forum description box.

    Thanks for the quick response but i want to change the location of the forum`s description.. see the screen shots..
    1. https://i.servimg.com/u/f68/19/09/35/48/want_t10.png
    2. https://i.servimg.com/u/f68/19/09/35/48/want_h10.png


    Last edited by farhaz.butt.33 on 25/1/2016, 04:39; edited 1 time in total (Reason for editing : Adding the link of S.Ss)
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by SLGray 25/1/2016, 04:41

    So you want the forum's description to be near the date information?



    I need to change the location of the forum`s description.(see the S.S for more info).. Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 25/1/2016, 04:44

    SLGray wrote:So you want the forum's description to be near the date information?

    Yes, or somewhere else, but i want it inside that forum.
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 25/1/2016, 16:55

    plzzz help me,
    anyone???

    @SLGray help me plzz, I know you can help me..
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 29/1/2016, 14:35

    bump!!
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by 10spetter10 29/1/2016, 18:29

    My guess is that you can't change this with template modifications, so it needs to be done with js. I'm not the best with js but this seems to work (placing on the subforums):

    Code:
    $(function() {
      var storage = window.localStorage;
      var cacheTime = 24*60*60*1000;
     
      // controleer of storage bestaat
      if (storage.forumDesc && storage.forumDescExp > +new Date - cacheTime) addDescription();
      else loadDescription();
     
      function addDescription() {
          $('body').append('<div id="temp2">'+storage.forumDesc+'</div>');
          var id = $(location).attr('pathname').substring(1).split('-');
          $('#plus_menu').closest('table').after('<div id="forumdesc"></div>');
          $('#forumdesc').html($('#temp2 #'+id).text());
          $('#temp2').remove();
      };
     
      function loadDescription() {
          $('body').append('<div id="temp"></div><div id="storage"></div>');   
          $('#temp').load('/forum .hierarchy a, .hierarchy + .genmed',function(){
            $('#temp > a').each(function(){
            var url = $(this).attr('href').substring(1).split('-');
            var id = url[0];
            $('#storage').append('<span id="'+ $(this).attr('href').substring(1).split('-')[0] +'">'+$(this).next().text()+'</span>');
            });
            if (storage) storage.forumDesc = $('#storage').html(), storage.forumDescExp = +new Date;
        $('#temp, #storage').remove();
        addDescription();
          });
      };
    });

    There might be a more efficient way but then again, I'm not super with js.

    You can edit the box of the description with this tag in css:
    Code:
    #forumdesc
    .
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 30/1/2016, 05:12

    10spetter10 wrote:My guess is that you can't change this with template modifications, so it needs to be done with js. I'm not the best with js but this seems to work (placing on the subforums):

    Code:
    $(function() {
      var storage = window.localStorage;
      var cacheTime = 24*60*60*1000;
     
      // controleer of storage bestaat
      if (storage.forumDesc && storage.forumDescExp > +new Date - cacheTime) addDescription();
      else loadDescription();
     
      function addDescription() {
          $('body').append('<div id="temp2">'+storage.forumDesc+'</div>');
          var id = $(location).attr('pathname').substring(1).split('-');
          $('#plus_menu').closest('table').after('<div id="forumdesc"></div>');
          $('#forumdesc').html($('#temp2 #'+id).text());
          $('#temp2').remove();
      };
     
      function loadDescription() {
          $('body').append('<div id="temp"></div><div id="storage"></div>');   
          $('#temp').load('/forum .hierarchy a, .hierarchy + .genmed',function(){
            $('#temp > a').each(function(){
            var url = $(this).attr('href').substring(1).split('-');
            var id = url[0];
            $('#storage').append('<span id="'+ $(this).attr('href').substring(1).split('-')[0] +'">'+$(this).next().text()+'</span>');
            });
            if (storage) storage.forumDesc = $('#storage').html(), storage.forumDescExp = +new Date;
        $('#temp, #storage').remove();
        addDescription();
          });
      };
    });

    There might be a more efficient way but then again, I'm not super with js.

    You can edit the box of the description with this tag in css:
    Code:
    #forumdesc
    .

    Not working Sad


    plzzzz help me guys Sad
    brandon_g
    brandon_g
    Manager
    Manager


    Male Posts : 10113
    Reputation : 923
    Language : English
    Location : USA

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by brandon_g 30/1/2016, 05:48

    farhaz.butt.33 wrote:
    10spetter10 wrote:My guess is that you can't change this with template modifications, so it needs to be done with js. I'm not the best with js but this seems to work (placing on the subforums):

    Code:
    $(function() {
     Â  var storage = window.localStorage;
     Â  var cacheTime = 24*60*60*1000;
     Â 
     Â  // controleer of storage bestaat
     Â  if (storage.forumDesc && storage.forumDescExp > +new Date - cacheTime) addDescription();
     Â  else loadDescription();
     Â 
     Â  function addDescription() {
     Â     $('body').append('<div id="temp2">'+storage.forumDesc+'</div>');
     Â     var id = $(location).attr('pathname').substring(1).split('-');
     Â     $('#plus_menu').closest('table').after('<div id="forumdesc"></div>');
     Â     $('#forumdesc').html($('#temp2 #'+id).text());
     Â     $('#temp2').remove();
     Â  };
     Â 
     Â  function loadDescription() {
     Â     $('body').append('<div id="temp"></div><div id="storage"></div>');   
     Â     $('#temp').load('/forum .hierarchy a, .hierarchy + .genmed',function(){
     Â        $('#temp > a').each(function(){
             var url = $(this).attr('href').substring(1).split('-');
             var id = url[0];
             $('#storage').append('<span id="'+ $(this).attr('href').substring(1).split('-')[0] +'">'+$(this).next().text()+'</span>');
     Â        });
     Â        if (storage) storage.forumDesc = $('#storage').html(), storage.forumDescExp = +new Date;
        $('#temp, #storage').remove();
        addDescription();
     Â     });
     Â  };
    });

    There might be a more efficient way but then again, I'm not super with js.

    You can edit the box of the description with this tag in css:
    Code:
    #forumdesc
    .

    Not working Sad


    plzzzz help me guys Sad

    Please do not use bold or colored, as this is reserved for moderation purposes, please be sure to read the rules so you can prevent breaking the rules in the future. Thanks ~ brandon_g



    I need to change the location of the forum`s description.(see the S.S for more info).. Brando10
    Remember to mark your topic I need to change the location of the forum`s description.(see the S.S for more info).. Solved15 when a solution is found.
    General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

    I need to change the location of the forum`s description.(see the S.S for more info).. Scre1476
    Team Leader
    Review Section Rules | Request A Review | Sticker Points
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 1/2/2016, 04:03

    brandon_g wrote:
    farhaz.butt.33 wrote:
    10spetter10 wrote:My guess is that you can't change this with template modifications, so it needs to be done with js. I'm not the best with js but this seems to work (placing on the subforums):

    Code:
    $(function() {
     Â  var storage = window.localStorage;
     Â  var cacheTime = 24*60*60*1000;
     Â 
     Â  // controleer of storage bestaat
     Â  if (storage.forumDesc && storage.forumDescExp > +new Date - cacheTime) addDescription();
     Â  else loadDescription();
     Â 
     Â  function addDescription() {
     Â     $('body').append('<div id="temp2">'+storage.forumDesc+'</div>');
     Â     var id = $(location).attr('pathname').substring(1).split('-');
     Â     $('#plus_menu').closest('table').after('<div id="forumdesc"></div>');
     Â     $('#forumdesc').html($('#temp2 #'+id).text());
     Â     $('#temp2').remove();
     Â  };
     Â 
     Â  function loadDescription() {
     Â     $('body').append('<div id="temp"></div><div id="storage"></div>');   
     Â     $('#temp').load('/forum .hierarchy a, .hierarchy + .genmed',function(){
     Â        $('#temp > a').each(function(){
             var url = $(this).attr('href').substring(1).split('-');
             var id = url[0];
             $('#storage').append('<span id="'+ $(this).attr('href').substring(1).split('-')[0] +'">'+$(this).next().text()+'</span>');
     Â        });
     Â        if (storage) storage.forumDesc = $('#storage').html(), storage.forumDescExp = +new Date;
        $('#temp, #storage').remove();
        addDescription();
     Â     });
     Â  };
    });

    There might be a more efficient way but then again, I'm not super with js.

    You can edit the box of the description with this tag in css:
    Code:
    #forumdesc
    .

    Not working Sad


    plzzzz help me guys Sad

    Please do not use bold or colored, as this is reserved for moderation purposes, please be sure to read the rules so you can prevent breaking the rules in the future. Thanks ~ brandon_g

    sorry, but can you help me?
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 2/2/2016, 21:23

    Bump Sad
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 8/2/2016, 04:29

    Bump!!!!
    farhaz.butt.33
    farhaz.butt.33
    New Member


    Posts : 13
    Reputation : 1
    Language : English

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by farhaz.butt.33 8/2/2016, 04:29

    Bump
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51498
    Reputation : 3523
    Language : English
    Location : United States

    I need to change the location of the forum`s description.(see the S.S for more info).. Empty Re: I need to change the location of the forum`s description.(see the S.S for more info)..

    Post by SLGray 8/2/2016, 05:40

    farhaz.butt.33 wrote:Bump!!!!

    farhaz.butt.33 wrote:Bump
    Second Reminder:

    Please don't double post. Your post needs to be separated by at least 24 hours before bumping. Please use the edit button instead!



    I need to change the location of the forum`s description.(see the S.S for more info).. Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.

      Current date/time is 23/9/2024, 02:23