Forum Replies Created
-
Author
-
joyParticipant
I just did this and it worked out fine.
COPY CODE@media screen and (max-width: 620px) { #bbpress-forums .bbp-form input[type="text"] { width: 100%; } }
Thank you.
joyParticipantI’m using a plugin for the “follow” as well as the “block”. The block button doesn’t respect the action div and unfortunately that plugin has been abandoned. I won’t be getting any help with that. If the buttons would align properly, I would be fine leaving it all there, but it looks funny.
Thanks for trying to help.
May 5, 2015 at 05:39 in reply to: how to display social networks to buddypress member profile #57348joyParticipantPerfect! Thank you so much for your help with that.
May 5, 2015 at 05:07 in reply to: how to display social networks to buddypress member profile #57337joyParticipantI’ve been successful with part of this code. But for some reason only 4 of my icons show even though the URL’s are complete. Does anyone have any idea what I’m doing wrong here? This is the code I’m using:
COPY CODEadd_action('bp_profile_header_meta','social_links_in_header'); function social_links_in_header () { $social_links = array('facebook','twitter','google+','instagram','linkedin','youtube','pinterest'); foreach( $social_links as $link ) { if ( $data = bp_get_profile_field_data( array('user_id'=>bp_displayed_user_id(), 'field'=>$link )) ) : ?> <a href="<?php echo bp_get_profile_field_data( array('user_id'=>bp_displayed_user_id(), 'field'=>$link)); ?>" target="_blank"><i class="icon-<?php echo $link; ?>"></i></a> <?php endif; } }
The only icons that appear are Facebook, Twitter, Linkedin, and YouTube.
Thanks in advance for any help.
joyParticipantWhen a user signs up they are taken to a “Check your email” screen. How can the new accounts be auto-approved and redirected to a page of my choice? I know there is plugin to do this, but if I could hardcode it within the theme, it would be much better.
Thank you.
joyParticipantImages weren’t attaching for some reason. But here they are.
Attachments:
You must be logged in to view attached files.joyParticipantNever mind, I figured it out. I put this code in my css file. The z-index was listed at “999” which is why it’s overlapping the header.
COPY CODE#bbpress-forums .hentry div.bbp-reply-content::before, #bbpress-forums .hentry div.bbp-topic-content::before { z-index: 0; }
This seemed to have corrected the issue.
joyParticipantThank you for your response. I updated that thread last week. It doesn’t do exactly what I was hoping. Please see my response and kindly suggest what I should edit to make the custom function work properly.
joyParticipantHello this issue can be seen on this very site, please check it, as I have previously attached an image of it. Thank you.
May 2, 2015 at 11:53 in reply to: How can i limit update time to just hours/days and not seconds #57031joyParticipantHello, that code does not show the hours. I had a post with a freshness of 1 day and 7 hours ago. It dropped the 7 hours and only displays as 1 day.
I would like the freshness to show the same way as this forums does. It just minutes, until it reaches an hour, then only hours, then days and hours, etc. But it does not display the word “ago”. Can you help? Thank you.
joyParticipantThank you. That didn’t work though. I was able to achieve it with this:
COPY CODE#buddypress #friend-list div.action, #buddypress #member-list div.action, #buddypress #members-list div.action { display: none !important; } #buddypress #friend-list .update, #buddypress #member-list .update, #buddypress #members-list .update { display: none !important; }
joyParticipantThank you for your response. I have verified that this is in fact an issue to the bbpress/buddypress notifications function. If I find a solution to this I will post it here.
-
AuthorPosts