Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

  • SuitePlugins
    Participant

    @suiteplugins

    You can add the following to your array

    ‘show_for_displayed_user’ => bp_core_can_edit_settings(),


    SuitePlugins
    Participant

    @suiteplugins

    Hi Bradley.
    Sorry that you are experiencing problems with BP. If you are interested, you can send me a message here and I can assist https://suiteplugins.com/custom-work/


    SuitePlugins
    Participant

    @suiteplugins

    Hi Mark,
    I think it would help to understand what errors appeared that you had to strip out.


    SuitePlugins
    Participant

    @suiteplugins

    Greetings vendocartoni,

    Cimy User Extra Fields seem to serialize these entries in the database. I do not know of a tool to assist with the import but if you are familiar with coding you can use maybe_unserialize to unserialize the data to an array then create an update/insert function to store the information to BP Profile.


    SuitePlugins
    Participant

    @suiteplugins

    Hi all,

    I created a plugin call BP Premiums. If you are ok with using WooCommerce, I can create an add-on that will allow BP users to purchase message quotas.

    I have created purchasable for BuddyPress Storage and RTMedia Pro Gallery.

    Let me know your thoughts


    SuitePlugins
    Participant

    @suiteplugins

    Can you send the correct link with tld. I am not sure if your link is .com , .net etc.


    SuitePlugins
    Participant

    @suiteplugins

    Hi Quinn,

    You need to check if the field is empty or not

    Your code:

      echo "<li>";
      echo '<strong style="color:#777;text-decoration:underline;">Artist Wanted: </strong>';
      $group_wanted = groups_get_groupmeta( $bp->groups->current_group->id, 'e2e_wanted' );
      echo $group_wanted;
      echo "</li>";
    

    Code with conditional:

     
      $group_wanted = groups_get_groupmeta( $bp->groups->current_group->id, 'e2e_wanted' );
      if(!empty($group_wanted)):
      echo "<li>";
      echo '<strong style="color:#777;text-decoration:underline;">Artist Wanted: </strong>';
      echo $group_wanted;
      echo "</li>";
      endif;
    

    SuitePlugins
    Participant

    @suiteplugins

    I have created a plugin specifically for this.

    BP Private Avatars

    Let me know what you think.

Viewing 8 replies - 1 through 8 (of 8 total)
Skip to toolbar