Txanny
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] When loading widget the gallery does not showPlease, if having this issue, download the development version to see if solves it. (Will be released in version 1.5). In my site it solved the issue. Hope does the same in yours.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Repetition of Posts ExcerptsI moved this to a new thread, as it is unrelated to this one. Follow it at http://wordpress.org/support/topic/259859
Bug confirmed and reproduced in one site, follow the bug history at: http://alkivia.org/tracker/view.php?id=52
Forum: Plugins
In reply to: [Plugin: User Community] class.gallery_upload errorI guess you’re not using PHP 5. PHP 5 is required for this plugin. Obsolete PHP versions are not supported.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] SidePosts and DateNormally I set this in my functions.php file in the themes folder. Or just as a personal plugin with all my custom filters 😉
To create a plugin to hold this is really simple, here the file:
<?php /* Plugin Name: My Custom Filters Plugin URI: http://alkivia.org Description: Just a plugin to hold my personal custom filters. Version: 1.0 Author: Txanny Author URI: http://alkivia.org */ function my_sideposts_date( $date ) { return ''; } add_filter('sideposts_date', 'my_sideposts_date'); ?>Just call the file how you want (I call it my-filters.php) and set it in the plugins folder. Activate it as a normal plugin.
With filters you have not to worry, if you deactivate the SidePosts plugin, this filter will no run, so you will broke nothing on your site 😉
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Problem with DatesThis is the normal behavior in WordPress. When two posts are written at the same date, only shows the date for the first post.
The issue has been solved in the development version (to be released as 1.5).
If you want to try it before releasing, download the development version here: http://wordpress.org/extend/plugins/sideposts/download/
Also, this version provides the filter ‘sideposts_date’, to format the date as you want (or to delete it) when coding your theme.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] SidePosts and DateAbout this. The development version (to be released as 1.5) now includes a filter for the date called ‘sideposts_date’.
To remove the date, just write a filter like this:
function my_sideposts_date( $date ) { return ''; } add_filter('sideposts_date', 'my_sideposts_date');Of course, I recommend not to write this on the plugin’s file, as it will be lost when updating.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Sideposts imageWell, the development version (to be released as 1.5) now supports excerpts with thumbnails and it works like this:
When setting the widget, choose: Excerpts with thumbnails.
And then set thumbnail width (this is to prevent large thumbnails in the sidebar).
The thumbnail shown, is the one of the posts’ first attached image. If the post has no images attached, no thumbnail is shown.Forum: Plugins
In reply to: [Plugin: User Community] Styling the Profile PageI plan in a future undetermined release, to provide a templating system for lists and profiles.
Also will provide some template functions to be used on your themes.
With some time, all things will be there. I started the plugin 3 weeks ago, and it’s a lot of coding to be done :p
Forum: Plugins
In reply to: [Plugin: User Community] Help: Profile image size problemJust change the “Large images size” in the photo gallery settings. This is the image size shown in the profile page.
But, the images at resized when uploading and only applies to new images. To apply to other images, you have to delete them and to upload again.
Forum: Plugins
In reply to: [Plugin: User Community] What’t the Url?On the page you created. After you entered the page ID in the Community Profiles Settings. As you created the page, you have to know this page URL, on each site the URL is different.
There you get the list of users to links to profiles and galleries.
Settings are on the Dashboard. And the users can upload the pictures on their user menu.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Repetition of Posts ExcerptsI tested that, and it works perfect for me. Images are shown in the gallery with no problems. I will do more tests on my site
By now, I’m not having any trouble with this and found nothing related to the post query in the WordPress gallery code.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Sideposts imageWell, WordPress itself generates a thumbnail for all uploaded images. This version is using this already generated thumbnail. Just have to care the WordPress settings for image thumbnails fit on your sidebar.
It will show the thumbnail if there is a picture attached to the post. It doesn’t mind if in the post there is a larger one, or if the picture is not in the post at all.
I will download the mimbo theme to see how them are doing it. Perhaps a different way, new points of view are always useful.
BTW, Excerpts with thumbnails is a feature included in the coming 1.5 version, after I’ve finished testing it.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Hope someone develops this furtherThanks Karl!
Multiple instances are planned for the 2.0 release.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Repetition of Posts ExcerptsWhat gallery are you usign?
If not misunderstand, the page thumbnails disaperars, isn’t it? Does the same in the two languages?
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Sideposts imagePlease, download the development version at http://wordpress.org/extend/plugins/sideposts/download/ and test it.
When configuring the widget, now you have the new option “Excerpts with thumbnails”. and have to consider that:
* The widget shows the thumbnail of the first uploaded image.
* The thumbnail size is the one you had on thye media settings when you uploaded the image.Test it, and tell me if it works 😉