niska
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problems With P2@noel I’ve found the reason for my problem 3) above. I’m using the subdomain plugin. And when on a subdomain, ajax calls doesn’t work because of this line in functions.php
var ajaxUrl = "<?php echo js_escape( get_bloginfo( 'wpurl' ) . '/wp-admin/admin-ajax.php' ); ?>";Could you use the current hostname instead of wpurl? Like this:
var ajaxUrl = "<?php echo js_escape( 'http://'.getenv('HTTP_HOST').'/wp-admin/admin-ajax.php' ); ?>";Or something similar (I’m not a wordpress coder)
Thanks!
Forum: Themes and Templates
In reply to: Howto include another author in author.php of a theme?Thank you for your help!
Is it possible to mix the results? The current author + author 4. At the same time?
Forum: Themes and Templates
In reply to: Problems With P2@noel
1) Look at Twitter. Users can post on their own “author page”. Why would you like users to only post at the front page?
2) Session-setting seems like a good idea. But for me, it doesn’t work at all (using the latest version of P2). The setting is not remembered. I’ve checked my cookies and couldn’t find anything. Other wordpress cookies are there. Maby a bug?
3) My project is not public yet. Sorry.Forum: Plugins
In reply to: [Register Plus Plugin 3.5.1] date field bugPlease fix this!
Forum: Plugins
In reply to: [Plugin request] Add a user as a friend@gene53: Think of Twitter and the “Follow” functionality. That’s what I’m looking for. You want to “Follow” friends. But you dont want them to approve you.
Forum: Themes and Templates
In reply to: Howto include another author in author.php of a theme?Am I correct thinking that this might work?
Before The Loop in authors.php:
set_query_var(‘author’, get_query_var(‘author’).’,4′);
Or do I need to use query_post() directly?
Forum: Themes and Templates
In reply to: Problems With P2I’ve some problems with the P2 theme.
1) When on a author url (like domain.com/author/admin) the form to post is unavailable
2) If I close all comments and reload the page, the comments are still open. This setting should be remembered, using cookies.
3) When on a author url all comments are closed by default. When clicking “show comments” they dont show up (nothing happens)
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?@detective – is there an old version of Aleph that includes Friends that I can look at?
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?Feature request: Let users in a wordpress-installation be friends with each other. One user should be able to add and remove friends. Like a community.
Forum: Plugins
In reply to: [Plugin request] Add a user as a friendI’ve tried Buddypress. But there are two issues with the friends plugin
1) the other user needs to accept the friendship. This doesn’t seem necessary
2) it’s only available for WP-MU, not for classic wordpress installation.
Would it be possible to remove the “accept friend” part of the Buddypress-plugin and then make it compatible with wordpress?
OR – am I missing something here? Is there already a friends plugin for classic wordpress?
Forum: Plugins
In reply to: (Auto) link to tags in postsI’m also looking for the similar options. I would like to be able to blog like Twitter / Jaiku.
I would like to be able to type
“Check this cool #plugin that @bob has created”
“#plugin” should be linked to the tag “plugin”
“@bob” should be linked to the user “bob” (on the same blog)Is there such a plugin?
Forum: Developing with WordPress
In reply to: Advice Please – Custom “new blog post” FormI also look for this feature. I have the exact same situation as soccershout.
Forum: Plugins
In reply to: Mandatory and validated custom fieldsHeadSpace2 found at http://urbangiraffe.com/plugins/headspace2/ did not solve my problem.
I need a very simple plugin that validates custom fields. I would like to be able to configure using key – value. Like this:
‘url’ => ‘/^http:\/\/.+/’
‘image’ => ‘/.+\.(png|jpg|gif)$/i’If the user adds a custom field with the name ‘url’, then a check against the regular expression is made to see if it’s valid.
I also need a simple plugin that is configured using a list of mandatory custom fields. Like ‘url’ and ‘image’.
Any ideas of how to do this?