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.

Joss

Forum Replies Created

Viewing 25 posts - 1 through 25 (of 51 total)
  • Author
    Posts
  • Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Ooooooohhhhh,

    It’s a shame, I’m sure you know how to do it 🙁

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    I don’t know why I modified this…

    Thank you !!!

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    Can you read the PMP Pro reply ?

    Can you make me the code or not ?

    Thanks,
    Joss

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Great, it works fine, thank you !

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Yes, it works !

    I made my member directory in full width with css class region--12-cols-left

    And now I have the right form that appears on the right directory 🙂

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Great, it works !

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Ok, I understand.

    Can you just know if I can display search icon on desktop ?

    PS : There is a bug with your @media rules with search sidebar and search icon, I think between 768px and 992px…

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,
    I seemed to have answered this conversation…

    Look at the reply of PMP Pro support :


    “Hello. Since I’m unfamiliar with the theme specifics, I can give an overview on how to access a users membership level, and level description. Your theme developer should be able to then assist with having it actually display in their theme.

    First, we need to get the members membership level. This can be done using the function pmpro_getMembershipLevelForUser():

    https://github.com/strangerstudios/paid-memberships-pro/blob/dev/includes/functions.php#L1693

    $level = pmpro_getMembershipLevelForUser();

    The $level is a PHP object and contains the necessary information. You can access the level name as $level->name and the description is $level->description.”

    Can you make me this code snippet now ?

    Thanks,
    Joss

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    It works !!

    FOR OTHER USER :
    I make a .pot and .mo with Poedit on my computer, it’s free software.
    After I place files in wp-content/languages/plugins, then with Loco Translate in WordPress I went to the BP Profile Search folder and I copied strings in my personnal folder (because if you don’t do this, when there is an updtae of the plugin, your translation is deleted), and after this I translate easly the plugin…

    Good luck !

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    If I make my member type directory page in full width, how can I display your search icon on desktop ?

    I want to display it because I have 2 members types in 2 differents BP member directory with 2 differents search forms, and when your icon is displaying, when your icon is displayed, it takes into account the display button in the directory via the configuration of the search form and only that form, you understand ?

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Why when I put yes, it does not directly display the directory search box, it displays only on mobile via your icon. It would be cool to be able to display it without having to go through the sidebar, it’s already happening like that on mobile, why not on desktop …?

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    Thank you, I don’t put “Yes” in search form edition at “Add to Directory”

    😉

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    I understand.

    Look at the screenshot.

    Your BP search form doesn’t display on Member Type Directory generated by Member Type Pro.

    If you don’t want to do something to help me, can you please tell me where can I found this feature in your theme / page / template.php ?

    Thanks,
    Joss

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    To display your text content not in capitalize, you can add this CSS code :

    .members {
    	text-transform: none !important;
    }

    🙂

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    Here a css code to make this on BP member directory only :

    @media (max-width: 991.8px) {
    	.buddypress.directory.members .region__row {
    		-webkit-flex-direction: column-reverse;
    	}
    }

    🙂

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    I understand, but with their support it’s very long to get an answer…

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    It’s YOUR code snippet !!

    You don’t want to modify it ?

    Yet I’m sure you have the skills to do that…

    add_action( 'gwangi_buddypress_member_xprofile_custom_fields', 'gwangi_buddypress_member_type', 10 );
    
    function gwangi_buddypress_member_type() {
    	if ( bp_is_user() ) {
    		$user_id = bp_get_displayed_user()->id;
    	}
    	else {
    		$user_id = bp_get_member_user_id();
    	}
    
    	$member_type_name = bp_get_member_type( $user_id );
    	$member_type = bp_get_member_type_object( $member_type_name );
    	?>
    	<div class="bp-member-xprofile-custom-field bp-member-type"><?php echo $member_type->labels['singular_name']; ?></div>
    	<?php
    }
    
    if ( ! function_exists( 'gwangi_bp_xprofile_location_member_location' ) ) :
    	/**
    	 * Print the HTML for BP xProfile Location Field in the BP Member Directory.
    	 *
    	 * @since 1.1.9
    	 */
    	function gwangi_bp_xprofile_location_member_location() {
    		if ( function_exists( 'xprofile_get_field_data' ) ) :
    			$location     = xprofile_get_field_data( 'Location', bp_get_member_user_id() );
    			$allowed_html = array(
    				'a' => array(
    					'href' => array(),
    					'rel'  => array(),
    				),
    			);
    			if ( ! empty( $location ) ) : ?>
    				<div class="bp-member-xprofile-custom-field bp-member-location"><?php echo wp_kses( $location, $allowed_html ); ?></div>
    			<?php
    			endif;
    		endif;
    	}
    endif;
    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Great, it works 🙂

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Great !

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss
    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    No, I don’t fix this issue…

    Issue is visible when you’re connected and only on members directory page…

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    But, there’s no conflict between Login With Ajax and Grimlock Login ?

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    No, not from bold to regular.

    I don’t want Uppercase at the begin of every words…

    Joss
    Participant
    • 34 Topics
    • 85 Posts
    @joss

    Hi,

    I posted request a few days ago…

    Is not there any css code to replace content by another ?

    Thanks,
    Joss

Viewing 25 posts - 1 through 25 (of 51 total)

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