Txanny
Forum Replies Created
-
Forum: Plugins
In reply to: format headline text in SidePost?Change this on the style.css :
#sidebar ul li.widget_sideposts ul li, #sidebar ul li.widget_sideposts ul a { color: #fa6400; font-size: 13px; padding-top: 10px; font-weight: bold; }This is the titles format.
Forum: Plugins
In reply to: [Plugin: User Community] Function to search userThis is being taken into consideration. I can’t say when it will be ready, but it will be included in the future.
Forum: Plugins
In reply to: [Plugin: User Community] Avatars appear HUGE in profiles.Just change the profile image size on the Photo Gallery settings page…
Images are resized at upload time. So, you will have to re-upload your image after changing this settings.
Forum: Plugins
In reply to: [Plugin: User Community] System max is: 0 bytes for pic uploadsThanks for your time and your solution. You’re right, I think the best idea is to overwrite the system returned limit by the one set on the settings page.
Probably the best idea is to change to this code in components/gallery.php
public function maxUpload() { $max = 1024 * (int) $this->settings['max_size']; return $max; }Forum: Installing WordPress
In reply to: [Plugin: Inline PageList] Fails on accented charactersI just released 1.5.6 which will solve this issue. At least solves it on my site 😉
Forum: Installing WordPress
In reply to: [Plugin: Inline PageList] Fails on accented charactersI’ve seen the bug and located where it is. I will release a bugfix in next hours (ETA < 1 day).
Forum: Installing WordPress
In reply to: [Plugin: Inline PageList] Fails on accented charactersLet me to test it and I’ll come back with some comments. I have it on a site that uses accented characters (Catalan) and did not see this. Probably could be that no accented word was on titles…
Forum: Plugins
In reply to: [Plugin: Capability Manager] Role name can’t contain non-a-z characters?Sometimes, characters out of the basic alphabet have a bad behavior when used as an array index. As Roles and Capabilities are saved by WordPress as arrays. Also, I’ve seen some unexpected results when using them in Roles or Capabilities names.
In the other hand, there are some plugins that use roles and capabilities that expect only the basic alphabet and don’t work (or crash) if an other characters are found.
Because of that, I preferred to strip out the option to use them, and ensure your created roles and capabilities will work always as expected in WordPress and third party plugins.
I know this is a limitation, but thing is better have this limitation than having things not working as them must.
Forum: Themes and Templates
In reply to: Background problemI’ve experienced this only with Google Chrome. And also the default theme does the same. Perhaps the way Chrome manages the CSS styles? On FireFox and IE, I cannot see this.
Which browser are you using?
About categories, this is related to the Categories widget that comes with WordPress, and the theme can do nothing. I seen some plugins that do what you want, unfortunately, I cannot remember the names, sorry.
Forum: Plugins
In reply to: [Plugin: Capability Manager] Cannot see private pagesthe capability read_private_pages only applies to pages, not to posts. For posts you have to use read_private_posts.
This said, I’m not sure how this capabilities work. The name is so explicit… could it be that the WordPress functions that creates the link menu wont’ show the private pages?
Have you tried to access this page with the page permalink?
Forum: Plugins
In reply to: [Plugin: User Community] System max is: 0 bytes for pic uploadsCheck on your php.ini that this settings:
file_uploads = On
upload_max_size
post_max_sizeThis is what the plugin reads to get the max system upload size.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Excerpts dissapears when entering the postI will check this on a testing site and will come with a solution. Those days I’m not much available, It can get some time for me to do it.
Forum: Plugins
In reply to: [Plugin: Capability Manager] two more features ideasWell, those features should be added to WordPress, as it does not provide capabilities to do that.
This plugin just adds or deletes roles and capabilities. It does not change (and will not) change the way WordPress uses this capabilities.
Forum: Plugins
In reply to: [Plugin: User Community] php4?No, the plugin is developed for PHP-5 and cannot run in PHP-4 without rewriting most of it. PHP-4 was deprecated one and half years ago and I’m not developing for it anymore.
Forum: Plugins
In reply to: [Plugin: Capability Manager] How to add a capabilityTo create the capability is easy: Fill de box and it gets created. I think the problem is how to use it. This depends on the code, and the plugins you have. Normally a capability is created because some plugin will need it.