Forum Replies Created

Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
  • in reply to: include username in validation email #38178
     HHMediaDesign
    Participant

    This one https://wordpress.org/plugins/wp-email-template/ just allows you to make the template pretty (backgrounds, custom logo, etc) but no option to change the wording (including in the PRO version)

    in reply to: include username in validation email #38174
     HHMediaDesign
    Participant

    Has anyone else found another solution for this?

    in reply to: include username in validation email #38158
     HHMediaDesign
    Participant

    Thanks Laura, yes I’d already tried the Welcome Email Editor plugin but it wasn’t working. The test emails worked but not when actually adding new members to the site. Just the same old Buddypress emails come. i see others have been having the same issues with that plugin (and the other I’d found) as they are no longer supported and a couple of years out of date.

    Any other suggestions on customising these sign up emails?

    Thanks!
    Hillary

    in reply to: Shortcodes #37242
     HHMediaDesign
    Participant

    It’s ok! I got it… this is what I have now…

    [kleo_section bg=”http://dating.thecoast.ca/wp-content/uploads/2014/12/bar.jpg” centered=1 border=0]
    [kleo_row] [kleo_one]
    [kleo_status_icon type=”total” subtitle=”Members in total”]
    [/kleo_one][/kleo_row]
    [/kleo_section]

    in reply to: Changing BASE title #37113
     HHMediaDesign
    Participant

    Again, I feel like I am CLOSE but just don’t have quite enough php experience… This is the bit I altered from the primary Sweetdate functions.php to change the wording of “Quick Navigation” to “View More Members”. And I want to add it to the child functions… but I keep getting errors. Do you mind just showing me what bit I would need to put in the child theme to help me understand how the child functions file is working – I have obviously left in too much additional php code. It might help me edit more in future! Thank you…

    COPY CODE
    
    <?php do_action( 'bp_after_profile_loop_content' ); ?>
    
    function bp_add_profile_navigation() {
        if(bp_is_user()): ?>
        
          <div class="three columns">
            <ul class="inline-list right">
              <li><?php _e("View more members", 'kleo_framework');?> </li>
              <?php $prev = bp_prev_profile(bp_displayed_user_id()); if ($prev !== "#") : ?><li><a>" title="<?php _e("Previous profile",'kleo_framework');?>"><i class="icon-chevron-left"></i></a></li><?php endif; ?>
              <?php $next = bp_next_profile(bp_displayed_user_id()); if ($next !== "#") : ?><li><a>" title="<?php _e("Next profile", 'kleo_framework');?>"><i class="icon-chevron-right"></i></a></li><?php endif; ?>
            </ul>
          </div>
    
        <?php endif;
    
    in reply to: Changing BASE title #37108
     HHMediaDesign
    Participant

    But I need to keep the end ?> correct? Ok, I got the BASE name change in there (thank you so much!) but can’t work out the others – when I add the changes I get the parse error again. SHould I open a new subject? Or can you advise…

    For instance, I want to change the quick navigation wording using this… what would I need to put into the functions.php file instead because this isn’t working:

    COPY CODE
    
    function bp_add_profile_navigation() {
        if(bp_is_user()): ?>
        
          <div class="three columns">
            <ul class="inline-list right">
              <li><?php _e("View more members", 'kleo_framework');?> </li>
              <?php $prev = bp_prev_profile(bp_displayed_user_id()); if ($prev !== "#") : ?><li><a>" title="<?php _e("Previous profile",'kleo_framework');?>"><i class="icon-chevron-left"></i></a></li><?php endif; ?>
              <?php $next = bp_next_profile(bp_displayed_user_id()); if ($next !== "#") : ?><li><a>" title="<?php _e("Next profile", 'kleo_framework');?>"><i class="icon-chevron-right"></i></a></li><?php endif; ?>
            </ul>
          </div>
    
        <?php endif;
    
    in reply to: Changing BASE title #37101
     HHMediaDesign
    Participant

    Feeling rather stupid here but would you mind posting a sample child functions.php? Every time I try to edit the site shows a parse error… I am obviously putting the code in the wrong part of the file. This is what I’ve got – this is just showing previous changes I am trying to make, not the BASE title change yet:

    COPY CODE
    
    <?php
    /**
     * @package WordPress
     * @subpackage Sweetdate
     * @author SeventhQueen <themesupport@seventhqueen.com>
     * @since Sweetdate 1.0
     */
    
    
    /**
     * Sweetdate Child Theme Functions
     * Add extra code or replace existing functions
    */ 
    
    <?php do_action( 'bp_before_profile_loop_content' ); ?>
    
    <?php if ( bp_has_profile() ) : ?>
    	<ul class="accordion">
    	<?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    		<?php if ( bp_profile_group_has_fields() ) : ?>
    
    			<?php do_action( 'bp_before_profile_field_content' ); ?>
    
    				<li>
    				  <h5 class="accordion-title <?php bp_the_profile_group_slug(); ?>"><?php bp_the_profile_group_name(); ?><span class="accordion-icon"></span></h5>
    				  <div class="accordion-content">
    						<dl class="dl-horizontal">
    
    							<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    
    								<?php if ( bp_field_has_data() ) : ?>
    
    									<dt><?php bp_the_profile_field_name(); ?></dt><br />
    									<dd><?php bp_the_profile_field_value(); ?></dd>
    
    								<?php endif; ?>
    
    								<?php do_action( 'bp_profile_field_item' ); ?>
    
    							<?php endwhile; ?>
    						</dl>
    
    				  </div>
    				</li>
    			<?php do_action( 'bp_after_profile_field_content' ); ?>
    
    		<?php endif; ?>
    
    	<?php endwhile; ?>
    	</ul>
    	<?php do_action( 'bp_profile_field_buttons' ); ?>
    
    <?php endif; ?>
    
    <?php do_action( 'bp_after_profile_loop_content' ); ?>
    
    function bp_add_profile_navigation() {
        if(bp_is_user()): ?>
        
          <div class="three columns">
            <ul class="inline-list right">
              <li><?php _e("View more members", 'kleo_framework');?> </li>
              <?php $prev = bp_prev_profile(bp_displayed_user_id()); if ($prev !== "#") : ?><li><a>" title="<?php _e("Previous profile",'kleo_framework');?>"><i class="icon-chevron-left"></i></a></li><?php endif; ?>
              <?php $next = bp_next_profile(bp_displayed_user_id()); if ($next !== "#") : ?><li><a>" title="<?php _e("Next profile", 'kleo_framework');?>"><i class="icon-chevron-right"></i></a></li><?php endif; ?>
            </ul>
          </div>
    
        <?php endif;
        
    }
    
    ?>
    
    in reply to: Changing BASE title #37050
     HHMediaDesign
    Participant

    The problem is that when I change the title of the BASE which is the Primary tab, it causes the ABOUT ME tab to disappear next to the profile image. I am 100% certain this is what is causing the ABOUT ME tab as I have removed all custom css and the only thing I change is the title and it immediately removes the Base tab… and puts it back when I change it back to Base.

    I am assuming that because it is the Base tab it needs to title to also be changed somewhere within the php… Can you help?

    Attachments:
    You must be logged in to view attached files.
    in reply to: Add line break to Myself Summary questions #36277
     HHMediaDesign
    Participant

    Please can you advise where I might go to manage this text? which php file?

    I appreciate you have other questions to deal with but I have a deadline and happy to try this myself, just struggling to find the right file!

    Thanks!
    Hillary

    in reply to: Add line break to Myself Summary questions #35976
     HHMediaDesign
    Participant

    Any luck with this?

    Thanks!
    Hillary

    in reply to: Add line break to Myself Summary questions #35886
     HHMediaDesign
    Participant

    Thanks – here it is http://dating.thecoast.ca/members/erin-rosenthal/

    I want to force the answers to the next line below the questions rather than beside the question.

    in reply to: Add line break to Myself Summary questions #35149
     HHMediaDesign
    Participant

    Hi, can anyone help with this? Thank you! I’ve attached a screen shot of the Myself Summary section. I’d like to add line break immediately after each question.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Avatar dimensions for landscape and portrait #34917
     HHMediaDesign
    Participant

    Thank you – this is a new site with old data from a previous dating site so I can tell all new and returning users which dimensions to upload.

    Much appreciated!
    Hillary

    in reply to: Avatar dimensions for landscape and portrait #34892
     HHMediaDesign
    Participant
    This reply has been set as private.
    in reply to: Avatar dimensions for landscape and portrait #34856
     HHMediaDesign
    Participant

    Thanks Laura but as I mentioned in a previous post, removing the height:auto; just stretches the image. Not so noticeable within the small thumbs but really bad on the individual profile. See attached.

    It’s also stretched the logo which I don’t want. I can fix it though…

    Attachments:
    You must be logged in to view attached files.
    in reply to: Avatar dimensions for landscape and portrait #34836
     HHMediaDesign
    Participant
    This reply has been set as private.
    in reply to: Avatar dimensions for landscape and portrait #34834
     HHMediaDesign
    Participant

    Just deactivated all plugins except BB and nothing changed. I have only one CSS adjustment which I’d already removed to test.

    in reply to: Avatar dimensions for landscape and portrait #34831
     HHMediaDesign
    Participant

    That didn’t work… 🙁

    It just made the images stretch by height. I want them to just crop to a square and have the image fill the square…

    Thoughts?

    I’ve also done and update on the theme but no change.

    in reply to: Avatar dimensions for landscape and portrait #34823
     HHMediaDesign
    Participant

    Can you confirm what the file is called? You’ve mentioned 2 versions above (foundation-nonresponsive.min-.css and foundation-nonresponsive.min-css) and in the asset folder there is already a file called foundation-nonresponsive.min.css

    Thank you!

    foundation-nonresponsive.min-.css
    foundation-nonresponsive.min.css
    foundation-nonresponsive.min-css

    in reply to: Avatar dimensions for landscape and portrait #34821
     HHMediaDesign
    Participant

    Not sure if I did the right thing… I created a .css file called foundation-nonresponsive.min-.css using your css styles from when I clicked on the attachment in your reply (huge css file…?). Then uploaded that the the assets/styles folder of the theme.

    No change… the thumbs are still as they were.

    Any other suggestions?
    Thanks!

    in reply to: Avatar dimensions for landscape and portrait #34809
     HHMediaDesign
    Participant

    Thanks Laura – http://dating.thecoast.ca/

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

Log in with your credentials

Forgot your details?