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

Amazon Oneboxing fragile & does not support regional Amazon site

$
0
0

Hrishikesh Thakre wrote:

I remember seeing a picture of a book along with a small write-up as Onebox content when Amazon link is used, Does't seems to be a case anymore. Also it doesn't work for regional sites.

Green Eggs and Ham

Dr. Seuss

“Do you like green eggs and ham?” asks Sam-I-am in this Beginner Book by Dr. Seuss. In a house or with a mouse? In a boat or with a goat? On a train or in a tree? Sam keeps asking ...

Richard Scarry's What Do People Do All Day?

Richard Scarry

Illus. in full color. Shows and tells what busy people do every day to build houses, sail ships, fly planes, keep house, and grow food.

Posts: 8

Participants: 3

Read full topic


When using "Back" button, preload previous content from local storage

$
0
0

Anton wrote:

When I click on the "Back" button and it redirects me back to Popular or New section, we could show previous list of topics (maybe cached in local storage) while loading all updates (instead of showing black "Loading..." text).

Thus it will be more static and less irritating for eyes.

Posts: 10

Participants: 3

Read full topic

Reference generic Preferences link?

Suggestion for Topic progress bar

$
0
0

Hrishikesh Thakre wrote:

I was visiting try.discourse to check another bug and hit the discussion happens so much thread noticed the side bar being little weird. Instead of showing 37 of 1000, it is just saying 37.

In case, it is not possible due to space constraints, can you please change contrast for current thread from existing

to something like

Posts: 4

Participants: 4

Read full topic

Make /login usable for open forums

$
0
0

Kane York wrote:

Continuing the discussion from Reference generic Preferences link?:

It would be nice if the /login page inspected the SiteSetting that causes it to appear, and if unregistered viewing is allowed, it changes the wording on the page.

Initial suggestion is just deleting the first sentence, but I'm sure you can come up with something better.

Posts: 2

Participants: 2

Read full topic

Error logging in through Google on mobile

Custom messages to close and Pin topics!

$
0
0

Abhishek Gupta wrote:

Would love discourse to ask for a "Close Topic" reason when i close topic. For example:

Instead of

This topic is now closed. New replies are no longer allowed.

and then editing the same post for including the reason.

Have discourse ask the reason and display the custom message .
Like:

This topic is now closed. Due to Inappropriate discussion.

Posts: 2

Participants: 2

Read full topic

Display first page to view without login

$
0
0

Sethu V wrote:

Hi, Can we have a feature (like is available in other forum s/w), where a visitor / user can view the front page with all the topics and responses, but when he tries to open any post, he is prompted for login. Currently In notice one can either permit full access (view all posts without login) or force the visitor to login to view even a single post. I run a forum of 2500+ users in a specialized management area and looking to transition over from groupsite platform (which provides the feature I have requested for here). Any plans on this?

Posts: 2

Participants: 2

Read full topic


Comrades let's join our efforts on ukrainian and russian translations

$
0
0

d1b wrote:

Привет друзья!
Как минимум несколько человек готовы начать переводить discource на русский и украинский. Сейчас нет удобного способа объединить наши усилия, но перевод может осуществляется через бальные pull-requests.

Posts: 62

Participants: 11

Read full topic

How should we implement polls?

$
0
0

Sam Saffron wrote:

Continuing the discussion from So, you want to help out with Discourse:

Almost all forum software out there supports "polls". They can be quite fun and allow you to easily gauge what people like / dislike.

@Hunter was asking for some sort of spec of how I would see this work, so here I go.

  • Polls should be designed as a standalone plugin. This important cause it ensures our extensibility story is solid and allows us, further down the line, to upgrade poll functionality outside of core releases.

  • I think polls should simple be an extension of markdown that only applies on the first post in a topic. Eg:

    <poll>
    - This is the first option
    - This is the second option
    - This is the third option
    </poll>
  • Initial implementation should only allow one vote per option.

  • Initial implementation should not allow for anonymous voting.

  • Choices must be locked in after 5 minutes

  • On initial render it should not display the results, you must either vote or click on "show results" to see them.

  • Initial implementation does not need to worry about randomising options on first view

  • Data for the polls should be stored in Topic or Post meta_data (an hstore column) or in PluginStore, a custom migration in a plugin is a major work to undertake which we can skip for now.

  • Controller to receive voting should be registered by the plugin using a rails engine, example is my blog https://github.com/samsaffron/blog

Questions / ideas?

I would like to keep the first go at this rather simple with minimal features.

Posts: 22

Participants: 13

Read full topic

Amazon link rewriting for affiliate codes

$
0
0

Lowell Heddings wrote:

As far as I know there is no way in Discourse to handle rewriting Amazon links, which leads to me double-checking to make sure people aren't trying to pull a fast one when they do post an Amazon link.

This could happen in one of two ways (or both):

  • Add code to strip all affiliate codes from any Amazon URL
  • Add code to replace and/or add affiliate codes into any Amazon URL.

I know this happened over at StackExchange a long time ago, so I'm guessing it's probably fairly easy to do.

I'm not personally that worried about adding the affiliate codes, but it would be nice to make sure that other people aren't adding them to their links, and I'm guessing it would be a really good feature for forum owners that want to make money from links on their forum.

Posts: 5

Participants: 4

Read full topic

The system user needs a cool avatar

$
0
0

Kane York wrote:

Currently, the system user's avatar is this:

(note - I had to add a hack to get that to onebox - I added &x=.png to the end of the URL. pencil that down as a bug)

I think it would be cool if we could come up with some themed avatar for the system user.

Thoughts, ideas, specific images?

wrenchwrenchwrench

Posts: 26

Participants: 11

Read full topic

User and group permissions for private categories/boards

$
0
0

Bryan Mills wrote:

I'd really like to see some more privacy settings and options built into Discourse. The intention is not to discourage pariticpation, but rather provide users with the comfort of knowing their discussions will only reach an limited and appropriate audience. This could be of particular interest to social circles as a social network replacement. Right now the only good way to separate is to run multiple instances.

I like the idea of having a per-category or per-board (if such things existed) user-level permissions. As well as the ability to define permissions at the group level, something similar to Google+ Circles.

What do people think?

Posts: 27

Participants: 18

Read full topic

Controller hook for adding user fields

$
0
0

Thomas Smyth wrote:

I'm working on putting together a pull request for a more graceful way for a plugin to add fields to the create account form.

I don't want to mess with the Discourse users table, so I was planning on maintaining a separate table with a foreign key to the main one.

One thing I'm wondering about is if there is a current or planned way to allow controller hooks. Specifically what I want to be able to do is have a routine in my plugin that gets called after the Discourse user object is populated but before it is saved. The routine should get a reference to the unsaved user object and be able to influence whether or not the save action goes through or is cancelled, and should be able to return a validation error to be included with the response.

I like the way Redmine handles controller hooks. Would people be interested in a similar approach if I were to build it into a PR? Or is there a different way?

Thanks.

Posts: 1

Participants: 1

Read full topic

Translations not updating, cache problem?

$
0
0

Tudor wrote:

I am almost done translating Discourse into my language (Romanian) and I've noticed some items, for example the top menu (Latest, New, Unread etc.) are still being displayed in English even though I'm quite sure I've translated them.

How can I make Discourse load the newest versions of my language files (client and server)? Clean Discourse/nginx caches, recompile assets? What exactly should I do each time I update the language files?

Posts: 2

Participants: 2

Read full topic


A user page, but for a group

$
0
0

Jeff Atwood wrote:

The Blizzard "highlight all the posts from official Blizzard folks" forums feature has been a common request here, from @bp_ and others.

So I thought, we have

https://meta.discourse.org/users/codinghorror/activity

So why can't we have

https://meta.discourse.org/groups/discourse-team/activity

which would show all activity from the official Discourse team, for example -- or any other named group in Discourse?

The page could be a lot simpler than the user page, with these subtabs:

  • simple flat list of recent posts by any member of the group (default)

  • online state of each group member (last seen time)

... and some of the other features from the user page, but just the essentials.

That would answer a lot of requests for the "Blizzard tracker" feature right off the bat. And it makes sense that a group would have a public page just like a user does, too.

Posts: 2

Participants: 2

Read full topic

Favorite vs Like vs Bookmark

Forum Signatures?

$
0
0

Rice wrote:

In all the different types of forums I've been at, they all include signatures or at least the option to include a signature below the message. Do you think this would be a good idea to implement or would it be too cluttered?

Posts: 6

Participants: 5

Read full topic

Clicking on oneboxed forum links seems to be broken

$
0
0

Patrick Klug wrote:

If you go to:

Official Mod List

The Official Community Mod List Enabling &amp; disabling mods requires a restart! Use mods at your own risk! Greenheart Games is not responsible for the contents of mods. Mods may corrupt your save files or do other harm. Use them at your own risk! Since mods can introduce severe bugs or data corruption we cannot offer user support when mods are in use. GDT Space Bar.png691x28 5.79 KB Please see this thread for an official mod F.A.Q.; Official Modding F.A.Q modding...

and then click on the one-boxed link to the Modding FAQ, the link shows as the active url but doesn't actually load.

That's on latest (0.9.8.3).

Posts: 4

Participants: 4

Read full topic

Libelous quote-to-reply

$
0
0

Philip Durbin wrote:

Continuing the discussion from Select-to-quote Weirdness:

I can't decide if this is a bug or a feature. smile

Posts: 15

Participants: 11

Read full topic

Viewing all 60721 articles
Browse latest View live




Latest Images