Quantcast
Channel: Discourse Meta - Latest topics
Viewing all 60721 articles
Browse latest View live

Is there a safe way to not display the latest posts in the right-hand column of the forum home page?

$
0
0

@McBlu wrote:

I have noticed some discourse forums don’t have the latest posts displayed in the right-hand column of the home page and it makes for a clean look. I figure if people want the latest posts they can access it in the drop-down menu at the top of the homepage.

Is there a safe way to make it not appear that won’t compromise my forum when discourse is updated with new code? I would like the categories I have displayed on the left to take up the whole of the homepage below the header and menu.

Thanks in advance.

Posts: 2

Participants: 2

Read full topic


Caching issues in Firefox with multiple privacy plugins active?

$
0
0

@axfelix wrote:

Hi,

This is from a user of my site, not sure anyone can duplicate:

I keep encountering a bug. After a few minutes of browsing I can no longer load the forum and get a page saying “Cannot load app - It looks like you are offline! Please check your network connection and try again.”

I can reload the website after I empty my cache (and then it recurs a few minutes later of browsing). It’s occurring with the latest version Firefox for the past few days. Not sure what’s the cause…

Posts: 9

Participants: 4

Read full topic

Need Help With Dropdown Menu

$
0
0

@Jake_Fishman wrote:

Hey all,

I’m trying to modify Neil’s dropdown menu that he offers for the navigation bar: here’s his post:

I’m attempting to make a second dropdown menu, so what I did is copied Neil’s code for a second dropdown. In order to make the javascript from Neil’s to work on the second dropdown menu I had to change the ID’s of my copied code. I kept the same classes so that the css would apply to both dropdown menus. However, the issue I’m running into is that the second dropdown menu is still located in the same place as the first dropdown and I am unable to bring my cursor to the menu options before it disappears. How can I move the second dropdown menu directly below the correct hover spot?

I’m a beginner when it comes to html/css and know close to nothing about JS. So any help is appreciated!

You can see whats happening here: http://publicarkive.menshealtharkive.com/

Thanks for any suggestions

-------HTML for Both Dropdowns--------

<div id="top-navbar">
  <div id="top-navbar-links">
    <ul id="top-external-nav">
      <li class="top-ext--main" id="top-discourse-link">
        <a class="top-ext--link top-discourse-link-main" href="http://www.menshealtharkive.com/">Our Plan</a>
        <ul class="top-ext--sub" id="top-discourse-sub">
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://meta.discourse.org" target="blank">
              <span>Our Story</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="http://try.discourse.org/" target="blank">
              <span>Our Directors</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://www.discourse.org/faq/" target="blank">
              <span>Join Our Team</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://www.discourse.org/faq/" target="blank">
              <span>Social</span>
            </a>
          </li>
        </ul>
       </li>
       <li class="top-ext--main">
        <a class="top-ext--link" href="http://blog.discourse.org/" target="blank">Blog</a>
      </li>
      <li class="top-ext--main" id="top-discourse-link2">
        <a class="top-ext--link top-discourse-link-main2" href="http://www.menshealtharkive.com/">Our Plan</a>
        <ul class="top-ext--sub" id="top-discourse-sub2">
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://meta.discourse.org" target="blank">
              <span>Our Story</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="http://try.discourse.org/" target="blank">
              <span>Our Directors</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://www.discourse.org/faq/" target="blank">
              <span>Join Our Team</span>
            </a>
          </li>
          <li class="top-ext--sub-item">
            <a class="top-ext--link" href="https://www.discourse.org/faq/" target="blank">
              <span>Social</span>
            </a>
          </li>
        </ul>
       </li>
      <li class="top-ext--main">
        <a class="top-ext--link" href="https://payments.discourse.org/buy/" target="blank">Learn</a>
      </li>
    </ul>
  </div>
</div>

-----------CSS for Both Dropdowns-----------------

div#top-navbar-links {
    position: fixed;
    top: 0;
    margin:5px 0px 0px -600px;
    }

div#top-navbar {
    max-width:none; /*remove max width*/
    width: auto; /*prevent other widths taking over*/
    z-index: 1040; /*stays on top of other header*/
    float:right;
    position:relative;

    }

div#top-navbar-links a, div#top-navbar-links span {
  color:#eee;
  font-size: 14px;
}


/* js dropdown navs */
#top-external-nav {
  float: right;
  margin-top: 12px;
  position: relative;

  list-style: none;

  li.top-ext--main {
    float: left;
    margin-right: 10px;
    > a, > a:visited, > a:active {
      display: inline-block;
      padding: 6px 10px;
      font-size: 14px;
      color: #999999;
      &:hover {
        background-color: black;
      }
    }
  }

  #top-discourse-link a.top-discourse-link-main {
    padding: 6px 10px 20px 10px;
  }

  ul.top-ext--sub {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    margin-left: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0, .5);
    list-style: none;

    li.top-ext--sub-item {
      float: none;
      padding: 0;
      margin: 0;
      background-color: white;
      a, a:visited {
        display: inline-block;
        width: 190px;
        padding: 8px 10px;
        span {
          font-size: 14px;
          color: #666;
        }

        img {
          width: 20px;
          margin-right: 6px;
        }
      }

      &:hover {
        background-color: #eef;
      }
    }
  }
}

-----------JavaScript for Dropdowns--------------

<script type="text/javascript">
$(function() {
  var $topDiscourseSub = $('#top-discourse-sub');
  $('#top-discourse-link').hover(function() {
    $topDiscourseSub.show();
  }, function() {
    $topDiscourseSub.hide();
  });
});
</script>

<script type="text/javascript">
$(function() {
  var $topDiscourseSub2 = $('#top-discourse-sub2');
  $('#top-discourse-link2').hover(function() {
    $topDiscourseSub2.show();
  }, function() {
    $topDiscourseSub2.hide();
  });
});
</script>

Posts: 2

Participants: 2

Read full topic

Crashed my discourse while changing settings in admin section

$
0
0

@sebastien wrote:

Hi guys,

It seems I crashed discourse while changing some settings related to categories

image

Initially I was trying to remove all options from Top menus. As I was getting an error saying that I can’t remove “latest” from top menu, I changed “category style” to “Categories only”. Then I removed all top menus. However my discourse became really unstable and finally I ended up getting “Error 500”.

In the nginx logs, I can see some “connections refused”. We tried rebuilding the container, restarting the whole machine. nothing worked.

Any idea?

Thx
Seb

Posts: 2

Participants: 2

Read full topic

My forum disappeared because Apache got installed

iPad with external keyboard connected can't see post when replying

Adding an 'edit reason' to a post then clicking category dropdown causes page to go blank

Copy / paste from SQL MGM create table

$
0
0

@adopilot wrote:

God bless all stuff for giving us automatic table format when copy / paste text from sql MGM studio

datum SIFRA NAZIV docBrih docBroj2 napomena
02.02.2017 813 Kafe Picerja Zavidovići 000027 000026 Na temelju: Lista prodaje: 000032 datum:02.02.2017
22.03.2017 811 Kaffe Tuzla 000081 000080 Na temelju: Lista prodaje: 000080 datum:22.03.2017
22.05.2017 811 Kaffe Tuzla 000141 000140 Na temelju: Lista prodaje: 000140 datum:22.05.2017

Posts: 1

Participants: 1

Read full topic


Discourse apps?

$
0
0

@jackjjw wrote:

Hiya,
Is there an app available to run a discourse website in? Something that can be branded up as your own site?
Thanks,
Jack

Posts: 1

Participants: 1

Read full topic

No way to get period stats?

$
0
0

@mast3rd3mon wrote:

So I’ve developed a bot for a slack channel and I connected it to our discourse api mainly for posting posts. In our discourse we do a leaderboard type thing based on likes received per x amount of time.

Using NativeScript Community Forum and NativeScript Community Forum we can see the stats on the webpage, isnt there any api which can do this? I cant seem to see anything or have i just glanced over it every time?

Posts: 6

Participants: 2

Read full topic

How to reduce spacing in header image?

API - Simple count of all active users on my Discourse?

$
0
0

@Frank_Bailey wrote:

Is there a way to just get a count via the API of all active users on my Discourse installation?

Thanks in advance!

Posts: 1

Participants: 1

Read full topic

Daily badge isn't being awarded

$
0
0

@Bas wrote:

Does anyone have an idea why this badge isn’t being handed out to my manager every day?
(this is a poc to test my badge-coding skills, but yeah, I’m failing)

If I run the preview granted badges option, it properly shows up.
Other (stock) badges are being granted

SELECT ue.user_id, current_timestamp AS granted_at
FROM user_emails ue
WHERE ue.primary = true
AND ue.email= '***@***.com'

Posts: 1

Participants: 1

Read full topic

.Photography Domain Invalid as Website on Profile

$
0
0

@Splitterside wrote:

Hi,

I help run a large photography community and several of our members are trying to use the .photography domain for their website list in their profile, but receive a message saying the website is invalid. The format that is being attempted looks like this.

http://www.example.photography

But this is the error message that is received.

I’ve looked for a setting or something that would allow this type of domain, but I couldn’t find anything. How could support be added for the .photography domain?

Thanks,
-Adam

Posts: 1

Participants: 1

Read full topic

How to change "Users" label on latest view

$
0
0

@outofthebox wrote:

Hi, I would like to change the “Users” label on the latest view to read “Members”.

In advance, thank you for any guidance on the best way to do this!

Posts: 2

Participants: 2

Read full topic


Notification sent out for system message even though disabled in admin settings

$
0
0

@tobiaseigen wrote:

Continuing the discussion from Can't mute system messages:

I just had an interesting experience on my discourse - see screenshots. I have a staff group that includes more than 100 people, and they were all notified yesterday about a two year old post that is very outdated. It was a bit awkward because it was about hiring for a position that is already filled! :scream_cat:

The notification is from the system user and was sent at precisely the time when discourse downloaded a remote image for the post to local, but that shouldn’t have happened because we have it set to disable edit notifications by the system user. I also am not fully understanding why it even did this two years after the topic was posted in the first place.

Does anyone have any ideas what might have occurred here? Is it a bug? Any way to prevent it from happening again?

Posts: 1

Participants: 1

Read full topic

Staff color only highlights text

$
0
0

@Chris_S wrote:

Starting with Discourse 1.9.0.beta16, adding a staff color highlights only the text instead of the whole post as it did prior. This may be by design but thought I would check.

Steps to reproduce:

  • Add staff color to a post.

Expected Behavior:

Actual Behavior:

I created the full color post by tweaking the HTML in chrome by adding “cooked” to the class for the post.
This is for community.infinite-flight.com

Posts: 3

Participants: 2

Read full topic

Discourse doesnt works on VPS , Ubuntu 16.04 LTS x64

User create a group?

Cannot get latest topics thru API, keep getting "Account is required"

$
0
0

@fermelone wrote:

Hello,

I am trying to GET /latest.json?order=created but keep getting the HTML from the login page (I guess because I don’t have an API key with enough permissions to do that?).

However I am using my (admin’s, full trust level) API Key, and can do most other things like get Categories and Create topics, but 80% of the things, I cannot do.

Do you know what could be causing this and how can I troubleshoot/solve it?

Using my own hosted version: v1.9.0.beta15 +127
Hosted in AWS, Ubuntu 16.04

Thanks!
Fern

Posts: 1

Participants: 1

Read full topic

Viewing all 60721 articles
Browse latest View live




Latest Images