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

Popups not working - top bar making them unreadable

$
0
0

@kjain wrote:

When I am trying to post a new question, the pop ups are becoming unreadable as the top bar is hiding what they are saying on the top, hence breaking user interface. Here are a couple of screenshots highlighting the problem:

or look at this picture:

In both the pictures, it is invisible what the box was saying on the top.

Posts: 4

Participants: 3

Read full topic


Separate types of notifications?

$
0
0

@mei wrote:

Is there a way to separate the types of notifications so a user can immediately tell how many private messages they got vs @mentions/replies?

Much like this:

Where you can see there are 8 @mentions/replies notifications and 3 private messages, separated also by different icons/links.

Right now it seems they are grouped into your avatar link on the top right navigation and the only way to tell apart notification types are via the left icon (envelope icon for PM, @ icon for @mention, etc.)

Posts: 2

Participants: 2

Read full topic

Why I can't see the topic statistics widget

"staged" user doesn't get email yet?

$
0
0

@carlokok wrote:

It could very well be I'm too early with this question, but do I need to do anything special to get staged, email in-users to get a reply via email? When I mail in now i don't get a reply, nor when I reply on the site do I get a mail reply.

got these two checked:
-v- Change this category to only contain messages.
-v- Accept emails from anonymous users with no accounts

Posts: 3

Participants: 2

Read full topic

How to anonymize Google Analytics?

$
0
0

@yeapea wrote:

Hello,

we need to anonymize IPs in Germany for using Google Analytics. How I can activate this in admin settings?

For GA universal code:

ga('create', 'UA-XXXXXXX-X', 'website.de');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');

For classic GA code:

_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_trackPageview']);

Best regards

Posts: 1

Participants: 1

Read full topic

Subscribe group of users to category

$
0
0

@adopilot wrote:

I am trying to build up mail lists upon my discource instance.
I have my users at groups.
I have category for attaching group email to it
Is there way to connect (subscribe) all users at one group to categoy.

Posts: 6

Participants: 2

Read full topic

Does it support ipv6 address in app.yml?

$
0
0

@doudou wrote:

I want to set the smtp address a ipv6 address in app.yml, after rebuild, it seems that the mail don't wrok, but ipv4 works.

How to resolve?

@sam

Posts: 2

Participants: 2

Read full topic

Sending out too many emails

$
0
0

@torulv wrote:

Today some users have experienced that we are sending out the digest 3-6 times.

Altso i noticed this in the dashboard: Some problems have been found with your installation of Discourse:
There are 6 email jobs that failed. Check your app.yml and ensure that the mail server settings are correct. See the failed jobs in Sidekiq.

The app.yml is correct and i have not had any problems before untill now.

Just updated the forum to v1.5.0.beta6 +30

Posts: 1

Participants: 1

Read full topic


Isolate login page div for custom css

$
0
0

@mei wrote:

Is there a way to isolate specific div's on the login page? I'm trying to create a landing page (my forum is set to private). I know you can't target #ember1234 since that number changes constantly, but any more general div's affects the rest of the forum.

It doesn't appear that I can add inline CSS directly into my HTML on the login page either.

Unfortunately my knowledge extends only to CSS, so I don't know if there's a way to do this by adding a script to the header or not.

Is what I'm trying to achieve possible?

I'm just needing to apply this code, but only on the login page:

#ember1465 {
    width: 73%;
    margin: 0px auto;
}

#ember1465 h1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #FBC600;
    margin-bottom: 30px;
    text-align: center !important;
    padding: 20px;
    border: 10px solid #E8E8E8;
    line-height:30px;
}

#ember1465 a {
    background-color: #DA3982;
    display: inline-block !important;
    margin: 0px !important;
    padding: 5px 15px;
    color: #FFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

Thanks!

Posts: 7

Participants: 2

Read full topic

Script in /head broke site

$
0
0

@Grex315 wrote:

I was copying over a script i created on my test site and ended up missing a close tag. Bad copy/paste job. This broke my site and i can no longer get to the customization screen to change it. Is there a way I can get to this from another way.

Posts: 11

Participants: 4

Read full topic

Groups and Group-Titles

$
0
0

@yeapea wrote:

Hello,

Testing setup: two custom groups.

1st: Proved_Members / Title: Proved Member -- not a autom. primary group
2nd: Team_Members / Title: Team Member -- a autom. primary group

Group-Owner is a admin user, now you're adding you real user (not the admin) to the first group and the user has "Proved Member" as title. Now you're adding this user to your 2nd group also, but the user has still the old title. Okay, now you're deleting the first group from your testing patient, and his title is still from the first group. You has to delete the title manually. :confused:

It's confusing me :frowning:

Best regards

Posts: 1

Participants: 1

Read full topic

Create custom db table and fields from plugin

$
0
0

@deviousmachin3 wrote:

Hi everyone, I'm working on developing a new plugin and I need to store some values in the database but I do not want to modify the discourse base system in any fashion. I've read through the beginners guide on plugin development and I did not see anything addressing this, essentially what i need is a table that has two fields that reference a single user that links another user or multiple users.

database -> plugin_users -> column 1 would be user_id and column 2 could be a comma separated list of user_ids.

Ideally I would also be able to query this data to pull those values from an XHR request, as well as set those values via an xhr request, is this possible with the current discourse plugin model and if so how would one go about integrating this?

Posts: 5

Participants: 2

Read full topic

Problem with digest

$
0
0

@kaliha wrote:

Hello. After 2 updates sidekiq doesn't send digest email. Here's what I see in the log:

Jobs::HandledExceptionWrapper: Wrapped I18n::MissingTranslationData: translation missing: ru.time.formats.short_no_year

I've added

datetime_formats: &datetime_formats
  formats:
    # Format directives: http://ruby-doc.org/core-2.2.0/Time.html#method-i-strftime
    short: "%m-%d-%Y"
    # Format directives: http://ruby-doc.org/core-2.2.0/Time.html#method-i-strftime
    short_no_year: "%B %-d"
    # Format directives: http://ruby-doc.org/core-2.2.0/Time.html#method-i-strftime
    date_only: "%B %-d, %Y"

to server.ru.yml and restarted the container, but email still not sending.

Posts: 3

Participants: 2

Read full topic

Sidekiq job: Email for group mention notification fails

$
0
0

@Yuun wrote:

On current beta+35 (latest as of ~7 am EST, commit: 08ae5f8, not quite latest).

Job:
Jobs::UserEmail.delayed_perform

Arguments:
{:type=>:group_mentioned, :user_id=>25, :notification_id=>18770, :current_site_id=>"default"}

Error:
Jobs::HandledExceptionWrapper:Wrapped
Discourse::InvalidParameters:type

Pops in up admin/logs as well, with less detail.

Job exception: type
Backtrace:
/var/www/discourse/app/jobs/regular/user_email.rb:60:in 'execute'
/var/www/discourse/app/jobs/base.rb:154:in block (2 levels) in 'perform'

Posts: 1

Participants: 1

Read full topic

Using Discourse with SparkPost

$
0
0

@tdsteve wrote:

I can't get my Discourse installation to work with SparkPost. Let's say my domain is example.com. I have it registered and verified as a sending domain with SparkPost. The relevant part of my app.yml looks like this:
DISCOURSE_HOSTNAME: 'www.example.com'
DISCOURSE_SMTP_ADDRESS: smtp.sparkpostmail.com
DISCOURSE_SMTP_PORT: 587
DISCOURSE_SMTP_USER_NAME: SMTP_Injection
DISCOURSE_SMTP_PASSWORD: (api key)

Yet when I try to complete my Discourse setup by creating an admin account, I do not receive the confirmation email. What's going on here? I have read the email support thread.

Thanks!

Posts: 1

Participants: 1

Read full topic


Rationale Behind Latest As Default Homepage View

$
0
0

@Rob_Waters wrote:

In the default topic, "READ ME FIRST: Getting Started," it says:

"We strongly recommend sticking with this homepage for small and medium
communities until you start getting lots of new topics every day."

Is there a discussion anywhere around here that gives some background on this recommendation? I ask because it's not what I'm used to as a forum administrator, and I'd like to make sure I'm not missing anything before I consider changing the default view to something more traditional like Categories.

Posts: 2

Participants: 2

Read full topic

Move threads in category N to category M after X days

$
0
0

@Rod_James wrote:

I would like to have threads move between two categories, on a timed basis.

What's the best way to accomplish this?

Posts: 1

Participants: 1

Read full topic

Icon next to username on topics?

$
0
0

@charleswalter wrote:

I see on the Discourse Meta site that the co-founders have an icon (moderator shield) next to their name. Is this something that can be configured in badges or some other location?

We are trying to figure out how to provide more visible recognition to our users who achieve different badges / levels of participation in the community, without having to visit their profile. We believe this can help provide better gamification, because reaching different levels would have more meaning.

On other communities, we've seen things like displaying ranks, registration date, number of posts, number of likes, etc, directly on the topic page. I can understand that this can get a bit clunky, but perhaps there are some things that could be considered as a plugin or an option.

Posts: 6

Participants: 4

Read full topic

How to tell if a post is a reply or a topic?

$
0
0

@rubydoob wrote:

Is it possible to ONLY look at the post table and be able to tell if a particular row is a topic or a reply?

I thought reply_to_post_number would tell me this but doesn't look like it.

Posts: 4

Participants: 2

Read full topic

How to catch click events within topic posting form with jquery?

$
0
0

@Joey_Tuan wrote:

I'm trying to integrate discourse into our existing gamification system for our main site. (We're using captainup which is based on an event-driven point system)

I can catch the New Topic click just fine, but can't catch any of the click events within the topic form popup (the main one I want being the Create Topic button)

I know this is due to ember, which I'm new to - any tips?

Posts: 4

Participants: 2

Read full topic

Viewing all 60613 articles
Browse latest View live




Latest Images