This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
226
Plugin Support / Re: Wedge way to add Profile Field
« on October 4th, 2014, 05:40 PM »
Focusing on Plugins is a good idea. Did some stuff with showing posts like http://wedge.org/profile/?area=showposts;sa=messages and it was a mess. Needed to copy nearly everything of showPosts(), which is a bit useless and could be done nicer. By the way it was for the same plugin :D
I feel like there are some hooks missing which could be quite important and are perhaps a reason why there are so less 3rd party developer on wedge.
Perhaps someone is interested in it: https://github.com/C3realGuy/we_CountLikes
I feel like there are some hooks missing which could be quite important and are perhaps a reason why there are so less 3rd party developer on wedge.
Perhaps someone is interested in it: https://github.com/C3realGuy/we_CountLikes
227
Plugin Support / Wedge way to add Profile Field
« on October 3rd, 2014, 03:23 PM »
In the moment im working on a plugin which should show how many likes the user recieved and gave on his Profile.
In the invitemod plugin i did it with add_js, but thats in my opinion not a really good way. Wouldnt it a good thing to have some 'custom_field' hook?
Or is there another better way?
In the invitemod plugin i did it with add_js, but thats in my opinion not a really good way. Wouldnt it a good thing to have some 'custom_field' hook?
Or is there another better way?
228
Archived fixes / Re: Search box "by user" input
« on September 30th, 2014, 10:04 PM »Get rid of the size (or keep it and claim is for compatibility with IE < 8) and set width to 100% on the input?
That should look the same no matter what. (I think. :P)
229
Bug reports / Re: Shorten Subjects in Stats
« on September 27th, 2014, 03:25 PM »
35 is too long, perhaps 28 is better. But you missed once the wrong variable. You shortened name instead of subject, therefore Top 10 Topics are not affected.
Should beCode: [Select]
Should be
$context['top_topics_views'][] = array(
'id' => $row_topic_views['id_topic'],
'board' => array(
'id' => $row_topic_views['id_board'],
'name' => $row_topic_views['name'],
'href' => '<URL>?board=' . $row_topic_views['id_board'] . '.0',
'link' => '<a href="<URL>?board=' . $row_topic_views['id_board'] . '.0">' . $row_topic_views['name'] . '</a>'
),
'subject' => $row_topic_views['subject'],
'num_views' => $row_topic_views['num_views'],
'href' => '<URL>?topic=' . $row_topic_views['id_topic'] . '.0',
'link' => '<a href="<URL>?topic=' . $row_topic_views['id_topic'] . '.0">' . shorten_subject($row_topic_views['subject'], 28) . '</a>'
231
Bug reports / Shorten Subjects in Stats
« on September 26th, 2014, 07:43 PM »
Shortening subjects in Stats would be good, otherwise it looks crappy with long names.
Something around 35 Letters should be good.
Something around 35 Letters should be good.
232
Archived fixes / Input #userspec
« on September 26th, 2014, 07:24 PM »
Needs a "width: 100%", otherwise it's too big.
Tested on Firefox & Chrome (latest Ubuntu version).
Tested on Firefox & Chrome (latest Ubuntu version).
233
Bug reports / Collapse Forum
« on September 26th, 2014, 03:27 PM »
First hiding a forum would be better if it's done by ajax and just fire a GET request to the collapse action.
And the collapse action does not show thoughts and recent posts. Also Home.template.php doesnt get runned.
And the collapse action does not show thoughts and recent posts. Also Home.template.php doesnt get runned.
234
Plugins / Re: Tapatalk support?
« on September 21st, 2014, 11:31 AM »It's not a POV thing. It's the fundamental way Tapatalk is built: they add support for your software, and individual forum owners add their spam splash to their forum. The forum software author has no say in it, except "Tapatalk sucks! I don't frigging want a splash screen on a forum I'll just be spending 10 seconds on to check out a message!"Quote from Cataphractus on September 20th, 2014, 11:19 AM This is the one thing that's preventing me from migrating my forum to wedge. About ~80% of my users enter from tapatalk.
From my point of view, Tapatalk Inc should be responsable for developing the plugin. After all, they're making money out of it. Unfortunately, I don't think it's gonna happen anytime soon... :(
It's similar to websites that ask you to download their own app, or websites that launch a popup asking you what you thought about them, preventing you from reading them in the first place...
235
Plugins / Re: Tapatalk support?
« on September 19th, 2014, 12:33 PM »
I love the mobile theme (using it right now) but tapatalk has some nice features. You get notifications from the forum and its a bit faster (in my opinion). But there many things i dont like on tapatalk, it only provides access to the most core features. Implementing thoughts wouldnt be possible.
But still its a good thing, perhaps someone will create a plugin for it.
But still its a good thing, perhaps someone will create a plugin for it.
236
Archived fixes / Re: Profile Fields
« on August 24th, 2014, 08:56 PM »
I'm having the same problem, adding custom fields via hook (http://wedge.org/pub/feats/8677/hook-custom-fields/).
Code: (Broken line) [Select]
Im not really sure what it should be, perhaps just 'custom_field' or something like that (but its a bit long, i dont know...).
My suggestion would be
Code: [Select] .
But how you do it, privacy for custom fields is still broken. Needs perhaps some more work and perhaps an option to disable privacy features for certain custom fields.
<dt>', profile_privacy_icon('custom_' . $field, $field['name'] . $txt[':']), '</dt>
Im not really sure what it should be, perhaps just 'custom_field' or something like that (but its a bit long, i dont know...).
My suggestion would be
<dt>', profile_privacy_icon('custom_'.$field['name'] , $field['name'] . $txt[':']), '</dt>
But how you do it, privacy for custom fields is still broken. Needs perhaps some more work and perhaps an option to disable privacy features for certain custom fields.
237
Features / [Hook] Re: Custom Fields
« on August 19th, 2014, 11:52 AM »
Perhaps to check if all hooks which the plugin needs are available. InviteMod/HideMod cant get installed if the additional hooks aren't "installed". Therefore its a good thing, a missing hook can cause big troubles.
238
Features / [Hook] Custom Fields
« on August 18th, 2014, 05:34 PM »
I think a hook for adding custom fields would be a good thing. Adding the field with JS is a way but not a nice one.
I would suggest something like that:
call_hook('load_custom_fields', array($memID, $area, &$context['custom_fields'])); (Profile.php)
EDIT: No more need for, we have mods.xml
I would suggest something like that:
call_hook('load_custom_fields', array($memID, $area, &$context['custom_fields'])); (Profile.php)
EDIT: No more need for, we have mods.xml
239
Features / Re: Let's discuss privacy openly!
« on August 18th, 2014, 05:27 PM »
I like it but as a user i dont know if i really would use that feature.
And i dont like that every privacy button can be used to change my own settings. If I view someone elses profile I can change with a click my own settings.
Also i think it would be perhaps better to locate those buttons in modify forum profile?!
And i dont like that every privacy button can be used to change my own settings. If I view someone elses profile I can change with a click my own settings.
Also i think it would be perhaps better to locate those buttons in modify forum profile?!
240
Features / Re: Language revs
« on August 18th, 2014, 05:01 PM »
It's really not that easy :D
'Klicken um Sichtbarkeit zu ändern' (Would be short but sounds a bit uncommon)
'Klicken um Einstellungen zu ändern' (User does not know which settings, but could be a compromise)
'Klicken um Privatsphäre-Einstellungen zu ändern.' (Longer but more specific)
'Privacy-Einstellungen ändern' (Would be short but the click thing is not generally used in wedge, therefore a description is missing
Aaand perhaps we should move the discussion to Language revs
Let's discuss privacy openly!?
'Klicken um Sichtbarkeit zu ändern' (Would be short but sounds a bit uncommon)
'Klicken um Einstellungen zu ändern' (User does not know which settings, but could be a compromise)
'Klicken um Privatsphäre-Einstellungen zu ändern.' (Longer but more specific)
'Privacy-Einstellungen ändern' (Would be short but the click thing is not generally used in wedge, therefore a description is missing
Aaand perhaps we should move the discussion to Language revs
Let's discuss privacy openly!?