Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Gaurav Grv Robinson
    • Profile
    • Following 1
    • Followers 1
    • Topics 11
    • Posts 67
    • Best 8
    • Groups 0

    Gaurav Grv Robinson

    @Gaurav Grv Robinson

    9
    Reputation
    873
    Profile views
    67
    Posts
    1
    Followers
    1
    Following
    Joined Last Online

    Gaurav Grv Robinson Unfollow Follow

    Best posts made by Gaurav Grv Robinson

    • RE: Plugin for Referral System

      I need this too..

      posted in Plugin Requests
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • NodeBB v1.0.0 and email settings.

      I wish to use our own email server for sending emails but I could only find gmail settings. I also could not find any plugin in the plugins download section which would let me use my own SMTP settings.

      posted in General Discussion
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: [nodebb-plugin-rss] RSS Feed plugin

      Does not work on 1.0.1
      Gives error "No new feed is returned" for any and every kind of feed.

      posted in NodeBB Plugins
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: Is there any development plan for App( iOS & Android)?

      +1 to this awesome development idea.

      posted in Feature Requests
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: Who is using NodeBB?

      @baris said:

      Kano World

      Kano World Studio
      are using some other platform, I guess. If its nodebb, then they've customized the shit out of it.

      posted in General Discussion
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • BG issue

      I have modified the login/registration pages of my nodebb instance running persona theme. The tpl files have been modified so that a unique image bg is loaded every time the login/registration page is opened or refreshed.

      All seems to be working fine but there is this strange issue - any page (recent/poplar/categories etc) that is accessed from the login/registration page also gets the same bg as of the login/registration page.. The other pages get the normal bg only after they are refreshed.

      Please help me out with this issue.

      My Site: http://diskuz.com

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: Hiring developers for NodeBB plugin development.

      @yariplus Had a word with him, I guess he is already busy or tied up with other things.

      posted in NodeBB Development
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • Pull down menu for categories

      I use the recent posts page as my home on my forum running nodebb. But I really like discourse's approach on showing categories - a pull down menu. 0_1457634154048_dismenu.PNG
      How can I implement such in a menu on the recent posts page in persona theme ?

      posted in NodeBB Development
      Gaurav Grv Robinson
      Gaurav Grv Robinson

    Latest posts made by Gaurav Grv Robinson

    • RE: [nodebb-plugin-ns-points] NS Points, Forum Gamification

      Not compatible with V1.0.2 ?

      posted in NodeBB Plugins
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus WOW! You're the man. It seems to be working fine.

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus said in BG issue:

      document.body.style.background = "url(http://theurl/image.png)"

      document.body.style.background = "url('/images/bgimages/'+num+'.jpg');
      does not work.

      but
      document.body.background = '/images/bgimages/'+num+'.jpg';
      works

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus corrected a stupid mistake and it seems to work now. But there is yet another issue, if any other page is opened first except the login/register page and if from that page the login/register pages are accessed, they get the same bg i.e the one without an image.

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus put the entire code in the custom header section, still does not work.

      <script>
      $(function(){
      function ChangeIt(){
      var num = Math.ceil( Math.random() * totalCount );
      document.body.background = '/images/bgimages/'+num+'.jpg';
      document.body.style.backgroundSize = '50 0%%';
      document.body.style.backgroundRepeat = 'fixed';
      document.body.style.backgroundAttachment='fixed';
      document.body.style.MozBackgroundSize = 'cover';
      document.body.style.backgroundSize = 'cover';
      }

      // Initial load.
      if (app.template === 'login' || app.template === 'register') ChangeIt();

      // New page loading.
      $(window).on('action:ajaxify.start', function (ev, data) {
      if (data.url === 'login' || data.url === 'register') {
      ChangeIt();
      } else {
      document.body.style.background = "#f0f0f0";
      }
      });
      });
      </script>

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus said in BG issue:

      document.body.style.background

      Duly noted. Btw the entire above mentioned code has to go in the header, right ?

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      @yariplus I am a noob and I am confused. What goes in the header and what part is to be called ?

      Putting the entire following thing does not work.

      <script>
      $(function(){
      function ChangeIt(){
      var num = Math.ceil( Math.random() * totalCount );
      document.body.background = '/images/bgimages/'+num+'.jpg';
      document.body.style.backgroundSize = '50 0%%';
      document.body.style.backgroundRepeat = 'fixed';
      document.body.style.backgroundAttachment='fixed';
      document.body.style.MozBackgroundSize = 'cover';
      document.body.style.backgroundSize = 'cover';
      }

      // Initial load.
      if (app.template === 'login' || app.template === 'register') ChangeIt();

      // New page loading.
      $(window).on('action:ajaxify.start', function (ev, data) {
      if (data.url === 'login' || data.url === 'register') {
      ChangeIt();
      } else {
      document.body.background = "#f0f0f0";
      }
      });
      });
      </script>

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: BG issue

      Tried that too, did not help.

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • RE: Registration Form Bug

      But why ? Why only check for @ in an email address ? This is so wrong.

      posted in Bug Reports
      Gaurav Grv Robinson
      Gaurav Grv Robinson
    • BG issue

      I have modified the login/registration pages of my nodebb instance running persona theme. The tpl files have been modified so that a unique image bg is loaded every time the login/registration page is opened or refreshed.

      All seems to be working fine but there is this strange issue - any page (recent/poplar/categories etc) that is accessed from the login/registration page also gets the same bg as of the login/registration page.. The other pages get the normal bg only after they are refreshed.

      Please help me out with this issue.

      My Site: http://diskuz.com

      posted in Technical Support
      Gaurav Grv Robinson
      Gaurav Grv Robinson