Txanny
Forum Replies Created
-
I would use the wp function is_user_logged_in() to check if the user is logged in or not. I prefer using that function instead checking for $user_id. Anyway, if you want to check for $user_id, first you have to declare it as global.
<?php if ( is_user_logged_in() && ! empty($user->phone) ) { _e('Phone: ', $text_domain); echo $user->phone; ?> <?php } ?>this one is my preferred method, but you can also do it that way:
<?php global $user_id; if ( $user_id && ! empty($user->phone) ) { _e('Phone: ', $text_domain); echo $user->phone; ?> <?php } ?>Forum: Requests and Feedback
In reply to: [Plugin: SidePosts Widget] More specific CSS?Thanks for reporting,
This has been solved and will be released with next version. You can see the new source code here:
Forum: Plugins
In reply to: [Plugin: Inline PageList] How to make list title so it’s not a linkThere is no such option in current version. I submitted a feature request to have it done in next release. http://tracker.alkivia.org/view.php?id=193
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Disable default styleI think you mean to disable the default stylesheet. Isn’t it?
Then you need to hook into the action ‘sideposts_style_url’ :
function disable_sideposts_style( $url ) { return ''; } add_filter('sideposts_style_url', 'disable_sideposts_style');Forum: Plugins
In reply to: Unable to open Capability Manager optionsThere is no settings page. What you show on your image is the tool to backup or restore capabilities.
Forum: Fixing WordPress
In reply to: Images don’t show up on the home pageBTW, WordPress 2.9 have some changes on image management. We are trying to make it run on the upcoming WordPress 2.9.
Forum: Fixing WordPress
In reply to: Images don’t show up on the home pageAlright. For the first post. Is this image in the post gallery? Or is an image from the media library? Looks like is from the media library as the post is from december and the image was uploaded on october.
I’m sorry, but by know sideposts only shows thumbnails from post attached images, not from the media library. When you use images from the library WordPress does not keep track of it and tells the plugin that the post have no images.
As said, we know about this issue as it has been discussed before on this forum. We are working to find a solution with the WP developers because the same issue arises on any plugin that relies on attached images.
As soon as we found a solution, we will release a new version of sideposts or will submit a patch to the WordPress core.
Forum: Fixing WordPress
In reply to: Images don’t show up on the home pageWell, if you refer to the posts shown by the sideposts plugin, this is the expected behavior. The plugin only works with the first attached image.
This is specially significant when showing ‘excerpts with thumbnails’ or ‘fotoblogs’. The plugin needs to know the name of the image thumbnail and asks WordPress for this. We cannot rely on the post content, as you can have there a big image, and the plugin needs the thumbnail.
We know about the issue you talk about: You have to upload the image with every post. We are working on it, and looking for success solution to this, at this moment, we didn’t find it.
Forum: Themes and Templates
In reply to: Sociable integration problemCan you show us a link to the site?
How have you configured the plugin? What options did you set for it?The only options I have activated for the sociable plugin after integrating are:
– Use CSS
– Open in new window
– and set the tagline to blank.All other settings are off on my site, specially those related to position, as the theme uses the sociable internal function for this.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Bug? — save changes gallery admin: 406 errorThat could really be helpful.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] An Option for Thumbnail AlignmentYou can try by using the ‘Fotoblog’ option instead the ‘Thumbnail’. Maybe it will do the job.
Fotoblog option, centers the image and sets the excerpt under it. I think is what you want.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Links don’t work when showing Post ExcerptHave to write your own plugin to create the excerpts on a different way 😉
Or just write the excerpt without links on the excerpt box when posting.Forum: Plugins
In reply to: [Plugin: SidePosts Widget] error on thumbsnailThere is a problem with the image itself. Have you tried to upload a new image into the post? Or taking a look to the generated thumbnail?
Forum: Plugins
In reply to: [Plugin: Capability Manager] List of users (team)Well, here is difficult to anybody to answer, as you’re asking on the Cpabality Manager plugin forum. And your question is not related to the plugin. Try on the WordPress support forums 😉
Forum: Plugins
In reply to: Can editors see who the users are?Just FYI: The last number in WordPress versions, is only a bugfix version.
If a plugin works with 2.8 or 2.8.3, it will with 2.8.6 as only bugfixes have been introduced). This is the case of 99% of plugins.I think is not worth to make a new plugin version just to change the last tested version. It will make a lots of people to update for nothing, as just the supported version is changed.
Anyway, when WordPress will change from 2.8.x to 2.9, then a test is really a must and the compatibility widget on the plugin page can help others to see that it worked for you.
So, I suggest you to set always if a plugin worked for you with your WordPress version. This will help a lot of other users and make developers life a bit easier.