Forum Replies Created

Viewing 40 posts - 41 through 80 (of 106 total)
  • Author
  • in reply to: Text after search #26441
     Model
    Participant
    This reply has been set as private.
    in reply to: ISSUE MEMBERS – HELP ASAP #26440
     Model
    Participant
    This reply has been set as private.
    in reply to: Mobile Cache #26439
     Model
    Participant

    I’ve had a couple of people saying that they can only see two members on their phone but when they on their computer they can see all the member registered ( 4 members total)… Why is this happening? why does it take so long for it to update on the phones. I have tested this myself on an iPhone. I clear the history and cache and still I only see 2 members but there are actually for.. How can I fix this….

    in reply to: ISSUE MEMBERS – HELP ASAP #26436
     Model
    Participant
    This reply has been set as private.
    in reply to: ISSUE MEMBERS – HELP ASAP #26368
     Model
    Participant
    This reply has been set as private.
    in reply to: ISSUE MEMBERS – HELP ASAP #26367
     Model
    Participant
    This reply has been set as private.
    in reply to: Mobile Cache #26364
     Model
    Participant
    This reply has been set as private.
    in reply to: Upload button Multimedia #26124
     Model
    Participant
    This reply has been set as private.
    in reply to: Re: Members Directory #26119
     Model
    Participant

    this worked thanks!!

    in reply to: Registration Issue #26080
     Model
    Participant
    This reply has been set as private.
    in reply to: Re: Members Directory #25988
     Model
    Participant

    I also need to be able to enlarge the photos can you please let us know how to accomplish this.

    in reply to: Quick Navigation Arrows hover color #25963
     Model
    Participant

    fixed.

    in reply to: Upload button Multimedia #25961
     Model
    Participant
    This reply has been set as private.
    in reply to: Upload button Multimedia #25959
     Model
    Participant
    This reply has been set as private.
    in reply to: Registration Issue #25957
     Model
    Participant

    I have tried modifying this by replicating the content and replacing the group number from 1 to 2 and 3.. Now I can see all the fields that are included in each group. Now the problem is that whenever the user activates his/hr account all the fields they have filled during the registration do not show up.. This is the code..

    COPY CODE
    <!-- #basic-details-section -->
    
    				<?php do_action( 'bp_after_account_details_fields' ); ?>
    
    				<?php /***** Extra Profile Details ******/ ?>
    
    				<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    
    					<?php do_action( 'bp_before_signup_profile_fields' ); ?>
    
    					<div class="register-section six columns" id="profile-details-section">
    
    						<h4><i class="icon icon-comments"></i> <?php _e( 'Detalles del Perfil', 'buddypress' ); ?></h4>
    						<br>
    						<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    						<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( 'profile_group_id=1' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    						<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    						<div class="<?php if('selectbox' == bp_get_the_profile_field_type() || 'multiselectbox' == bp_get_the_profile_field_type() ) echo 'six'; else echo 'twelve';?> columns">
    							<div class="editfield">
    
    								<?php
    								$field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    								$field_type->edit_field_html();
    
    								do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
    
    								if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    									<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Cambia el perfil del nivel de visualización de campo', 'buddypress' ); ?></a>
    									</p>
    
    									<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    										<fieldset>
    											<legend><?php _e( '¿Quién puede ver este campo?', 'buddypress' ) ?></legend>
    
    											<?php bp_profile_visibility_radio_buttons() ?>
    
    										</fieldset>
    										<a class="field-visibility-settings-close" href="#"><?php _e( 'Cerrar', 'buddypress' ) ?></a>
    
    									</div>
    								<?php else : ?>
    									<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    									</p>
    								<?php endif ?>
    
    								<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    								<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    							</div>
                                
    						</div>
    						<?php endwhile; ?>
                            
    
    						<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    						<?php endwhile; endif; endif; ?>
    
    					</div>
                        <!-- Principal Final -->
                   		<!-- Más Detalles -->
                    				<div class="register-section six columns" id="profile-details-section">
    
    						<h4><i class="icon icon-comments"></i> <?php _e( 'Más Detalles', 'buddypress' ); ?></h4>
    						<br>
    						<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    						<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( 'profile_group_id=2' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    						<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    						<div class="<?php if('selectbox' == bp_get_the_profile_field_type() || 'multiselectbox' == bp_get_the_profile_field_type() ) echo 'six'; else echo 'twelve';?> columns">
    							<div class="editfield">
    
    								<?php
    								$field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    								$field_type->edit_field_html();
    
    								do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
    
    								if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    									<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Cambia el perfil del nivel de visualización de campo', 'buddypress' ); ?></a>
    									</p>
    
    									<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    										<fieldset>
    											<legend><?php _e( '¿Quién puede ver este campo?', 'buddypress' ) ?></legend>
    
    											<?php bp_profile_visibility_radio_buttons() ?>
    
    										</fieldset>
    										<a class="field-visibility-settings-close" href="#"><?php _e( 'Cerrar', 'buddypress' ) ?></a>
    
    									</div>
    								<?php else : ?>
    									<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    									</p>
    								<?php endif ?>
    
    								<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    								<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    							</div>
                                
    						</div>
    						<?php endwhile; ?>
                            
    
    						<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    						<?php endwhile; endif; endif; ?>
    
    					</div>
    				<!-- Perfil Más Detalles Final -->
                    <!-- Perfil Actividades -->
                    				<div class="register-section six columns" id="profile-details-section">
    
    						<h4><i class="icon icon-comments"></i> <?php _e( 'Actividades', 'buddypress' ); ?></h4>
    						<br>
    						<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    						<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( 'profile_group_id=3' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    						<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    						<div class="<?php if('selectbox' == bp_get_the_profile_field_type() || 'multiselectbox' == bp_get_the_profile_field_type() ) echo 'six'; else echo 'twelve';?> columns">
    							<div class="editfield">
    
    								<?php
    								$field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    								$field_type->edit_field_html();
    
    								do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
    
    								if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    									<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Cambia el perfil del nivel de visualización de campo', 'buddypress' ); ?></a>
    									</p>
    
    									<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    										<fieldset>
    											<legend><?php _e( '¿Quién puede ver este campo?', 'buddypress' ) ?></legend>
    
    											<?php bp_profile_visibility_radio_buttons() ?>
    
    										</fieldset>
    										<a class="field-visibility-settings-close" href="#"><?php _e( 'Cerrar', 'buddypress' ) ?></a>
    
    									</div>
    								<?php else : ?>
    									<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'Este campo puede ser visto por: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    									</p>
    								<?php endif ?>
    
    								<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    								<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    							</div>
                                
    						</div>
    						<?php endwhile; ?>
                            
    
    						<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    						<?php endwhile; endif; endif; ?>
    
    					</div><!-- #profile-details-section -->
    in reply to: Registration Issue #25519
     Model
    Participant
    This reply has been set as private.
    in reply to: Registration Issue #25309
     Model
    Participant
    This reply has been set as private.
    in reply to: Breadcrumb Sweetdate #25302
     Model
    Participant

    resolved! Thanks!

    in reply to: Please fill out this fields TEXT #25301
     Model
    Participant

    still cannot figure it out..

    in reply to: Top Bar Issue #25294
     Model
    Participant

    Fixed. Thanks!

    in reply to: Top Bar #25293
     Model
    Participant

    Fixed. Thanks!

    in reply to: Registration Issue #25254
     Model
    Participant
    This reply has been set as private.
    in reply to: Email Registration #24924
     Model
    Participant

    this has been fixed!

    in reply to: How to change FORGOT YOUR USERNAME OR PASSWORD? #24923
     Model
    Participant

    it worked thanks!

    in reply to: How to add information on preview Profile #24922
     Model
    Participant

    thanks it worked!

    in reply to: Username Removal #24921
     Model
    Participant
    This reply has been set as private.
    in reply to: Username Removal #24920
     Model
    Participant

    thanks!

    in reply to: Registration Issue #24918
     Model
    Participant
    This reply has been set as private.
    in reply to: Registration Issue #24916
     Model
    Participant
    This reply has been set as private.
    in reply to: Translate Title Meta Tag #24680
     Model
    Participant

    This plugin is not working. Is there another way to accomplish this change?

    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>

    Where is the “True” and “right” info coming from.

    in reply to: LOGO issue #24678
     Model
    Participant

    I had to manually change the code.. this is fixed now.

    in reply to: Change text language #24677
     Model
    Participant

    Awesome thank you so much!

    in reply to: Terms and Conditions Pop Up Message #24675
     Model
    Participant

    Thanks!

    in reply to: Registration Issue #24673
     Model
    Participant
    This reply has been set as private.
    in reply to: How to add information on preview Profile #24672
     Model
    Participant
    This reply has been set as private.
    in reply to: Please fill out this fields TEXT #24671
     Model
    Participant

    Any way you can guide me on how to make that change. I have already made all the required changes on the register-modal.php but I cannot find a way of changing the “Please fill out this field”

    in reply to: How to add information on preview Profile #24529
     Model
    Participant
    This reply has been set as private.
    in reply to: Registration Issue #24528
     Model
    Participant

    Please I need help with this ASAP!!!

    in reply to: Mailchimp Subscription #24522
     Model
    Participant

    And also this one

    Attachments:
    You must be logged in to view attached files.
    in reply to: Forcing Upload Of Profile Pic #24518
     Model
    Participant

    I also nee this… You should add to your next updated a pop message asking an already registered user to upload the avatar if not done already. This is a must!

Viewing 40 posts - 41 through 80 (of 106 total)

Log in with your credentials

Forgot your details?