Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,626 through 16,650 (of 22,651 total)
  • Author
    Search Results
  • #94118
    Paul Wong-Gibbs
    Keymaster

    You haven’t installed WordPress under a subdirectory called “forums”, have you? e.g. mysite.com/forums/wp-admin/

    #94116
    Paul Wong-Gibbs
    Keymaster
    #94115
    Paul Wong-Gibbs
    Keymaster

    A lot of us try to help answering questions on these boards, but we’re just volunteers doing this for fun. We seem to get most issues replied to within a two day period, which I think is very good.

    Regarding above — neither of you have provided sufficient detail (have a look at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/ for the sort of information we’d find useful). Does WordPress (without any plugins or custom themes installed) send emails correctly, for example on user registration?

    #94107
    Roger Coathup
    Participant

    By default, WordPress sends system email using sendmail.

    If you receive admin emails (new user joining, password changes, etc.), your email server is working, and it should send out notification emails to members without problem.

    Members configure their settings: My Account … Settings … Notifications

    If you want to use a different email server, e.g. smtp, this may help: http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/

    If you want to send specific emails to members, you could look at something like the Welcome Pack plugin

    Rob Sbaglia
    Participant

    Which folder should the buddypress plugin be in? It’s currently in /public_html/thenorthschool.com/wordpress-mu/wp-content/plugins

    Rob Sbaglia
    Participant

    Update was automatic. I don’t think I have a caching plugin – would that be through wordpress?

    #94076
    LPH2005
    Participant

    CubePoints
    CubePoints is a point management system designed for WordPress blogs. Users can earn points by posting comments on your site. To display user’s points, just put “ in your template or activate the sidebar widget.

    CubePoints Buddypress Integration
    Adds CubePoints support to Buddypress. Reward members using your BuddyPress portion of your website by giving them points!

    BuddyPress Member Profile Stats
    Adds a few basic count stats and per day avg under member’s profile

    You may see integration of the plugins on http://www.thechembook.com
    Profiles: http://www.thechembook.com/members/admin/profile/public/

    When a member is logged into the site then the navigation bar shows the points, too.

    #94075
    Paul Wong-Gibbs
    Keymaster

    Thanks @nahummadrid

    @JordashTalon There is some more detail on my Achievements plugin at http://byotos.com/. An alternative to Achievements is CubePoints, https://wordpress.org/extend/plugins/cubepoints/

    #94047

    In reply to: 404 Page not found

    roopunk
    Member

    hey pals, I had the same problem. Searched a little in the wp documentation about permalinks. Seems that to use the permalinks other than the default one, mod-rewrite needs to be enabled in apache server. I followed the steps and enabled the mod-rewrite module and now everything is working fine. here’s the documentation https://codex.wordpress.org/Using_Permalinks

    #94029
    Bowe
    Participant

    Have you enable Multisite on your wordpress install? Blogs are only enabled if you use multisite:

    https://codex.wordpress.org/Create_A_Network

    #94026

    In reply to: Translating buddypress

    John
    Participant

    @rogercoathup Thanks, apparently this plug-in is only working until the version 2.9.2 of WordPress.

    Do you know a plug-in who could offer the user the choice to choose the buddypress’s function language ?

    #93991
    @mercime
    Participant

    “The site was originally installed on WordPressMU”

    You can convert a WPMU install with only one site to single WP, it’s not hard to do and there are tutorials online on how to go about it. But none take BuddyPress into consideration and you’re on WP 3.0.1, so all bets are off. I would suggest experimenting on test install first and see how that works out, taking into consideration avatar and media upload paths. Main work would be on database. In the meantime, I assume that in your dashboard > Super Admin > Options > only user registration is allowed.

    #93981

    In reply to: Translating buddypress

    John
    Participant

    @rogercoathup Thanks but this will be applied to all the blogs ? My buddypress is on a secondary blogs. And I just want to offer the users the choice to translate the functions in their languages.

    I have found something who could really fit my needs but I can’t make it work :
    https://wordpress.org/extend/plugins/fw-quick-langswitch/

    I’ve installed it, but if I click on the flags nothing happen. I have named my images according to the name of my languages files (buddypress.pot et buddypress-fr_FR.mo)

    tweetyx
    Participant

    Problems solved on actually bp and wordpress 3.0 for profile
    The first problem was the js conflict with jquery -> dynamic marks not works
    the second is the profile maps doesn’t work so ->
    the file bp_maps_profile_init.php contain a bp_maps_profile_init() function where the function bp_maps_profile_is_enabled, bp_is_profile_edit and bp_maps_profile_is_map_group return false so the js aren’t be loaded .
    So you must change the condition for it work!
    this is my code
    function bp_maps_profile_init() {
    global $bp;

    //backend options
    add_action( ‘bp_maps_admin_plugins_div’,’bp_maps_profile_admin_plugins_div’);
    //the numer of my group edit for the location page (/members/admin/profile/edit/group/6/)

    if(strpos($_SERVER[“REQUEST_URI”], “edit/group/6?) !== false):

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_marker_infobulle_content’,’bp_maps_profile_infobulle_content’,10,2);
    //add_filter(‘bp_maps_get_markerslist_marker_content’,’bp_maps_profile_marker_content’,10,2);

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_get_marker_title’,’bp_maps_profile_marker_title’,10,2);
    add_filter(‘bp_maps_get_marker_list_title’,’bp_maps_profile_marker_title’,10,2);

    add_action(‘wp_print_scripts’,’bp_maps_profile_print_scripts’); //edition scripts (address autocomplete)
    add_filter(‘bp_maps_get_map_js’,’bp_maps_profile_add_map_js’,10,2); //array to contain the field ids
    add_action(‘wp’,’bp_maps_profile_edit_no_marker’);

    //TO FIX : useless ?
    //add_filter(‘bp_maps_get_new_marker_address’,’bp_maps_profile_get_new_marker_address’);

    do_action(‘bp_maps_profile_edit_map_screen’);

    bp_maps_head_init(); //load maps JS

    endif;

    }

    If you want to dll my version it here http://www.sky-flop.com/buddypressmaps-titi.rar

    #93976
    tweetyx
    Participant

    Problems solved on actually bp and wordpress 3.0 for profile
    The first problem was the js conflict with jquery -> dynamic marks not works
    the second is the profile maps doesn’t work so ->
    the file bp_maps_profile_init.php contain a bp_maps_profile_init() function where the function bp_maps_profile_is_enabled, bp_is_profile_edit and bp_maps_profile_is_map_group return false so the js aren’t be loaded .
    So you must change the condition for it work!
    this is my code
    function bp_maps_profile_init() {
    global $bp;

    //backend options
    add_action( ‘bp_maps_admin_plugins_div’,’bp_maps_profile_admin_plugins_div’);
    //the numer of my group edit for the location page (/members/admin/profile/edit/group/6/)

    if(strpos($_SERVER[“REQUEST_URI”], “edit/group/6”) !== false):

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_marker_infobulle_content’,’bp_maps_profile_infobulle_content’,10,2);
    //add_filter(‘bp_maps_get_markerslist_marker_content’,’bp_maps_profile_marker_content’,10,2);

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_get_marker_title’,’bp_maps_profile_marker_title’,10,2);
    add_filter(‘bp_maps_get_marker_list_title’,’bp_maps_profile_marker_title’,10,2);

    add_action(‘wp_print_scripts’,’bp_maps_profile_print_scripts’); //edition scripts (address autocomplete)
    add_filter(‘bp_maps_get_map_js’,’bp_maps_profile_add_map_js’,10,2); //array to contain the field ids
    add_action(‘wp’,’bp_maps_profile_edit_no_marker’);

    //TO FIX : useless ?
    //add_filter(‘bp_maps_get_new_marker_address’,’bp_maps_profile_get_new_marker_address’);

    do_action(‘bp_maps_profile_edit_map_screen’);

    bp_maps_head_init(); //load maps JS

    endif;

    }

    If you want to dll my version it here http://www.sky-flop.com/buddypressmaps-titi.rar

    #93945
    Anonymous User 96400
    Inactive

    Well, when yo call xprofile_template_loop_end, then this hook should only run once the complete loop has finished. There’s no way of adding stuff before or after a certain action hook (except when there’s another hook), only right where the hook is. One way of adding things to a loop is to use a counter for the loop and then add a dynamic hook to every entry, like so:
    `do_action( ‘some_custom_hook_’. $counter );`

    BuddyPress plugins are just WordPress plugins, so the best starting point is probably the WP codex:
    https://codex.wordpress.org/Main_Page

    Then there’s the skeleton component that does a pretty good job of explaining some BP specific stuff:
    https://wordpress.org/extend/plugins/buddypress-skeleton-component/

    And of course the BP plugin files and other BP plugins, that you can have a look through.

    #93915
    rayd8
    Member

    I’m going to try and add the steps for the fix again. I didn’t see the note about using backticks for code…

    1. Open the index.php, save it to your theme as posts-page.php (or whatever template name you like).
    2. Edit the newly created posts-page.php file and place the following at the top to create a page template:

    `<?php
    /*
    Template Name: Posts Page
    */
    ?> `

    3. Now scroll down in the posts-page.php to the beginning of the WordPress loop and just before the line “ add this one line of code “ Note: (5 == the number of post to show you can change this to whatever you want.)
    4. Save the posts-page.php file.
    5. In your WordPress/BuddyPress admin panel create a new page called “Blog” (or something similar) and select “Posts Page” under Template.
    6. Publish page.

    You should now be able to go to your Settings -> Reading menu and set a static page and select your Posts Page to show your blog posts.

    paulhastings0
    Participant

    We meet online every 2 weeks. You can suggest agenda items here: http://bpdevel.wordpress.com/

    Wednesdays @ 19:00 UTC

    IRC: irc.freenode.net
    Channel: #buddypress-dev
    Web-based IRC client: http://java.freenode.net/

    Roger posted some good links too. I’ve been really impressed with the potential of filters and the like.

    #93907
    Roger Coathup
    Participant

    @askunky

    There are any number of ways you can do this using CSS positioning (and developing your own bespoke website theme).

    This isn’t really a BuddyPress question though, it’s a general website development / CSS question. I suggest a good book on CSS would be a starting point.

    Incidentally: There’s no need for div wrappers just to position an image (you are adding unnecessary bloat), and I’d certainly avoid inline style definitions (which can be a maintenance nightmare).

    @pcwriter – I’m not sure what you are trying to write with your CSS, but I suspect you’ve confused absolute and relative positioning. For the approach you are suggesting, you should make your main header div relatively positioned, and use absolute positioning on your image to position it absolutely in relation to the header div: http://css-tricks.com/absolute-positioning-inside-relative-positioning/

    As to suitability of BuddyPress for a ‘simple site’ – it depends what you want that site to do – if you want user profiles, messaging, groups, activity streams, etc. – then BuddyPress gives you a great platform to build on.

    If you just want a simple content management system with posts, then you’d be better building on vanilla WordPress.

    If you don’t need content management, then your simplest site would just be HTML and CSS.

    #93886
    paulhastings0
    Participant

    @jutecht12 Something else appears to be the problem here. When I visit your blogs tab it says that most of your blogs were updated over a month ago. But when I visit the individual blogs some say they were updated just a couple of days ago.

    Let me guess, did you upgrade either BuddyPress or WordPress on September 8th?

    I would try installing BuddyPress and WordPress one more time again from scratch. Possibly even change the name of the database. Make sure to create backups though.

    nit3watch
    Participant

    I thought of trying to make a function that would take preference over the build in wordpress $id.

    something like:

    function id()
    $id = $bp->groups->current_group->id

    but doesn’t take effect, is there some way to take priority like with css !important ?

    Edit: instead of trying the above I changed all instances of $id to my own function $group_rate
    Though I just need a little help with the function and after which I dont see why it shouldn’t all work :D

    Here’s my version, my function’s on line 7-10 : http://pastebin.com/dR74qbqM

    #93845
    Hugo Ashmore
    Participant

    @kimprasannanielsen welcome to the help forum, firstly the forum is not a coding service as such we can’t do the work for you but will help you where you get stuck.

    If you find an aspect confusing then please explain what stage you are at and what you’re stuck with and someone with experience of using the template pack will hopefully be able to guide you along.

    If however you do want professional help then rather than post your email address here post a request on the jobs board group for help getting this sorted.

    nit3watch
    Participant

    Motivation :D

    Image and video hosting by TinyPic

    K well trying this with the Five Star Rating plug-in: https://wordpress.org/extend/plugins/five-star-rating/

    Here’s what I have so far, though $id ( from line 176 onwards ) is confusing me.. and not quite sure to do there?
    I cant get it to save the group data..

    Im calling the ‘stars’ using the shortcode in the group header: http://pastebin.com/R1gsTudD

    Here’s my edited fsr.class.php: http://pastebin.com/qczBCb18

    #93822

    Ok thanks, I’m looking into changing everything now.

    I’ve been talking with the help desk at Hostgator & they said this:

    Andrew Mi: You need to pull the files for the forum install. I only see the wordpress files there.

    So I’m currently downloading a back up from August 1st right now to my computer, what files do I need to pull for the forum install?

    Quote:
    when you’re secure again try running through the forum setup procedure from the backend using the existing setup option

    and also visit the WP permalinks page under ‘Settings’ to ensure that the rules are flushed.

    Ok sorry I’m not following this, so I need to run the Forum Setup procedure, but where is the “Backend” and where is the setup option from there?

    Thanks.

    #93817
    youngmicroserf
    Participant

    No one has any additional info on the profile integration?

Viewing 25 results - 16,626 through 16,650 (of 22,651 total)
Skip to toolbar