Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 19,901 through 19,925 (of 22,687 total)
  • Author
    Search Results
  • #62809
    @mercime
    Participant

    speaking of book releases, WordPress Bible by Aaron Brazell with Mark Jaquith came out yesterday — now that’s a keeper.

    #62795
    Windhamdavid
    Participant

    Yeah, you can do that. It will take some work. Just add in all the profile fields you’d like to use for the ‘business listing’ and then display those fields in a directory of sorts using custom template files. Or you could style up a member ‘blog’ theme that is formatted as a ‘listing’ with maybe some edit in place ajax functionality that’ll allow a member to enter their business info and restricts them from doing anything else. That way you could use sitewide queries to build a directory of these ‘listings’. I can’t say there’s a cut and paste sorta plugin to achieve this, but the best place to start would be here and here.

    #62791
    Windhamdavid
    Participant

    interesting? you can use sunrise.php to support multiple domains with one user table, but I’m not sure how site_url() (BuddyPress) would react to it. Search for wpmuguru. He’s really good with configuring multiple domains/databases on multi-user. It would be interesting to test and with enough custom code, you could make almost anything happen

    ps.. you should mark the topic as resolved since this really isn’t a direct support question.

    #62777
    r-a-y
    Keymaster

    Using WPMU 2.9.1.1, BP trunk installed in a subdirectory and a fresh install of BP Links bleeding, I get a wordpress “Page Not Found” for the links directory.

    Also, if the “BP Links” settings menu can reside under the main BuddyPress menu, that would be great.

    #62774
    geoffm33
    Participant

    Thanks for releasing a beta!

    With mine activated here is what happens:

    1. All activity is filtered/stream is now empty
    2. Links item in top menu results in a 302 redirect to the document root
    3. Pasting a link in the activity text area has no effect.

    Buddypress: trunk

    Wordpress: 2.9.1

    Buddypress Links 0.3-beta

    Child theme (bp-default parent) that alters headers.php, sidebar.php, index.php, footer.php

    Thanks!!

    #62763
    Paul Wong-Gibbs
    Keymaster

    Erm.

    Since you didn’t provide ANY version numbers; I’m guessing you are trying to run BuddyPress 1.1.3 on WordPress?

    #62751
    David Lewis
    Participant

    @Andy. Yup. It makes sense to me now that I’ve figured it out. After your instructions didn’t work as expected, I went back to basics and read the codex page about “Reading Settings” and under the “Front Page” bullet near the bottom of the page it says “If you would like to create a static home page template file, do not name it home.php”. Ding ding ding! Light bulb. So I put two and two together and finally figured it out.

    https://codex.wordpress.org/Settings_Reading_SubPanel

    Glad I’m not crazy after all. Sorry. I know my additions to this post were very confusing and probably a little frustrating. And thanks again Andy! Although your instructions didn’t work quite as expected because I had that home.php file, at least I knew I was on the right track! You’re a lifesaver.

    #62750
    Andy Peatling
    Keymaster

    To be honest the way it is now is the way every WordPress theme designer is used to. It’s the way WordPress does it natively. Using home.php is actually not the best idea since it overrides all settings – as we found out in the end.

    #62747
    David Lewis
    Participant

    Andy’s instructions didn’t work because I still had a template named home.php for my homepage and it was taking over control of my posts page even when I had manually assigned it to my custom “Blog” page and template.

    If anyone cares (LOL)… here’s the solution to having a separate front page and posts page that can both use a full paginated result set from the database.

    1. Make a template for your homepage with a filename OTHER than “home.php” or “index.php”. I used “homepage.php”.

    2. At the top of this file add <?php /* Template Name: Home */ ?>

    3. Make a WordPress Page called “Home” and assign it to the template you just made (i.e. “Home”).

    4. Make a WordPress Page called “Blog” and leave it assigned to the default template (which will be index.php).

    5. In the Reading Settings switch to static mode and set the Front Page to “Home” and the Posts Page to “Blog”.

    Thanks for the help guys. That was a mind bender. Just seemed easier (from a development point of view) when home.php and index.php defaulted to “/” and “/blog/”

    Now I think I need a drink. LOL :o)

    #62739
    peterverkooijen
    Participant

    I used this plugin for a one-time, scary users import operation. Not sure if that’s helpful for your issue.

    The WP/WPMU/BP members database is a patchwork designed to be as incompatible as possible with whatever else you might dream of using.

    #62737
    geoffm33
    Participant

    OK, I was able to reload WordPress into the doc root to avoid my issue. The particular topic I suppose is resolved but this seems like it is still an issue for WP admins that installed into a subdir of their domain.

    #62736
    Andy Peatling
    Keymaster

    This is how it’s supposed to work. Blogs are just normal WordPress blogs where users can select any WordPress theme you provide.

    #62730
    Andy Peatling
    Keymaster

    This is an old thread, it’s waaaaay out of date now, please start a new one. You can use the group extension API to do this. Or you can try this: https://wordpress.org/extend/plugins/bp-member-map/

    #62726
    geoffm33
    Participant

    This is current WP trunk specific?

    I may just try to reload wordpress in the document root.

    #62724
    Windhamdavid
    Participant

    OK ~ i was able to get the bp 1.2 default running perfectly using a subdirectory install with the current wp trunk I am using multi-site ~ with only one modification –

    Make sure your rewrite base for .htaccess is correct in your root and these are also correct.

    $base = '/~david/your_root/';

    define('DOMAIN_CURRENT_SITE', '127.0.0.1' );

    define('PATH_CURRENT_SITE', '/~david/your_root/' );

    ..and then add this to you wp-config pointing to your subdirectory wp-content

    define( 'WP_CONTENT_URL', 'http://127.0.0.1/~david/test/whatever_your_subdirectory_is/wp-content');

    #62718
    David Lewis
    Participant

    @Andy: In previous trunk versions I was able to use both a home.php template (/) and an index.php template (/blog/) but now I get a 404 when I go to /blog/.

    Explanation: My theme is set up so home.php uses a custom query to show all posts tagged with the most recently added tag in a custom taxonomy (i.e. taxonomy “issues”, tag “Winter 2010 Issue”) while index.php is a normal WordPress homepage loop returning a paginated result set of all posts by date. This doesn’t work anymore since /blog/ (index.php) returns a 404.

    #62696
    David Lewis
    Participant

    @Everyone: Thank you so much for the replies but I’m not sure the issue is being understood. The issue is the template hierarchy not working as it should. Without changing anything in your reading settings home.php should be used for the homepage and index.php should be used for the /blog/ slug. That no longer works.

    @Mike: I was trying to change the slug since /blog/ no longer works. It worked before. / used home.php and /blog/ used index.php and both had functioning loops that returned posts.

    @MrMaz: That works to change the homepage but the template hierarchy seems broken (see above). I can set up the homepage to manually use a page with home.php assigned as it’s template and then I can actually link to /blog/ and it WILL use index.php (yay)… but the only posts the loop returns i.e… if ( have_posts() ) : while ( have_posts() ) : the_post(); is the page you’re on since (I’m guessing) /blog/ is not longer considered a home page.

    Perhaps I need to have TWO custom queries? That may be the solution. Use my custom query for the homepage (however that is set and using either home.php or index.php… all irrelevant)… and then a custom template assigned to whatever page I want (maybe a page called Archives) that uses a custom query to return all posts from the database (i.e. so the loop results won’t be based on the slug… but on your custom query). Seems like a few hoops to go though. Worked fine before simply by using the WordPress template heirarchy and / and /blog/. As long as I can get it working though… it’s all good.

    @foralien: It’s a root install.

    #62690
    Michael Berra
    Participant

    PS: Your classifieds-plugin breaks on my install the ajaxed-navigation in BP… hmmm.

    Some other strange stuff: The title in the wordpress-repository is wrong “real names”…

    I think I wait, until xou think it is more or less stable…

    Hope it will work…

    #62675
    David Lewis
    Participant

    Ya that doesn’t work. I get a “bloggyblog” page of course… but it’s just a page using single.php. And if I assign index.php to it as a custom template the loop doesn’t work. Which I don’t quite understand. It’s the standard WordPress loop.

    #62673
    David Lewis
    Participant

    Yah… SSH command line stuff is a dream. LOL. Especially for someone who is a designer first and a coder second :o)

    So you mean create a WordPress “Page” called blog (and make sure it’s slug is ‘blog’)? I had tried using my index.php file as a template that I assigned to a page… but the loop didn’t work.

    It is weird tho’. In pervious versions of BuddyPress… you could go to /blog/

    #62670
    Mike Pratt
    Participant

    I think the bP Geo plugin is a farce. I have tried multiple times to contact the dev team there to no avail. They even go so far as to claim to be sponsored by Automattic. Seems doubtful. They are nowhere on this forum and no one has been able to get their plugin to work.Call me suspicious. You are better off trying @jjj’s plugin https://wordpress.org/extend/plugins/bp-member-map/ He is a living, breathing person as opposed to the aforementioned dev team

    #62665
    Jon Henwood
    Participant

    Hi

    Thanks for getting back to me. I had initially installed a pack option (supplied by my hosting service) which installed both wordpress mu and buddy press but did not install properly me thinks. So I installed the wordpress mu and then the buddypress plugin. Now templates working fine except I cant seem to get the default buddypress template and the Avenue K9 one seems to be broken (have downloaded and installed many times…no luck). So where can I find the defualt template to install…cause it doesn’t come up in the theme search (nor does Avenue K9)

    Thanks

    #62660
    r-a-y
    Keymaster

    I’d go with windhamdavid’s method, since I did use the guide that Symm2112 posted before.

    On that post’s comments, I list a potential problem with categories and custom taxonomies that you might encounter.

    #62659
    symm2112
    Participant

    I found that there were a few spots that I needed to change mem limit to import but ok. I used this tutorial to import my install. you have to remember that you’re not importing into Buddypress, you’re importing into wordpress or wordpress MU. Buddypress is just a plugin, not a platform. It ADDS the social features to your wordpress installation.

    http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/

    #62657
    Windhamdavid
    Participant

    an alternative method if you can’t increase your php memory limit is to grab this plugin and then import/export in chunks by date range.

Viewing 25 results - 19,901 through 19,925 (of 22,687 total)
Skip to toolbar