Txanny
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Alkivia SidePosts] How to show more than 20 posts?You’re welcome!
Forum: Plugins
In reply to: [Plugin: Alkivia SidePosts] How to show more than 20 posts?I just released version 3.0.2. In this version you just have to define the constant SIDEPOSTS_MAX in your wp-config.php file with the max posts number you want to allow:
In wp-config.php
define ('SIDEPOSTS_MAX' , 50);
Forum: Plugins
In reply to: [Plugin: Capability Manager] Editor can’t manage commentsA user can only manage comments for the pages he can edit. So, to edit comments on others users posts, needs the capability ‘Edit others posts’. And to be able to edit comments on published posts, needs the capability ‘Edit published posts’. Same for pages with ‘Edit others pages’ and ‘Edit published pages’.
This is the WP behavior. The plugin only adds or removes capabilities to a role, but does not change the way WP uses this capabilities.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Several Problems After Upgrade to .10When only changes the last version number it means is a bug fix version. No new features and no code change, just bug fixing or new translation introduced. You always have the changelog to see what has changed from one version to another.
About the string problem, I’m trying to figure out why you have this issue as I cannot reproduce it in any of my installs. The plugin just shows the translated role names as WordPress returns them, so I have to check within WordPress core why in you case returns a wrong translation.
Can you report here all your plugins list? Specially if you have any plugin related to users or roles.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Alkivia Version 10.3Yes, you should. 0.10.3 fixes some reported bugs since 0.10.0 and solves some problems since then.
Forum: Plugins
In reply to: [Plugin: SidePosts Widget]Well, imagine you name your custom field: ‘go_url’
To get it from a post, just use the get_post_meta() function:
$go_url = get_post_meta(get_the_ID(), 'go_url', true);
And display the custom field content anywhere you want. Example: two fields: the site_name and site_url, you could set something like this:
$post_id = get_the_ID(); echo '<p>View also: <a href="' . get_post_meta($post_id, 'site_url', true) . '">' . get_post_meta($post_id, 'site_name', true) . '</a></p>';
Hope this helps.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Upgrade to Version 0.10.2 IssueThis is when the plugin tried to load a translation to say that your WordPress version is not supported. Basically, you are running a WP version below WP 2.9. Isn’t it?
Anyway this error will be solved ASAP. But the plugin will not work for WP versions under 2.9.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Several Problems After Upgrade to .10It’s a strange behavior as this strings are not present in 2.9.1.
Perhaps a fault uplgrade?In Your site code says that you’re running “WordPress abc”. This is not an standard WordPress version. It reports as:
<meta name="generator" content="WordPress abc" />
When standard version reports as:
<meta name="generator" content="WordPress 2.9.1" />
What do you see when creating a new user or editing a user on the role box?
Forum: Themes and Templates
In reply to: decreasing font size of previous & next postJust a suggestion: If you decreased the font size in 2px, I would decrease the height in 2px and so on. This will make the text vertically centered on the navigator box ??
Forum: Fixing WordPress
In reply to: Can’t remove or modify sidebar widgetsGo to Appearance->Widgets and set your own widgets. As soon as you set the first widget, default ones will disappear.
A link to the site would be helpful to see what you’re talking about.
Forum: Plugins
In reply to: [Plugin: Capability Manager] [Plugin: Capability Cannot assign a role i haveNo, a user who is not administrator cannot create other users with the same role it has. This is to prevent the user creating so many people that can add other users and was highly demanded.
In other words: A user (not administrator) who can create/edit users, cannot allow this new users to create/edit users. This is a security question that allows administrators to control who can create new users on the system.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Several Problems After Upgrade to .10cfisher: What WordPress version are you using? The ‘|User role’ part was striped in WP 2.9 when WordPress changed the roles translation method.
Are you using a previous version? Perhaps WP 2.8 ?
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Several Problems After Upgrade to .10Shahil, you have to be a bit patient with free software. we must find some free time to develop and fix it, as we need first to to spend our time on our paid work ??
Avatars should work in 0.10.1
Forum: Themes and Templates
In reply to: decreasing font size of previous & next postOpen style.css and locate ‘.navigator’
Change there the font-size from 14px to a small size, like 12px.
Or increase the height item to make a higher navigator box…Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Several Problems After Upgrade to .10The issue with avatars will be solved really soon. A new version will be released as soon as avatars get working again.
About role names, it can show if not using WP 2.9 or higher. Tell me if the issue shows in WP 2.9.1. (As WP 2.9 changed the way it manages the roles strings).