Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 19,376 through 19,400 (of 22,658 total)
  • Author
    Search Results
  • #67162
    paulhastings0
    Participant

    I’m not going to let this one die.

    #67157
    Anointed
    Participant

    sorry boone it’s an old update. I should have mentioned that.

    I added another person to the group just now and their avatar showed up, so it’s fixed… thank you

    I’m curious if you have any plans of adding the ability for the admin or moderator to add members who are not friends to a group via the front end instead of the back end.

    Basically I am doing everything I can to keep people away from the back end of wordpress. I plan on having a lot of moderators for bp, who really should have no reason to ever see the back end if possible.

    If not, no worries, the plugin works perfectly as it is. a HUGE thank you!

    #67156

    In reply to: Hopped Up Beer

    abfinteractive
    Participant

    Hi dpee,

    We are using the plugin found here: http://www.myreviewplugin.com/

    I HIGHLY recommend it. The support is amazing (we have found a few bugs and they were fixed within a day). It is the best WordPress review plugin hands down.

    #67143
    modemlooper
    Moderator
    #67142
    ravetildon
    Member

    I use 1and1 for a couple of my sites…

    From what they tell me, 1and1 will not work with most wordpress or wordpress mu sites because they only allow php limited amount of memory.

    You can change the memory in php.ini and if you use phpinfo it will show up as 64mb, but at the server level they have it configured for this:

    These are the following restrictions on our “Linux shared business” hosting packages.

    A process may only use a CPU at 100% for 6 seonds

    A process may use a maximum of 12 mb of RAM

    A maximum of 12 process to be run at any 1 time

    They do have a shared developer package with a lil better memory, but you’ll probably still get the issues…

    #67141

    In reply to: Can't go into wp-admin

    miguelaqp
    Member

    Can somebody help me please?

    I’m using one database to hold 6 different WordPress Blogs. I decided to put in one of them BuddyPress, and now I can’t go in like an administrator in this Blog. All others are functioning okay, so I believe the problem is only with themes or something like that on this blog. Something that was caused by BuddyPress installation. When I try to access to: http://www.aqplink.com/sanmartin70/wp-admin/ it tells me that I don’t have permission to access to this page. What should I do? All was working fine, until I install BuddyPress, so it is something that I didn’t take care of. I didn’t read too much after I saw a messages that encourage to install, because even our grant mother could install it without problems. And since I’m used to install plugging without any precaution…I closed my eyes and proceed…

    Please help me.

    #67132
    Paul Wong-Gibbs
    Keymaster

    In your theme/child theme, you just need to add new widget areas in, same as any regular WordPress theme. I’m not a theme expert but have a look at http://www.themelab.com/2008/04/18/see-how-easy-it-is-to-widgetize-wordpress-themes/ under “Multiple Widget Ready Areas”

    #67131

    I don’t even have it my options. My site was just a standard wordpress with the buddypress plug in.

    #67095
    rich! @ etiviti
    Participant

    only problem with removing the link:

    <?php echo bp_get_root_domain() . '/' . BP_GROUPS_SLUG . '/create/' ?> someone could still access the url directly to start the process.

    I went ahead and created a plugin (waiting on repo request on wordpress.org) to disable the steps and show a ‘new groups creation is closed’ message. Also added in a midlevel-cap to allow another set of users the ability to create private/hidden + w/forums. I may expand this to restrict other steps in the group creation process (as other plugins using the group extension api may add in their own step)

    Basically the plugin removes the $bp->groups->group_creation_steps – adds in a custom position 0 step to display a closed page.

    #67094
    Andrea Rennick
    Participant

    If it’s related to user blogs, you’re better asking over at the wpmu forums,

    https://mu.wordpress.org/forums/view/all-topics

    Where there are plenty of topics discussing just this very thing. (Yes, it’s possible, yes there are plugins)

    #67092
    MrMaz
    Participant

    If you guys can agree on an existing GPL events plugin that works in WordPress I might consider extending it or forking it to work with BuddyPress. The one that David Lewis mentioned looks promising, and I would probably fork that one since it hasn’t been updated for 9 months (depending on what the author has to say).

    #67081
    Mariusooms
    Participant

    The GroupBlog plugin does not fit into that structure really well. While it does some of it, it really is going a different direction in its approach. You’d be best to take a look at this plugin:

    https://wordpress.org/extend/plugins/bp-community-blogs/

    It is no longer under development for a year and will not be updated either. It will not work with 1.2, but it does do what you desire. You could at least use that as a starting point and port the code to bp1.2.

    MrMaz
    Participant

    query_posts() is expecting an array to passed to it for the arg ‘category__not_in’. It looks like you are passing it a string of ids separated by commas. get_exclude_categories_loop() should be returning an array.

    query_posts(array('category__not_in' => array(2,6)));

    See multiple category handling here:

    https://codex.wordpress.org/Template_Tags/query_posts

    This is not valid PHP:

    <?php
    query_posts(array('category__not_in' => array(get_exclude_categories_loop))); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    This is:

    <?php
    query_posts( array( 'category__not_in' => get_exclude_categories_loop() ) ); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    #67065
    David Lewis
    Participant

    I was actually going to use this one since I don’t need registration or payment: https://wordpress.org/extend/plugins/calendar/

    #67062
    gaysurfers
    Participant

    I am using WordPress 2.9.2.

    #67055
    MrMaz
    Participant

    @thekmen

    You are correct, that is a bug. Thanks for the report.

    You can change that manually, or check out the 0.3 branch, as I have just committed that fix…

    svn co https://plugins.svn.wordpress.org/buddypress-links/branches/0.3

    Thanks!

    schwooba
    Participant

    You could try this WordPress plug-in…’wp-members. Works for me.

    #67041
    thekmen
    Participant

    Just uploaded a slighter newer version with some CSS updates & support for the BuddyPress Links plugin.

    http://xfactor-blogs.com/downloads/

    @Arun thanks for pointing that out, will fix it on the next update.

    #67037
    r-a-y
    Keymaster

    There’s a plugin for group tags, but that categorizes the groups and not the activity content:

    https://wordpress.org/extend/plugins/buddypress-group-tags/

    Andy mentioned that the code for global activity search exists, it just needs a frontend.

    #67025
    m@rk
    Participant

    Thanks Dfa327… but where to download? The repository at wordpress.org doesn’t seem to be updated?

    #67018
    Boone Gorges
    Keymaster

    Thanks for the plug, Erich :)

    https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/ is the plugin you’re thinking of. I updated it about a week ago to work on versions of BP 1.2+ (though you should definitely let me know if it does not work!).

    @Nick – the plugin will do what you want. Check out the readme file, which will explain how to make it work.

    @gregfielding – That’s a good idea, but at the moment BP is not set up in a way that makes it easy to create those check marks with a plugin. Maybe I’ll submit a core patch that does it, as I’d like to see it too.

    #67016
    peterverkooijen
    Participant

    In my site I use this plugin. It has all the basic functions I need – RSVP, confirmation emails, payment bridge, etc. – but the interface is a mess. It also has no BP integration, but I don’t really need that in my project.

    I had planned to restructure, rewrite and expand the plugin, also including the excellent jQuery plugin FullCalendar. I’m very interested to see what Erwin and Marius Ooms come up with! A connection with groups, Buddypress’ killer app imho, sounds like a great idea as well.

    But for my project I really need a solid event management tool, like a self-hosted version of eventbrite.com, integrated with the BP members database. I don’t really need a solution that allows members to create events or put stuff on a calendar.

    Will Erwin and Marius solutions be an event management tool or more like an expanded community calendar? I’d encourage them to look into the EdgeTechWeb plugin…

    EDIT:

    Actually, the EdgeTechWeb plugin is really ugly. I need alternatives…

    PayPal Booking Framework

    Advanced Events Registration (based on EdgeTechWeb’s…?)

    Eventr

    #67004
    epsi
    Participant

    I like to try any plugin and, hei…


    @Dwenaus
    , this Rate Forum Posts plugin looks cool.

    It is fine in my localhost but I found this error in live site

    http://iluni-ftui.org/groups/situs-iluni/forum/

    WordPress database error You have an error in your SQL syntax;

    check the manual that corresponds to your MySQL server version for the right syntax to use near

    ‘WHERE object_type = ‘bb_post’ AND meta_key = ‘rfp_rating’ AND object_id = 1′ at line 1 for query

    SELECT meta_value FROM WHERE object_type = ‘bb_post’ AND meta_key = ‘rfp_rating’ AND object_id = 1

    made by require, require_once, do_action, call_user_func_array, bp_core_do_catch_uri, load_template, require_once, locate_template, load_template, require_once, do_action, call_user_func_array, rfp_after_topic_title, rfp_get_post_rating_signed, rfp_get_post_rating

    It solved by adding code below in rate.inc.php

    require_once ABSPATH.’bb-config.php’;

    global $bb_table_prefix, $bb_meta_table;

    $bb_meta_table = $bb_table_prefix . ‘meta’;

    Thanks for the plugin.

    Now it works. But since I’m still a WP noob.

    I don’t know if it is politically correct.

    Okfalls
    Participant

    Hi to all those people that watched at at times gave me feedback on my troubles getting BP to work on my site. The short answer… I had BP installed on my “localhost”. So what I finally ended up doing was to export my localhost SQL and then imported it to my server at Powweb. It worked… Now I am just tweaking my install and ironing out the way I would like the site to look.

    So to those that watched and answered my hiccups “thank you” I appreciate you taking the time to pass on your expertise.

    All the best,

    Rod :)

    #66984
    Nick Watson
    Participant

    Hmm well, I did a search, and that name seems very familiar, but it appears that it’s the same plugin as the one I have installed:

    https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/

    my problem is getting them to be NOT links, unless someone uses the tags

    Thanks, I think that was maybe the old name for it??

Viewing 25 results - 19,376 through 19,400 (of 22,658 total)
Skip to toolbar