Search Results for 'wordpress'
-
AuthorSearch Results
-
December 20, 2009 at 7:36 am #59163
In reply to: Wp-admin time out
takuya
ParticipantThis is BuddyPress centric forum, so if you are having wpmu problem, you should visit he forum at mu.wordpress.org as there’re more users than we have here on buddypress.org
Also please read and follow the step by step guide on asking question on forum.
https://buddypress.org/forums/topic/help-us-help-you
We are happy to help, but without enough information we can’t.
December 20, 2009 at 6:09 am #59161In reply to: Can´t upload avatar
5563306
InactiveHi Ron!
Yes, avatars could be uploaded before upgrade.
No, I didn´t have to change file permissions to complete the upgrade.
We are using WordPress MU 2.8.6 and BuddyPress Versión 1.1.3
Yours,
Francisco
December 20, 2009 at 1:09 am #59158In reply to: How to code in new menu button
5636415
Inactiveholy crap, so what happens when i want to add a page like http://www.trination.co.cc/store like that and the page is made in wordpress?
December 19, 2009 at 11:51 pm #59155In reply to: Group Wiki Plugin (not a release, but in progress)
David Lewis
ParticipantI’d be fine with an index / directory page. That page could perhaps even use sorting / filtering (at some point) similar to the BuddyPress directory pages in the latest default theme… i.e. most active, most recent… my wikis, all wikis… etc. And if you’re leveraging WordPress functionality… another way to organize the wikis would be by tags and categories… perhaps with a sidebar widget and a dynamic directory page depending on which tag / category you click on. Lots of ideas
December 19, 2009 at 9:39 pm #59148In reply to: Invite Anyone
Boone Gorges
KeymasterUpdate: it’s in the wp.org repo: https://wordpress.org/extend/plugins/invite-anyone/
December 19, 2009 at 9:11 pm #59147In reply to: Group Wiki Plugin (not a release, but in progress)
D Cartwright
ParticipantJust thought I’d give people an update.
1) As discussed, we moved to making use of inbuilt wordpress functions as much as possible and hence avoid the nightmare of trying to make mediawiki work in a way that is ‘nice’ with buddypress.
2) We’ve taken inspiration from the following plugins: front-end-editor, bp-groupblog and wp-wiki. We currently aren’t using any of the code from these, but many thanks to the authors of these plugins for their very informative code.
3) Work is progressing very nicely. Sadly we probably won’t have a working beta before xmas but I’m going to post up a few screenshots next week with some luck. In the meantime, here are two to whet your appetite slightly:
Group Wiki Create Screen
http://linktart.co.uk/_files_/dev/wiki1.png
Group Wiki Home Screen
http://linktart.co.uk/_files_/dev/wiki2.png
Please note: Our designer hasn’t re-styled these pages yet so bits of it look quite rough. Apologies about that. Functionality-wise we’re probably about 50% of the way there, with a few placeholders here and there until we can finish things.
Any thoughts? I realise that there isn’t exactly much to go on at the moment
I should also probably again mention that we were looking for quite a simple wiki plugin for our students, not a fully blown wiki system…
December 19, 2009 at 8:09 pm #59146In reply to: Help with Child Theme
peterverkooijen
ParticipantDoes anyone else know/care? I get the same problem with TEMPLATEPATH.
I can’t make any sense of the information on Function Reference/locate template.
I need something that works in includes. Like this, but for the child template folder:
<? include TEMPLATEPATH.'/directories/members/featured.php'; ?>bloginfo() doesn’t work there.
EDIT:
Again, this sort of works:
<? include get_bloginfo('stylesheet_directory').'/directories/members/featured.php'; ?>But that’s just awkward. Is there really no template tag for the child theme folder?
December 19, 2009 at 6:31 pm #59142In reply to: Email Notificaition Not Working
ipi_val
MemberOk. I’ve fixed it.
The mailer checks the domain name used. I won’t exted on this issue.
To let our local mailserver work correctly, we can do it by changing the validate_user_signup() function.
This function is located in: /wp-signup.php file, check it at the line 267 or something similar.
We must tell wordpress to consider valid our mail domain name without restrictions.
This can be done by modifying the user account check line:
We must replace the sentence
if ( $errors->get_error_code() )
by
if ( $errors->get_error_code() && $_SERVER[‘HTTP_HOST’]!
“localhost.YOURDOMAINNAME” ).Doing this, WP will accept any mail and user name if sent from our local domain.
Notice that WP won’t warn us about any registration error by doing this.
If you create by mistake an account, you can erase this sign up by editing the signup table in your wprss database using phpmyadmin.
I hope it can help anyone else.
December 18, 2009 at 10:55 pm #59107PH (porsche)
ParticipantBP-DEV guy “Nicola” has something like this “aggregator” but I think its broken at the moment.
its a good idea though!
I use WP-O-Matic instead of FeedWordpress it has some pretty advanced features — a cool feature it has is REGEX so you can do some fancy rewriting of a feed and relinking.
(*just a thought)
December 18, 2009 at 10:26 pm #59104Boone Gorges
KeymasterOn a regular WP blog, combining https://wordpress.org/extend/plugins/add-link/ with FeedWordPress allows site users to add their feeds to the site without access to the dashboard.
December 18, 2009 at 9:59 pm #59101Bowe
ParticipantI think this is a good idea.. Now that I know that you are working on this, this is what I’m going to do on my site
1: Let users fill in their external rss feed adress (which then gets feed into FeedWordPress like you said)
2: Create a default blog theme which matches with my site layout
Now you have a seemlessy integrated blog which also imports external posts.. sweet!
Keep us updated!
December 18, 2009 at 8:50 pm #59094In reply to: Help with Child Theme
David Lewis
ParticipantNope. But there are lots of other parameters that template tag will accept:
December 18, 2009 at 8:47 pm #59093In reply to: Making User Blogs Part of the Main Theme
David Lewis
ParticipantGotcha. Before you had said you only wanted posts from the Administrator on the homepage… which would be you… so that’s where I was coming from.
The solution is almost the same however. If you’d like to do this without any plugins… just one little line of code… you could do this in the “loop” on your home.php file.
<?php query_posts('category_name=Featured'); ?>
[your wordpress loop here]
<?php wp_reset_query(); ?>The loop by the way is simply a bit of code that iterates through all the posts for a particular page and displays them. So on the homepage… the loop shows ALL posts by default (up to whatever number you have configured in the dashboard… so the 5 most recent perhaps). If you click on a tag… then the “loop” shows all the posts with that tag. By setting up a custom query on the homepage… you are simply modifying the collection of posts that the loop will iterate through. So that little line of code simply limits the posts that the loop will iterate through as being posts from the category named “Featured”.
December 18, 2009 at 7:44 pm #59088In reply to: Group Calendar Plugin
designodyssey
ParticipantWhat I wonder as I look at this is wouldn’t it be easier to take a robust plugin for wordpress and make it work well with MU/Buddypress. That seems like a better place to start, especially if the original author can point you to the right places in the code.
I mean the functionality of a good calendar plugin should be pretty well understood at this point. Priorities and roadmap might be trickier, but the end goal should exist in the PHP if not WordPress world.
This raises my recurring question of how hard is it to turn a quality PHP script into a good plugin.
December 18, 2009 at 6:29 pm #59083In reply to: Making User Blogs Part of the Main Theme
David Lewis
ParticipantI guess that would work. Seems like a very round about method however and you’re creating lots of blogs and database tables and such that you don’t need if all you want to do is have only YOUR posts show up on the homepage. It that’s the goal… just your posts on the homepage (and it sounds like that based on your last post)… then this is very simple. The solution is already above. Just add that query before the WordPress loop on your home.php file. So simple:
<?php query_posts('author=1'); ?>and reset the query at the end of the loop:
<?php wp_reset_query(); ?>This assumes that your admin account had an author ID of 1… which is safe to assume.
Here is a slightly more complete example. But really… this is an extremely simple loop. You’ll probably want more stuff in there… like tags, dates, categories, etc. But this loop will work to show only posts by author ID 1. I just figured it would be good to see what I’m talking about in more context.
<!-- custom query -->
<?php query_posts('author=1'); ?>
<!-- the loop -->
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<h3><?php the_title(); ?></h3>
<p><?php the_content(); ?></p>
<?php endwhile; else: ?>
<p>No posts.</p>
<?php endif; ?>
<!-- reset the query -->
<?php wp_reset_query(); ?>December 18, 2009 at 5:04 pm #59073In reply to: twitter with buddypress
peterverkooijen
Participant” Twitme for BP doesnt have a such big interface as Twitme for wordpress it self. It will ask for your settings + sent Wires yes / no ?. “
Que??!!
Also see this: Twitme Author collects your personal data
December 18, 2009 at 1:58 pm #59066In reply to: wp-admin/?c=1
jaiswalram
ParticipantI have one more question. Do I need to install BuddyPress too with wordpress mu ?
December 18, 2009 at 1:05 pm #59064In reply to: wp-admin/?c=1
jaiswalram
ParticipantHi Brajesh,
I have only one plugin Email Login. And I check it by removing this plugin. but problem is still there.
and I am using wordpress defult theme. so what theme I should put there.
December 18, 2009 at 12:46 pm #59062In reply to: wp-admin/?c=1
jaiswalram
ParticipantHi Brajesh,
I am using WordPress MU as blog with my site. I am getting same issue /blog/wp-admin/?c=1.
Please help me to resolve this issue.
Thanks
Ram
December 18, 2009 at 12:05 pm #59060In reply to: changing admin name block access
zambibo
MemberSet your current new user to be the Site admin user.
You will need access to the database, look in wp_sitemeta for a line with a meta_key of site_admins. It will currently look like:
a:1:{i:0;s:5:”admin”;}
You need to change the admin to be your new users name, and the s:5 to be the length of your new user. E.G.
a:1:{i:0;s:9:”spacetest”;}
spacetest is nine characters long so I’ve changed s:5 – s:9
When you next login your new user will be the site admin user, and you can access the plugins menu.
From wordpress MU post:
https://mu.wordpress.org/forums/topic/13444?replies=8#post-78799
December 18, 2009 at 8:44 am #59049In reply to: twitter with buddypress
gpo1
ParticipantSo update on twitme plugin for BP.
From the developer ” Twitme for BP doesnt have a such big interface as Twitme for wordpress it self. It will ask for your settings + sent Wires yes / no ?. “
So please test it and let us know the outcome?
December 17, 2009 at 11:54 pm #59031peterverkooijen
ParticipantI meant, take plugin settings out of the admin area back end and make them available on the members account settings on the front end.
Some plugin functionality could be very useful to members, like adding an RSS feed via FeedWordpress, but you can’t expect all members to be web savvy enough to find their way in the WordPress backend.
BTW, the title of this topic should probably have been “Provide only certain selected plugins to members?”
December 17, 2009 at 10:34 pm #59028r-a-y
KeymasterWould there be a way to make plugin settings show up somewhere on member pages?
Yes, you can create a WP plugin with a settings page, then place that plugin in /wp-content/mu-plugins/ so it shows up on all WPMU blogs in the admin area.
EDIT: after re-reading this, you probably meant as a BuddyPress member settings page right? If so, don’t read the rest of this post!
Read up on how to create a settings page or use a WP plugin framework such as the one created by scribu:
https://wordpress.org/extend/plugins/scb-framework/
For how to use options in the front end, you would use the get_option() function:
https://codex.wordpress.org/Function_Reference/get_option
That should get you started.
December 17, 2009 at 8:45 pm #59012r-a-y
KeymasterUse this guide to install an external version of bbPress:
http://theeasybutton.com/blog/2009/07/17/integrating-buddypress-wordpress-mu-and-bbpress/
December 17, 2009 at 8:43 pm #59011David Lewis
ParticipantNot where yet? Having blogs be set up with defined defaults for widgets? As has been stated, that has nothing to do with BuddyPress. As such, it won’t be “resolved” in a future version. But if you head on over to the WordPress MU forums, I’m sure you could find what you’re looking for.
-
AuthorSearch Results