Txanny
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: User Community] Can you modify the display columns on main page?This array is just all info from users table. The basic user info.
The fields you talk about, are from the usermeta table. This extra info is not supplied by default to save unneeded database queries.We were discussing how to display fields from usermeta table in this topic: http://wordpress.org/support/topic/298569
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] How to remove “Archive for X” in SidePosts widget?In 2.3 is the same code 😉
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] CSS file not workingProbably there are any other style sheet that that loads after and overrides it. You have to deal with all your CSS files to see why styles in your site do not work as expected.
Create and empty page, and follow the link. A page is needed for all output.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] CSS file not workingYour site send correctly the CSS file. As i tested it, but you have not edited it (I’m receiving the default style.css).
http://www.nmpolitics.net/index/wp-content/plugins/sideposts/style.css?ver=2.2.1
So, there is no problem sending it. If you edit it and save in the same place, it will work unless there is some cache system on your server that sends the cached file.
Forum: Fixing WordPress
In reply to: [Plugin: SidePosts Widget] Adding Sidepost manually to the sidebarI think that using widgets the sidebar is really more customizable. Adding or removing something is quick and easy.
Also, with the new WP_Widget class in WP 2.8, creating multi-instance widgets is really easy.
Yes, you have to hack the plugin.
In class.sideposts.php change this:
if ( $query->is_category || $query->is_tag || $query->is_day ) {to this:
if ( $query->is_category || $query->is_tag || $query->is_day || $query->is_feed ) {Just remember that hacks are unsupported and you will lose it on the next update.
Forum: Plugins
In reply to: A problem with the thumbnail images.Ok. Then I will release it this weekend as 2.3 if no more issues/features are found.
Thanks!
I’m sorry but I cannot help with this as I don’t know how WP Comment Remix works and what changes on comments.
The Community plugin requires WP 2.8 or over because it uses functions and classes that are only available since this version. One of the things changed are about comments.
Comments remix has been only tested with WP 2.5, so I think it can have issues with WP 2.8 because the comment system has changed in WordPress since 2.5.
Groups are planed, but will be introduced on a later release as we have other features in the roadmap for next versions before reaching 1.0.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Author’s posts link with new rolesOh, yes. I see what you mean now. This is planned but there are no ETA, as fist we have other features in the roadmap.
The feature is only for the community plugin pages, it will not affect the WordPress internal links like author pages. In author WordPress author pages, the word author is hardcoded and is not related to roles. The word ‘author’ in the link refers to the author post, not to the role ‘author’.
Forum: Plugins
In reply to: A problem with the thumbnail images.This has been included in the development version and will be with the next release.
If you want to test it, you can download the development version: http://downloads.wordpress.org/plugin/sideposts.zip
Forum: Plugins
In reply to: A problem with the thumbnail images.Yes, I will change it now and will have it done in less than an hour.
The current behavior is to show the thumbnail from the first uploaded image.
The new behavior will be to show the first gallery image, taking into consideration the gallery order, so setting an image the first in order will make also it the excerpt thumbnail.I think this could be good enough to let you choose wich image is shown as excerpt thumbnail. Isn’t it ?
You can follow it on my tracker at http://tracker.alkivia.org/view.php?id=165
It does not associate the display name with profile because in WordPress the display name could not be unique. Because of that, we require to associate the user login, and this is what the profile page expects to receive.
The plugin already replaces the links for comments author to the profile page if you activate it on the profile settings, so no need to change the comments template.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Author’s posts link with new rolesIn what ticket number did you found the solution? Just to know how it can be done…
Thanks.