Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,801 through 16,825 (of 32,678 total)
  • Author
    Search Results
  • #31855
    Sergio De Falco
    Participant

    Hi,

    I’m working on a plugin that show a different page_on_front if the user is not logged in.
    I don’t like to use any redirect because the url will not show the root of the site.

    So… I made it and works pretty good on WordPress, not on buddypress.

    I used the filter parse_query where I changed the query_var page_id… why doesn’t on BuddyPress?
    How BuddyPress manage the page to show?

    Please give me an help, I also tried to force the frontpage with bp_dtheme_page_on_front, but it doesn’t work :

    Thanks :)

    #141656
    9087877
    Inactive

    Haven’t tested it myself but try this plugin:
    https://wordpress.org/extend/plugins/ag-custom-admin/
    If that doesn’t do the trick and nobody else can guide you then you may want to consider hiring a developer and posting it here: http://jobs.wordpress.net/

    #31854
    blg002
    Participant

    It goes like this

    – User submits registration form at example.com/register/
    – Get’s sent an email with an activation link
    – Clicks activation link e.g. example.com/activate/?key=d2373a345c3bbf9a62dd475e61cfbff9
    – Not registered
    – Activate page also has form to submit activation key
    – Submits activation form with key value from URL
    – Not registered

    Seems like this is broken, or am I just missing something.

    BuddyPress v 1.6.1
    WordPress v 3.4.2
    Using site-wide forums only

    Pretty sure it’s not any of my plugins as I disabled most of them and it still didn’t work.

    #141648
    erikahrend
    Member

    Hi. Maybe I didn´t explain properly. When users log in, they see the wordpress logo to the left and an access to the blog´s (subscriber)dashboard. I want to completely eliminate the references to WordPress in the left of the adminbar, but retain the Buddybar in the right..

    make sense?

    Thanks!!

    #141647
    @mercime
    Participant

    @dasteralo2 First, deactivate BuddyPress. you’ve got to make sure that your WP multisite installation is working before activating BP. Now create a new blog w/o BP and see if your new blog has been created.
    – If no subsite is created, then resolve the multisite issue first at the multisite forum https://wordpress.org/support/forum/multisite
    – If a subsite is created, then activate BuddyPress, go through the Installation Wizard and choose BP Default theme for the meantime, and create a new blog.

    #141644
    9087877
    Inactive

    If you don’t want the bar showing up for non-logged in users then go to dashboard/settings/buddypress/settings and uncheck show the toolbar for logged out users.

    #141643
    9087877
    Inactive

    The admin bar displays different for admins and subscribers anyway. It has admin functionality built in that a normal subscriber would not have. In short they don’t have admin options. So what are you really trying to do because it doesn’t make any sense!

    #141638
    erikahrend
    Member

    Hi again. I did as you stated, but that isn´t working, the WordPress adminbar is still there…Thanks again.

    Erik.

    #31852
    dasteralo2
    Participant

    Hello,
    I have installed wordpress multisite and buddypress and I have an error saying “page not found” when i want to create a new blog from the admin page.
    It seems that this page : http://subdomain.mydomain.com/blogs/create doesn’t exists.
    Please do you have any ideas ?
    Can it be an error in my wp-config or htaccess file ?
    Thanks

    #141635

    In reply to: blog create

    dasteralo2
    Participant

    Hello!
    Did you find any solution to your problem ?
    I have exactly the same problem on a wordpress multiste.
    Thanks.

    #141632
    9087877
    Inactive

    Okay gotcha! Put this in your child themes functions.php after the opening php tag :

    if (!current_user_can(‘manage_options’)) {
    add_filter(‘show_admin_bar’, ‘__return_false’);
    }

    function stp_no_admin_access()
    {
    if( !current_user_can( ‘administrator’ ) ) {
    wp_redirect( home_url() );
    die();
    }
    }
    add_action( ‘admin_init’, ‘stp_no_admin_access’, 1 );

    @mercime
    Participant

    @benzine You need to change 16 template files within the 6 BP folders transferred to your Paediatric theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your Paediatric theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <?php if (get_option_tree('blog_layout_sidebar', '')) { echo '

    ‘; } else {echo ‘

    ‘;} ?>
    <div id="post-” >

    `

    Then, in each of 16 files, delete the BP Templates’ Page titles where found (usually found in index.php files within BP Template folders) since the BP titles are generated automatically during the BP Installation Wizard and you don’t want duplicate titles in one page. Be careful with the activity/index.php file.

    Save files.

    aaclayton
    Member

    Hi BuddyPress community,

    I’m loving working with this tremendous plugin so far, however I have stumbled across a problem which I cannot seem to solve myself.

    Prerequisite Info:

    1) WordPress – 3.4.2 (directory, root)
    2) BuddyPress – 1.6.1 (no group forums)
    3) bbPress – 2.1.2 (site-wide forums)
    4) I’m using my own parent theme adapted to include BuddyPress. Much of the BP templating is inherited from BP-Template-Pack.
    5) No BP core modifications
    6) I am using bp-custom.php functions, but nothing relevant to this issue

    I am running BuddyPress with bbPress 2.1 sitewide forums (and no group forums). In this setup configuration, bbPress extends buddypress by hooking into the “plugin.php” template in the user profile.

    The file “wp-content/plugins/bbpress/bbp-includes/bbp-extend-buddypress.php” contains a set of functions for displaying bbPress topics, replies, favorites, and subscriptions in the BuddyPress user profile. These functions hook into:

    `do_action( ‘bp_template_content’ );`

    They use bbPress templates to display the output, specifically:

    “themedir/bbpress/user-subscriptions.php”
    “themedir/bbpress/user-favorites.php”
    “themedir/bbpress/user-topics-created.php”

    All of which exist, and are fully functional. However, it also attempts to call:

    “themedir/bbpress/user-topics-replied-to.php”

    This template does not exist, not even in the default bbPress theme, nor do the functions exist in bbPress that calls a loop of replied-to topics.

    http://tamrielfoundry.com/wp-content/themes/foundry/images/theissue.png

    My first attempt at a solution to this was to create the template “user-topics-replied-to.php”, and write some functions to query recent replies by the profile displayed user. I was able to get a reply list, but not an attractive loop of the topics to which the user had replied.

    Ultimately, I feel like it’s not THAT important a feature to have, since forum replies are filterable in the activity stream anyways. So, what I would really like to do now is REMOVE the “Topics Replied To” subnavigation button. Employing the typical BuddyPress functionality for this, however, produces no results!

    `
    function example_remove_replies_button() {
    bp_core_remove_subnav_item( ‘forums’, ‘replies’ );
    }
    add_action( ‘bp_setup_nav’, ‘example_remove_replies_button’, 99 );
    `

    So, I’m stuck with my only option being to remove the button with CSS on the browser side, but the /members/username/forums/replies slug will still be active in my theme, which makes my OCD self mildly uncomfortable!

    Anyways, I finally arrive at my question / plea for help. Does anyone have experience with modifying the contents of bp_get_options_nav(); for site-wide bbPress forums. However bbPress is hooking in (which I am still trying to figure out), its strong enough to ignore bp_core_remove_subnav_item.

    I’ve tried to be as clear as possible with the nature of the problem, but I’m happy to elaborate if further information would be helpful. Thank you so much for any assistance you can provide.

    #141628
    erikahrend
    Member

    Hi, thanks for your kind reply. I appreciate, but that completely removes the adminbar (including the Buddybar). I want to remove the WORDPRESS admin bar alone from non admins, but NEVER the Buddypress adminbar, which I want to have visible at all times…..

    Possible?

    Thanks!

    #141626
    9087877
    Inactive

    Place this in your childthemes functions.php just after the opening php tag:

    //Removes BuddyBar from non-admins only
    if (!current_user_can(‘manage_options’)){
    define ( ‘BP_DISABLE_ADMIN_BAR’, true );

    kuching
    Participant

    I’ve developed my own theme, I just copied the files provided into my own theme, then added a simple div tag in header-buddypress and closed in footer-buddypress to encapsulate it inside my existing css blocks

    if I don’t create these two files buddypress will look funny

    sorry for the confusione about my sentence above, I meant I’m not using a third party theme, I’m developing my own and embedding buddypress into it with BP Template Pack

    other than the issues mentioned above, my buddpress and wordpress installation are working fine; the duplicate wp_head is not really giving me serious issues (apart from that redirect problem at the moment), however it’s wrong to have repeated js and css in a page

    #141612
    @mercime
    Participant

    Issue is resolved when bbPress sitewide forums is deactivated. Posted in bbPress trac https://bbpress.trac.wordpress.org/ticket/1951

    erikahrend
    Member

    Hi all. I would like to have the Buddypress admin bar visible at all times in my site for logged in users, but I want to completely hide the WordPress adminbar from non-admin members (I only want the admins to be able to see it). How can this be achieved? Please bear in mind that my coding skills are very limited, a detailed explanation would be most appreciated.

    Thanks in advance, all the best.

    Erik.

    #141596
    rodtrent
    Participant

    You would *think* BP doesn’t touch XMLRPC at all, but here’s the scenario…

    Pre BP 1.6x – works fine. Windows Live Writer connects and works. JetPack can connect.

    Post BP 1.6x – With BP activated, Windows Live Writer cannot post to WordPress. You have to disable BP before JetPack will connect correctly – gives error about XMLRPC. So, something that BP is doing when enabled, locks XMLRPC.

    I’ve reported this to the JetPack folks and they are checking into it.

    Mark Morgan
    Member

    Thank you, I suspected that was the case.

    #141589
    @mercime
    Participant

    Created ticket for the duplicate forum posts issue above https://buddypress.trac.wordpress.org/ticket/4524

    @mercime
    Participant

    @sooskriszta check out https://wordpress.org/extend/plugins/buddypress-media/ by rtcamp; not to be confused with the other BP Media hosted on Google

    #141576
    Guido
    Member

    Hi Paul (and everyone else),

    I noticed a file and code about default WP profile:

    In file ‘profile’ there’s a line called ‘Display WordPress profile (fallback)’ and in the same folder (Profile) there’s a file called ‘profile-wp’ with all default WP profile fields in it.

    I’m not a programmer, but is it possible to adjust those files so default WP profile fields are displayed in members profile? What do I have to adjust?

    Guido

    #141571
    Paul Wong-Gibbs
    Keymaster

    Thanks for confirming.

    I’ve discovered BP 1.6.1 has a problem with topics not appearing in group forum lists when WP is set up to use a persistant object cache. I’m using the APC object cache plugin, and I’m 99% confident it’s occuring on one of our production memcached environments, too. Investigating.

    https://buddypress.trac.wordpress.org/ticket/4522

    kuching
    Participant
Viewing 25 results - 16,801 through 16,825 (of 32,678 total)
Skip to toolbar