Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 13,726 through 13,750 (of 32,678 total)
  • Author
    Search Results
  • Henry
    Member

    I haven’t used this plugin but it looks as though it will do what you need:

    https://wordpress.org/plugins/demo-data-creator

    #166371
    bkypes
    Participant

    Hey Guys,

    I’m pretty new with everything here and I have been checking all over to try and figure out how to fix my issue. I’m having issues with Jigoshop interfering with my theme and a bit of coding on the BuddyPress end. I’ve contacted Jigoshop support multiple times and they don’t know what the issue could be and the only developer that has done add-ons for them won’t reply to my emails. I’ve done a bit of research and it looks like it could be an underlying issue with a Child Theme or something of the sort. I’m running on WordPress 3.5 and BP 1.7.2 and bb 2.3.2

    You need to be logged in to see the full extent of the issues that I am having but here is what I’ve found:
    1. Background doesn’t display
    2. Post Update button does not show up when the text entry box is active
    3. When clicking the comment box the page reloads instead of doing it seamlessly (sorry I’m not familiar with the technical terminology)

    Has anyone delt with any issues similar to this with any other plugins that you could lend a helping hand? I’m so close to having this ready to go and this is all that’s preventing me from finalizing everything!

    Thanks so much for any help that you can offer!

    Best,
    Brandon

    #166361
    bp-help
    Participant
    #166352
    naplpm
    Participant

    Hello,

    I’m setting up a site with the Nine Theme . I’m trying to customize the Members page, changing some options on the edit page form within WordPress. I selected the side bar layout, but the side bar doesn’t show up when I navigate to the members page. Any idea?

    The site: http://www.firebirdspeed.com

    Thank you very much!

    #166301
    koreancandy
    Participant

    I’m using WordPress Version 3.5.1 and Buddypress version 1.7.2

    #166300
    Hugo Ashmore
    Participant

    Well @DJPaul kicked it off with the initial patch based on feedback from a couple of devs on this ticket:

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

    The codex entry needs a little additional editing and linking to my earlier page on 1.7 template compatibility.

    #166275
    wolsi
    Participant

    So I’m rather new at WordPress so I think I’m missing something. I would like to accomplish basically the same thing as DKerrigan, not showing the bio field but some others. I think I can just reuse that code and change the field I want to be shown but where should I put that code? I thought I had to change groups-loop.php with the new code but that does not seem to do anything.

    Thanks!

    #166232
    hugirl
    Participant

    Whenever someone tries to register on the site it redirects them back to the registration page with the password field empty. They are not registered as members at all I re-installed buddypress; deactivated and activated each plugin one at a time and still no results. I’ve searched in both the buddypress support forum and wordpress and nothing helpful comes up. I’m using buddypress 1.7.2 and wordpress 3.5.1 . The plugins that I have active consist of:

    -automatic sign out for inactivity 1.0
    -BP profile search 3.3
    -buddypress edit user profiles 1.0
    -buddypress user account type lite 2.4.6
    -Calpress calender 1.5.0.1
    -capability manager enhance 1.4.10
    -list category posts 0.30.0
    -paypal donation shortcode 0.1
    -personal welcome 0.3.7
    -sign-up sheets lite 1.0.7
    -sitewide newsletter 0.4
    -tdlc birthdays 0.4
    -wordpress access control 3.1.4
    -WP Easy paypal payment accept v2.8

    Could someone please help?? Thanks in advance!

    SadNinja
    Participant

    I want to use the default wordpress signup. I have googled the problem and found the answer to add “remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );” to my theme’s functions.php file. Even after doing this it still takes me to the buddypress registration page. I don’t know what I am doing wrong but I’m sure that it’s something simple. I am running the newest version of genesis with the agency child theme and the newest version of buddypress.

    #166223
    koreancandy
    Participant

    This is the link: http://kpopcommunity.com/fanclub-forums/ and I am using the latest WordPress and Buddypress.

    #166221
    dswright
    Participant

    I have tried this and it did not work

    
    /** 
    . * Disabled oEmbed from WordPress 3.5 
    */ 
    remove_filter (  'the_content' ,  array (  $GLOBALS [ 'wp_embed' ],  'autoembed'  ),  8  );
    

    I have the BuddyPress Activity Stream enabled on my site. When I click on Comment, the comment window opens for a split second and then the page refreshes, and the comment window closes. I have disabled all additional BuddyPress plugins, and left BuddyPress to work on its own.

    As this limits the ability for my visitors to comment, I could really use some assistance here.

    Any suggestions?

    -Jared

    Link to site: http://jpcsolutions.com/portfolio/azeverything6/everyone
    Wordpress Version: 3.5.1
    Buddpress Version: 1.7.2

    gentlemanhog
    Participant

    Hi,

    I did this, after some digging into the $bp object after the registration form is posted. Not tested properly in the wild yet, so you might want to double check before using this. Done via WordPress 3.5.1 and BuddyPress 1.7.2.

    
    add_filter('bp_core_signup_send_validation_email_message', 'custom_bp_change_activation_email_message');
    function custom_bp_change_activation_email_message($message) {
    	//	Get some globals
    	global $bp, $wpdb;
    
    	//	Get the slug of the activation page
    	$slug = $bp->pages->{"activate"}->slug;
    
    	//	Get username from the signup form just posted
    	$username = $bp->signup->username;
    
    	//	SQL query to get activation key for that username
    	$sql = 'select meta_value from wp_usermeta where meta_key="activation_key" and user_id in (select ID from wp_users where user_login="' . $username . '" and user_status=2)';
    
    	//	Getting the activation key from the database
    	$activation_key = $wpdb->get_var($sql);
    
    	//	Make activation URL
    	$url = sprintf("%s/%s/?key=%s", WP_HOME, $slug, $activation_key);
    
    	//	Custom message with activation key
    	$message = "Yayy! Thanks for signing up! Please confirm your account!\n\n$url";
    
    	return $message;
    }
    

    I’ve got this in a theme’s functions.php file, but not sure if that’s the right place for it. Would it be better in bp_custom.php?

    Ta,
    Alan.

    #166199
    Henry
    Member

    It isn’t currently possible to have personal AND friend’s activity in the same activity feed. I have raised a ticket (#4988) but until then if you somehow find a way then please post here

    #166186
    aces
    Participant
    #166180
    adamfratino
    Participant

    I’m having an issue displaying buddypress avatars on bbpress. When a topic is created by a buddypress user, their avatar will display no problem (although fuzzy). When replying though, there is no avatar, just their username.

    Gravatars display fine.
    Here is an example: http://adamfratino.com/kor/forums/topic/stream-up-come-play/

    Using WordPress 3.5.1, latest versions of Buddypress and BBPress.

    Searched the forums (here and BBPress), couldn’t find a solution. Most discussion of the topic is years old.

    Faramarz
    Participant

    I created/activated a child-theme for my bp-default theme. This article helped me but somehow I can’t figure out how to inherit the parent’s CSS and also modify some of the existing CSS with my style.css in my child theme folder when needed. I don’t want to make any changes to my parent bp-default theme and that’s the whole idea for creating a child theme.

    For example, the theme’s default width is 1250px and when I add the code below to my style.css nothing changes and the default value from the parent theme overrides my custom value:

    body {
    	max-width: 960px;
    }

    As article suggested, I added this to my header.php in my child theme folder:
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    By the way, as of now, my child theme only contains two files, style.css and header.php.

    But yet still my CSS change doesn’t work. It only works if I add !important to my max-width value. Does this mean that I have to add !important to every code I modify in my style.css? That doesn’t make sense to me and that’s not how WordPress child themes work. There should be another way. I think I am missing something.

    Thanks

    #166162

    In reply to: blogs in buddypress

    Asynaptic
    Participant

    most people get this functionality by installing a membership plugin like S2

    there are many more, just do a search for membership plugin wordpress in the official plugin repository or google

    #166148
    @mercime
    Participant

    @mahdiar thanks for confirming the fix 🙂 I will create a trac ticket to report the issue. Cheers.

    EDIT – issue posted https://buddypress.trac.wordpress.org/ticket/5057

    #166147
    @mercime
    Participant

    My problem is that i can’t create groups.
    I have the groups section, i’ve even installed groups pages plugin and still can’t do it.

    @minigamers Do you mean that you have no “Create a Group” button beside the Groups Directory page title as seen in this image? That button is absent when the theme developer sets the_title() outside of the WordPress loop. There’s a way to create a link to create a group if that is indeed your issue?

    What groups pages plugin?

    #166134
    @mercime
    Participant
    #166127
    @mercime
    Participant

    @visualizeedits assuming you’ve found the bridge script between MyBB forum and WordPress, you would still be required to bridge MyBB with BuddyPress and Cubepoints unless you do not intend to record the activities of the members in your forums in their profile pages.

    If you only need members to pay for some enhancements in their forum profiles, adding BuddyPress may be an overkill for your site. You might be better off just using s2member plugin.

    #166125

    In reply to: Pending Notifications

    b a
    Participant

    Please try to supply answers to the following questions.

    1. Which version of WordPress are you running?
    Lastest (stable)
    2. Did you install WordPress as a directory or subdomain install?
    Directory
    3. If a directory install, is it in root or in a subdirectory?
    Root
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes
    6. Which version of BP are you running?
    Lastest (stable)
    7. Did you upgraded from a previous version of BP? If so, from which version?
    No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes, many plugins and all of them BP related, since I don’t have any error/problem with my current installation, I won’t insert here this big list. Need to mantion BP Like/Dislike though
    9. Are you using the standard BuddyPress themes or customized themes?
    Standart
    10. Have you modified the core files in any way?
    Yes, In many way 😀
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    Lastest, I downloaded it from WP Plugins
    13. Please provide a list of any errors in your server’s log files.
    Strange but no errors (with Debug turned off)
    14. Which company provides your hosting?
    Local installation
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Linux Ubuntu, apache 2.2 php5

    #166121
    Liltiger
    Participant

    Hi there,

    I searched prior support topics on this & I’ve followed the ticket below. It says it’s closed now, but my activity feed is still temper mental. It seemed to work the week prior and then it stopped, started up again yesterday, and stopped again today…

    What do I need to do to keep it going? I need BP Media images to go through and show up on the Image Feed Widget plugin.

    Much Thanks,

    Jamie

    http://buddypress.trac.wordpress.org/ticket/5020

Viewing 25 results - 13,726 through 13,750 (of 32,678 total)
Skip to toolbar