Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,951 through 5,975 (of 32,561 total)
  • Author
    Search Results
  • #252926
    Jeff
    Participant

    I have a chance to use a third-party plugin for allowing users to “Like” activity entries. I need to first disable or hide the existing “Like” functionality. Is there a setting for this?

    Plugins:
    Akismet (3.1.10) by Automattic
    Awesome Support (3.2.9) by ThemeAvenue
    bbPress (2.5.8) by The bbPress Community
    BuddyBoss Inbox (1.0.4) by BuddyBoss
    BuddyBoss Media (3.1.9) by BuddyBoss
    BuddyBoss Reply by Email (1.0.2) by BuddyBoss
    BuddyBoss Wall (1.2.7) by BuddyBoss
    BuddyPress (2.5.2) by The BuddyPress Community
    BuddyPress Edit Activity (1.0.7) by BuddyBoss
    BuddyPress Xprofile Custom Fields Type (2.4.6) by donmik
    Gravity Forms (1.9.18) by rocketgenius
    Gravity Forms Help Scout Add-On (1.3) by rocketgenius
    Gravity Forms Polls Add-On (3.0) by Rocketgenius
    Gravity Forms Survey Add-On (3.0) by Rocketgenius
    Gravity Forms Trello Add-On (1.0) by rocketgenius
    Gravity Forms User Registration Add-On (3.3) by rocketgenius
    Invite Anyone (1.3.10) by Boone Gorges
    Like Button Voting & Rating (2.1.9) by LikeBtn
    List Plugins (1.4.4) by SedLex
    Maintenance (2.7.1) by fruitfulcode
    Orbit (1.6) by TrueThemes
    POWr Social Feed (1.4) by POWr.io
    POWr Social Media Icons (1.4) by POWr.io
    Remove Dashboard Access (1.1.3) by Drew Jaynes (DrewAPicture)
    Subscribe To Comments (2.3) by Mark Jaquith
    TinyMCE Advanced (4.3.8) by Andrew Ozz
    User Role Editor (4.25.1) by Vladimir Garagulya
    WordPress Social Stream (1.5.15) by Lee Chestnutt
    WPBakery Visual Composer (4.11.2) by Michael M – WPBakery.com

    Thanks!

    hame58g
    Participant

    Hi, Does anybody know how to change the text of the favorite button to an image and still return the AJAX function. I have changed it to shape but it does not return AJAX function that is triggered when you click the favorite button. I’ve changed bp-templates/bp-legacy/buddypress-functions.php to this:

    
    /**
     * Mark an activity as a favourite via a POST request.
    ...
     */
    function bp_legacy_theme_mark_activity_favorite() {
    	// Bail if not a POST action.
    	if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
    		return;
    
    	if ( bp_activity_add_user_favorite( $_POST['id'] ) )
    		echo '<img src="../images/star_on.png">';
    	else
    		echo '<img src="../images/star_off.png">';
    
    	exit;
    }
    
    /**
     * Un-favourite an activity via a POST request.
    ...
    function bp_legacy_theme_unmark_activity_favorite() {
    	// Bail if not a POST action.
    	if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
    		return;
    
    	if ( bp_activity_remove_user_favorite( $_POST['id'] ) )
    		echo '<img src="../images/star_off.png">';
    	else
    		echo '<img src="../images/star_on.png">';
    
    	exit;
    }
    

    I also did the the necessary adjustment to /buddypress/activity/entry.php and changed _e( 'Favorite', 'buddypress' ); to echo '<img src="../images/star_off.png">'; and _e( 'Remove Favorite', 'buddypress' ); to echo '<img src="../images/star_on.png">';Favourit button now has changed its shape to a nice star that change when you click on it but not as AJAX. It keeps refreshing the page each time I click the button.

    any help would be appreciated.

    BuddyPress: 2.5.2 —- WP: 4.5 2.5.2 —- WP: 4.5

    #252905
    irakly
    Participant

    I have just installed BP and discovered that all users, admins included, are marked as spammers. As a result, extended profile settings are not accessible. Instead it says “Admin has been marked as a spammer. All BuddyPress data associated with the user has been removed” where “Admin” is a user name.
    Currently the site runs Academica theme. I tried several other themes, same result.
    I tried to create a new used after installing BP, same result.
    When accessing another user page, I can see that status is “Active”. I tried to change it to spammer and back to active, same result.

    What do I do now? 🙂

    bigsome
    Participant

    Hi,

    First of all excuse my english… I’m new on WP/BP forums but years of experience on building sites with WordPress.

    I´ve just finished a news site with WordPress (4.5), Buddypress (2.5.2), heavily modified Barcelona theme and some plugins like: Wordfence, Cookie Advice, Jetpack, Visual Composer just to name a few.

    As a magazine/news website, my client has some banners to show on page. Typical IAB standard banners (728×90, 300×250, etc…) First I added their smartadserver tags and found that banners load properly, but immediately disappear. Tried to deactivate some plugins but didn’t work, so, as long as I don’t have any experience with smartadserver I decide to migrate adserving to Google DFP (Doubleclick For Publishers). What’s my surprise when I found that with DFP scripts it did the same (banner loads and disappears). Testing with Google Publisher Console reports no errors, impressions are counting ok, even one or two clicks…

    I had no clue about what could be hiding ads after loading so started to test line-by-line, removing js to check which one could be modifying DFP tags or rendered iframe… And I found that disabling “/wp-content/plugins/buddypress/bp-core/js/jquery-cookie.min.js” solve the problem.

    Now, the question/s is/are =) :

    ¿Is that a bug? ¿What happens if I remove jquery-cookie from BP core? (I know that’s not a good fix ’cause it will be loaded again on plugin update) ¿Is there a smart way to do that? (like wp_dequeue_script( ‘bp-jquery-cookie’ ); or something similar).

    ¿Any idea on how to handle this without removing jquery-cookie or losing functions related?

    Thanks!

    #252903
    creamundo
    Participant

    Hi @imath ,

    I saw you take a lot of interest with this problem and I’m having same issue, or at last similar issue.
    I can’t see my avatar profile pictures and the link to change that.
    I’m using Kleo theme, but if I put twentyfifteen the issue is still there.
    I disable all the plugins except buddypress and the issue is still there.
    Have the latest version of buddypress and wordpress.

    Help please… :~(

    #252889
    peterkortvel
    Participant

    Hi, I know this is a pretty common question and I googled but still can’t find answer. I had permalink set up to postname (/%postname%/) and it worked. However then I only visited the page with permalink settings (didn’t even click on anything) and I got 500 error. (Before this I disallowed commending for non registered users).

    When I delete web.config home page and admin works. So then I was able to disable permalink. Now all website worked (apart from one ALl-in-ONe migration tool, where I couldn’t download the backup 404)

    Then I set up permalinks back to postname and added this to htaccess:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    

    Now the website works with clean urls well (only ALl-in-ONe migration tool still not working – and who know what else is not working).

    Did I do something wrong here? Should I expect some more problems with this setting? Is there a more proper way to set it up?

    Thank you!

    Answers:
    1. Which version of WordPress are you running? 4.5
    2. Did you install WordPress as a directory or subdomain install? Normal main domain
    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 (even with buddypress till this happened)
    6. Which version of BP are you running? 2.5.2
    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?
    All-in-One WP Migration, BuddyPress, Frontier Post, Shortcodes Ultimate, Simple Share Buttons Adder, The Events Calendar, Velvet Blues Update URLs
    9. Are you using the standard WordPress theme or customized theme? Standard
    10. Have you modified the core files in any way? No
    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?
    13. Please provide a list of any errors in your server’s log files.
    14. Which company provides your hosting? forpsi
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Windows

    #252881
    danbp
    Participant

    Hi,

    You’re probably on a large screen. Default display of the directory is already a list. See template code (members-loop.php) using ul and li !

    Check your theme or try to simulate a mobile screen (if u use firefox it’s Ctrl+shif+m) to see if your directory get wrapped or not. If not, adjust your (child)theme CSS.

    #252878
    jnhghy
    Participant

    Hi, I’m using wordpress 4.5 and I can’t see any “Add group” button.
    In my dashboard BuddyPress settings under components I have the “User Groups” option checked. Also in the options tab in the “Groups Settings” section I have checked “Enable group creation for all users” still no add group button.
    I’m using a custom premium theme but I’ve switched to twentysixteen and I get the same issue, no create group option. If I access the create group link directly it works but I’m pretty sure it should work out of the box, anyone can help me see what I’m doing wrong?

    Thank you.

    Hugo Ashmore
    Participant

    Hi @kenrichman We’re sorry to hear this, we are improving our accessibility on an ongoing basis.
    I can and will open a ticket for this issue and we’ll re-factor the widget markup however having had a quick look at this widget code we do adhere to expected standards i.e in providing labels & explicit label to input control linking, we don’t provide Aria attributes but these are not strictly meant to be used when html markup is correctly formed and described, we could add further title attribute to labels for screen readers to read but that is simply a supplement to the actual label text.

    It would help us if you could perhaps provide a little more detail on what Jaws is having an issue with, does it still have an issue if you switch to a simpler theme such as one of the twentysomething themes e.g. twentyfifteen.

    sharmavishal
    Participant

    Have you looked at template hierarchy?

    Template Hierarchy

    #252863
    gregsee
    Participant

    Hi Modemlooper, thank you, I did manage to work it out. Problem partly due to my WP theme has a social counter plugin that provides a stack of fields for links that I assumed were part of the WP or BP basic profile fields. I have set up some of my new xProfiles fields now and have it working – just need to organise these for groups better.
    Thanks

    #252855
    danbp
    Participant

    Hi,

    you have to check your custom plugin. Or even to deactivate it, as it is no more necessary when you use BP. Problem seems to be that you created something related to members handling before BP was installed.

    BuddyPress handles members and their avatars via the buit-in WP avatar function.

    If you need more help, please give details about your config, theme and custom code. Thxs 😉

    #252854
    danbp
    Participant

    Hi,

    it’s related to a custom work of the theme used on buddypress.org. You can read more here and get the source code here.

    Read also some advice here

    #252834
    SRD75
    Participant

    I purchased a theme from ThemeForest, and found later the theme’s last update was in 28 May 14. I will check the last update date in future.

    The author is not very responsive in supporting his theme, and I had to change a few things like bp_is_member() to bp_is_user() myself.

    When a user tries to register on my website, they are taken to http://www.example.com/register, which generates a 404, and an error:

    Notice: Undefined property: stdClass::$register in /.../public_html/wp-content/themes/child-theme/includes/overlays/overlay-signup.php on line 5

    Line 5 of overlay-signup.php is:

    // Register Slug
    $register_slug = $bp->pages->register->slug;

    How do I fix this last line of code please?

    Thanks.

    #252831
    shanebp
    Moderator

    Unless you are explicitly using the bp-default theme, not recommended, you should always use these templates: buddypress\bp-templates\bp-legacy\

    iow. this members-loop:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    #252824
    carrieoke13
    Participant

    Thanks, Shane. It’s still happening even if I switch themes. I tried this code and it is still showing the wrong name in the last member listed.

    #252821
    Rapforthemoment
    Participant

    Appreciate the response. Sadly, that would be better than having it nag me all the time. Is there really no way to edit that code so I can place it in my child themes functions.php and it remove the message?

    Something like notice = none or something like that?

    #252807
    SlowSpeed
    Participant

    Ok, I tried what you said
    I changed the theme and enabled just the buddypress plugin and still I can’t send any messages..
    It only works if I send a global message to all users with admin (but still no one recieve it) but if I try to send to a specific user it doesn’t work

    #252803
    Rapforthemoment
    Participant

    I have successfully removed the message from appearing in my backend by cutting out this code in wp-content/plugins/buddypress/bp-core/admin/:

    if ( !empty( $orphaned_components ) ) {
    		$admin_url = bp_get_admin_url( add_query_arg( array( 'page' => 'bp-page-settings' ), 'admin.php' ) );
    		$notice    = sprintf( __( 'The following active BuddyPress Components do not have associated WordPress Pages: %2$s. <a href="%1$s">Repair</a>', 'buddypress' ), esc_url( $admin_url ), '<strong>' . implode( '</strong>, <strong>', $orphaned_components ) . '</strong>' );
    
    		bp_core_add_admin_notice( $notice );
    	}

    So far there are no malfunctions and no drawbacks. The message is gone and everything appears normal. Seemed to do the trick. Now I can register users through my themes registration process and not have to worry about any Buddypress registration.

    #252769
    shanebp
    Moderator

    To determine if the issue is in your theme, try switching momentarily to a WP theme like 2013.
    You’ll need to copy members-loop.php to a buddypress folder in that theme.

    You can only echo the data if it exists.
    Try:

    $your_name = bp_get_member_profile_data( 'field=Your Name' );
    if ( $your_name != false ) 
       echo $your_name;
    #252758
    Rapforthemoment
    Participant

    Hey Buddypress users. I have current version of WordPress and Buddypress (4/22/2016).

    I am trying to completely remove the need for Buddypress registration. Reason being, I have a theme that has its own registration process. With Buddypress registration, that makes it two completely different registration processes.

    I want to remove the need to have a Buddypress registration process completely. I have searched throughout your entire forum and I have tried everything. Nothing works. I continue to get the message “Missing buddpress register page. Repair.”

    carrieoke13
    Participant

    Hi,

    I’ve added an extended profile using xprofile fields, and I’m displaying some of the fields on the members list page. But, if someone has left a field blank, their profile is displaying the data for the last member who did complete that field. (So, if I didn’t put my city but the person displayed before me did, that person’s city is showing in my profile.) You can see what I mean here: http://yarngroup.wpengine.com/members/

    I copied members-loop.php to a buddypress folder in my main theme folder, and here’s the code I added to display the name, city and state:

    <?php
    
    				/**
    				 * Fires inside the display of a directory member item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_item' ); ?>
    
    				<?php
    				 /***
    				  * If you want to show specific profile fields here you can,
    				  * but it'll add an extra query for each member in the loop
    				  * (only one regardless of the number of fields you show):
    				  *
    				  *bp_member_profile_data( 'field=the field name' );
    				  */
    				  
    				  
    				  bp_member_profile_data( 'field=Your Name' );
    			
    				  echo '<br />';
    				 bp_member_profile_data( 'field=City' ); echo ', '; bp_member_profile_data( 'field=State' ); 
    				  echo '<br />';
    				
    					  
    				?>
     
     <a href="<?php bp_member_permalink(); ?>">View Member Profile</a>
    			<div class="action">
    
    				<?php
    
    				/**
    				 * Fires inside the members action HTML markup to display actions.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_actions' ); ?>
    
    			</div>
    
    		</li>
    
    			
    	<?php endwhile; ?>
    
    	</ul>
    <div class="clear"></div>

    Am I missing some code? Thanks!

    #252748
    JaneAkshar
    Participant

    When I try and search the forums I get no results and returned to the home page

    website chinnockswharf.website

    Theme Custom Community

    It is a member site and you can use user bbPress password bbPress

    #252745
    Henry Wright
    Moderator

    Check your page source to see if body classes are utilised by your theme. Then you can do:

    body.classname #selector .etc {
        // Stuff.
    }
    shanebp
    Moderator

    You mean the Groups component of BP?

    BP does not support specific themes.
    Themes can support BP if they choose to.
    You should contact the authors of your theme – there may be simple solution.

Viewing 25 results - 5,951 through 5,975 (of 32,561 total)
Skip to toolbar