Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 15,576 through 15,600 (of 22,612 total)
  • Author
    Search Results
  • aces
    Participant

    Maybe go into the site by ftp and disable buddypress links plugin

    To disable, rename the folder `/buddypress-links/`

    That should cause wordpress to de-activate the plugin.

    Once you get back into wp, you can change the directory/folder back again!

    #105928
    @mercime
    Participant

    @Maichomper – “I just installed WP today and it is working fine”
    How did you install WP, via script like Fantastico/Simplescript or via manual upload (FTP or cPanel)? If you installed via script, start from scratch — drop DB tables and delete wp-config.php and .htaccess file in server — download fresh WP https://wordpress.org/download/and upload WP files manually

    @chipy you should start a new topic instead. In the meantime, click on the link to update permalinks. If that doesn’t work, go to menu Settings > Permalinks and choose permalink to other than default permalink and save. Mod_rewrite must be enabled in your server.

    #105926
    s.a.991
    Member

    solved the problem. i moved all the wordpress data from “www.biggaa.de/wordpress” to “www.biggaa.de/”.

    #105917
    chipy
    Participant

    hello, i am new in the wordpress/buddypress world, i installed a wordpress and it works, but i have problem with the buddypres when i activat that plugin i must go to permalink options to do something, but there is nothing i can change or something else here is a printscreen

    http://img202.imageshack.us/i/buddyg.jpg/

    What should i do?

    Thanks for your support

    pcwriter
    Participant

    Create a new file called page-full.php (or any other name you prefer). Then paste the following code in that file. The only differences between this and the “regular” page.php is that the call to the sidebar has been removed, and “div class=padder” has been changed to “div class=full-padder”.

    `<?php
    /*
    Template Name: Full-Width Page
    */
    ?>

    <div class="post" id="post-“>

    <?php the_content( __( '

    Read the rest of this page ?

    ‘, ‘buddypress’ ) ); ?>

    __( ‘

    Pages: ‘, ‘buddypress’ ), ‘after’ => ‘

    ‘, ‘next_or_number’ => ‘number’)); ?>
    <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '

    ‘, ‘

    ‘); ?>


    `

    Then add this to your child-theme’s style.css file:

    `div#content .full-padder {margin:0;padding:19px;}`

    When you create a page in WordPress, you’ll see your new template is available in the “Page Attributes” Template dropdown.

    Alan
    Member

    It is easy to develop and theme in buddypress just as it is in wordpress ,you have to make use of template tags.
    I’m about to release few themes for free soon.

    #105789

    In reply to: Found a bug!

    money1039
    Member

    btw, I am using all latest versions of bp + wordpress. 1.2.7, 3.5

    modemlooper
    Moderator

    WP drop down menus coming to BP 1.3. Dont know when release is coming. You can roll your own code and CSS.

    http://modemloop.wordpress.com/2010/11/30/buddypress-drop-down-menus/

    #105749

    In reply to: BP Album vs BP Gallery

    Histrion
    Member

    foxly ..keep up the good work, and i don’t whant even comment BP Gallery
    i will use BP album+. Why? its not bad,will be upgraded ,it is free like WordPress and Buddypress
    That was the idea to be free , doesn’t it?

    #105745
    Paul Wong-Gibbs
    Keymaster

    This is all possible but you will need to know how to create WordPress themes/templates. If you can’t, you’ll need to hire someone.

    Likewise, because of the scope and complexity of this question, you’re unlikely to get any meaningful replies. Again, you’ll need to consider hiring someone, or at least installing BuddyPress and attempting to achieve these things, one step at a time.

    #105743
    @mercime
    Participant
    #105729

    In reply to: Community Menu bug

    aces
    Participant

    If anyone wonders what a solution is…

    I targetted .single-post and .page-item-40 (40 being the news page) css classes. Apparently this is an old wordpress bug which still exists in wp 3.1rc4….

    r-a-y
    Keymaster

    Sounds like you’re using an older version of WordPress.

    BP 1.2.7 requires at least WP 3.0.

    modemlooper
    Moderator

    FYI: I will be moving these themes out of the WordPress repo. It takes too long for BuddyPress themes to get reviewed and updated. I have a group here so you can get updates. https://buddypress.org/community/groups/citizen-kane-theme/

    #105684
    pcwriter
    Participant

    @coaster101

    In your WordPress backend, go to “Settings” > “General” and modify the “Site Title”. Whatever you enter there will be displayed in the adminbar.

    #105627

    Ah, 8 months and no reply. I figured, it’d be a long time before anyone answered to this thread, so I got down to get my hands dirty.

    Now, I’m not a developer at all, so most of my hacks are just that – hacks. Well, anything will do as long as it gets the code working, I figured. If anyone wants to modify the hack into something more elegant, be my guest!! :)

    Two changes:

    1. Change line 45 in `wp-content/plugins/bp-posts-on-profile/includes/bp-postsonprofile-core.php` from:
    `$where = $wpdb->prepare(‘WHERE post_author = %d AND post_type=%s AND post_status=%s’, $user_id, ‘post’, ‘publish’);`
    to:
    `$where = $wpdb->prepare(‘WHERE post_author = %d AND (post_type = %s OR post_type=%s) AND post_status=%s’, $user_id, ‘post’, ‘your-custom-post’, ‘publish’);`

    where `your-custom-post` is the name of your custom post type. If you have more than one custom post, you’ll have to make changes to the part where it says: ‘(post_type = %s OR post_type=%s)’ to include all of them. (Like I said, inelegant, but mostly effective)

    2. Change line no.25 in `/wp-content/plugins/bp-posts-on-profile/includes/templates/postsonprofile/screen-one.php` from:
    `query_posts(‘&author=’. bp_displayed_user_id() .’&paged=’. bp_pop_cur_page());`
    to:
    `query_posts(‘post_type=any’ .’&author=’. bp_displayed_user_id() .’&paged=’. bp_pop_cur_page()); `

    If you’re wondering, “Can it really be so simple?” The answer is, NO. There’s a tiny little problem – for some reason, it breaks the sidebar and pushes it below the content. I’m still racking my brains to figure out which part of the code is responsible.

    As I’ve mentioned I’m NOT a developer – I’ve taken to learning PHP & WordPress from the ground up. If anyone else can chip in it’d be a great help! Thanks & hope it helps you as well. :)

    #105597
    pabile
    Member

    hi @henry0,
    i am also new to buddypress and trying to do some reading. have you tried using author page template (author.php)? like the one mentioned here: https://codex.wordpress.org/Author_Templates

    i was not able to test it right now due to some access restrictions. but if anyone could confirm this it will greatly appreacited (i need it also) :-)

    #105593
    dws890
    Member

    The BP Bad Word Filter plugin is available here: http://wordpress.matemedia.com/buddypress-plugins/

    mariamar
    Member

    Hi, everyone,
    I have similar problems with registration
    1. .I can’t see my registration page anywhere.
    2. When I use the http://mariamar.com/register URL, it just sends me back to the homepage.
    3. I also don’t know how to place a registration link or box so visitors can register.

    I see that the consistent answer here is Settings/ General.
    I’ve done that. Still the problem is not solved.
    INFO
    I’m using WordPress 3.03 (or 4? Anyways, the one previous to 3.05) I installed BP and then used the available links to make it work with my theme, suffusion, which is the theme I use in all our blogs, as is the best one around for creating flexible widgets and highly customized design, so I don’t want to change it. I don’t know if this affects the situation. Just thought to mention this.
    PLEASE HELP!
    Well, I’m stuck. Have looked everywhere for a solution. I would appreciate some quick response from the very nice fellows in this forum.

    Thanks,
    MM

    #105555

    In reply to: 2nd level menu

    modemlooper
    Moderator

    Drop downs are coming to BP 1.3. If you can’t wait search codex.WordPress.org for menus to learn hot to use WP menus. You will have to add the code and CSS yourself.

    #105548
    Hugo Ashmore
    Participant

    If you can pull up the Apache default page then the machines network config must be correct so the issue can’t lie there can it.

    This sounds more as though you haven’t configured vhost containers correctly or simply set the httpd.conf directory to that of your blog home instead of /var/www/html or /home/user/ or however Ubuntu configures things.

    If you have written redirects or custom re-write rules then comment them out until you have things working ok. WordPress handles all the rewriting necessary and as long as owner/group perms are set correctly then WP will create the .htaccess and write the rules necessary to it, if not simply copy the provided example ones when you try and set permalinks.

    #105547
    DrReaper
    Member

    I have been working on this for four weeks. Doesn’t anyone know how to configure this on a Ubuntu computer? I can see the apache2 default page but I cannot see my /blog page from the internet. I have tried configuring apache2, the WordPress database, I DMZ’ed the router to the ubuntu machine. There has to be something I am missing. Maybe the redirect I made to get buddypress 404 pages to work is somehow messing things up.

    modemlooper
    Moderator
    #105538
    @mercime
    Participant
    #105527
    @mercime
    Participant
Viewing 25 results - 15,576 through 15,600 (of 22,612 total)
Skip to toolbar