Support only during business hours : Monday to friday, from 8:30 am – 5:30 pm CEST

Due to the decrease in our staff due to vacations, our response time may be longer.

Be sure we're doing our best to manage your topic as soon as possible.

BuddyPress Follow plugin.

This topic is resolved
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    Hello @themosaurus.

    There is not specified topic for BuddyPress Follow plugin. Please, move this topic after creating specified topic.

    Is it possible to load pages for Follower and Following only for You? site.com/members/user/followers/ and site.com/members/user/following
    Because following in dating site is a very sensitive theme.
    And it’s proffered to be personal info.

    Thank you.

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @wegosi,

    If you have already chosen a membership plugin to let you restrict some areas from other users, we advise the following:
    – Paid Memberships Pro [free + paid pro version] (https://fr.wordpress.org/plugins/paid-memberships-pro/)
    – WooCommerce Memberships [paid] (https://woocommerce.com/products/woocommerce-memberships/)

    These two plugins should work seamlessly with your theme and you should be able to set membership levels after reading the following documentation:

    Documentation

    WooCommerce Memberships

    If you’re already using one of these or if you’re looking to specifically restrict the following and followers page, it’s best to request some code snippet from the plugin author himself. To go further, we invite you to ask for more help the BP Followers support forums:
    https://wordpress.org/support/plugin/buddypress-followers/

    We hope that you will find answer to your concerns.
    Feel free to ask more questions about the theme and how it integrates these plugins. We’ll be happy to help you. ?

    Best regards,

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus
    This reply has been marked as private.
    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    Hello @themosaurus

    Thank you.
    But the developers of BuddyPress Follow are not responding.

    ==
    Could you, please, add BuddyPress Follow icon to Swap page?

    ==
    Please, check counters on the page during following/unfollowing

    View post on imgur.com

    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    How to follow the topic to get email notifications about new replies?

    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    Developer of this plugin r-a-y refused to add this function

    What you are wanting is not something every other site using BP Follow will need, so I’ll probably decline this. Should be easy for a plugin developer to implement in a custom plugin though.

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @wegosi,

    Here are all our answers:

    Please, check counters on the page during following/unfollowing
    We are really sorry, this is a bug we introduced in the latest version of the theme (1.1.5).
    We have already fixed this issue and this will be present in the next update of the theme (1.1.6, scheduled for this week).

    Could you, please, add BuddyPress Follow icon to Swap page?
    This can be done with a CSS snippet (only if yon don’t have the friendship button):

    #members-index-swap #members-list .bp-card-list__item .card .action > div.follow-button {
       position: relative;
       z-index: 2;
       display: inline-block !important;
    }
    
    #members-index-swap #members-list .bp-card-list__item .card .action > div.follow-button > a {
        width: 75px;
        height: 75px;
        line-height: 75px;
    }
    
    #members-index-swap #members-list .bp-card-list__item .card .action > div.follow-button > a:before {
       font-size: 40px !important;
    }
    
    #members-index-swap #members-list .bp-card-list__item .card .action > div.follow-button > a:focus:before {
       font-size: 25px !important;
    }

    Restrict follow and unfollow url
    If you want you can create a feature request for this. You can detail as much as you can and then we will see what other users of our community think about this feature and especially how we can implement it on our side. Because it seems more of a plugin compatibility feature (in this case between Paid membership Pro and BP follow) than theme development.

    Regards,

    PS : Yon can Subscribe to this topic with the top button “subscribe” or with the checkbox “Notify me of follow-up replies via email”.

    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    Hello @themosaurus

    Thank you for your code.

    But I think that the icon is bigger than should be. WHat do you think?

    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    Also, how to change correctly colors of Following and Followers counters?

    Because the color effect also to Notifications counter.

    CSS code I use:

    /* Followers and following text color */
    @media (min-width: 768px) {
      #buddypress #members-following-personal-li,
      #buddypress #members-followers-personal-li {
        color: #939393 !important
    
      }
    	  #buddypress #members-following-personal-li > a,
    	#buddypress #members-followers-personal-li > a {
    		   color: #939393 !important;
    			text-shadow: none;
    	}
    	/* hover text color */ 
    	  #buddypress #members-following-personal-li > a:hover,
      #buddypress #members-followers-personal-li > a:hover {
    
        color: #909090 !important;
    }
    /* remove shadows */
    #buddypress #profile-content__nav ul li > a span {
    	text-shadow: none;
        color: #939393 !important;
    }
    }
    /* END FOLLOWERS FOLLOWING CSS */
    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @wegosi,

    The button has this size because it is part of the basic design, the main button is highlighted (cf. screenshot).
    However, with this modified snippet it should be in accordance with what you want:

    #members-index-swap #members-list .bp-card-list__item .card .action > div.follow-button {
       position: relative;
       z-index: 2;
       display: inline-block !important;
    }
    
    #members-index-swap #members-list .bp-card-list__item .card .action {
       top: -55px !important;
    }
    
    #members-index-swap #members-list .bp-card-list__item .card .action > div.send-private-message {
       position: static !important;
       transform: none !important;
       margin-left: 10px !important;
    }

    I already pasted it to your additional CSS Customizer panel.

    For the bubble notification text color, I have directly modified your CSS code, here is what I added:
    /* Change following/followers color only */

    #buddypress #profile-content__nav ul li#members-following-personal-li > a span,
    #buddypress #profile-content__nav ul li#members-followers-personal-li > a span {
       color: #939393 !important;
    }

    Hope this is help

    Best regards,

    Maks Rusakovič
    Participant
    • 29 Topics
    • 104 Posts
    @wegosi

    @themosaurus

    OMG! Magic support. Magic.
    Reveiew is added to themeforest.

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    You’re welcome @wegosi. ?

    And thank you very much for the kind words! ?
    We really appreciate as we’ve put a lot of efforts to create a very enjoyable product.

    Best regards,

Viewing 12 posts - 1 through 12 (of 12 total)

The topic ‘BuddyPress Follow plugin.’ is closed to new replies.

Troubleshooting Demo Imports

You're trying to setup your theme but you're experiencing errors when importing the demo content? Or you've just followed the setup guide but your website doesn't look exactly like our demo? These are common issues for which you can find easy and quick fixes.

Happy With our Support So Far?

Feel free to review our theme on Themeforest! It helps us making our products more known to new potential customers, which allow us more time to improve the quality and develop new features. #SharingIsCaring ❤️

Discover MatchPress

Skip • Like • Super-Like

Add powerful matching features like Member likes, skips, super likes, conditional private messaging and much more.

Setup Your Cera or Gwangi powered Community Website and Turn it into an iOS and Android App

15% discount for Cera users

To unleash the full power of your Cera or Gwangi theme, we have partnered with the Zipline team. Your community website can now be fully setup and turned into your very own custom app for iOS and Android.

Whether you've newly acquired the theme or already got your site up and running, Zipline got you covered. And we got you an incredible discount.

Holiday, Weather & Festive effects
to pimp your WordPress Site