Forum Replies Created
-
Author
-
marceltj
Participant@sharmstr I’m experiencing the same issue. Get a 404 error on “Create Group”. Disabled everything except for BP and tried both suggestions above.
marceltj
ParticipantSame issue here. Works on some page but not on others. EX. Cannot change title for Members page.
marceltj
ParticipantGoing back to the original issue….
Andrei, it seems that mcperlay already provided ample information as to the setup and environment in which this issue occurs.
Here’ mine.
– No plugins except for Buddypress, Social Articles, and Cover plugin
– removed all custom code (bp-custom, functions, css, etc.)Issue is still present.
Now, if I install the other cover photo plugin, everything works fine.
The issue only appears from the profile menu tab.I actually ended up doing a fresh install in another instance and issue exists.
marceltj
Participant@mcperly It’s official, I see this bug all well not. The cover photo/header disappears for from the profile menu when I go to post/articles tab. Were you able to get anywhere?
marceltj
Participant@radu Thanks, I was able to sort it out last night.
Basically 2 steps:
1) Adjust settings in Activity Plus
2) Add this to functions.phpCOPY CODEfunction bigger_embed_size() { return array( 'width' => 300, 'height' => 250 ); }
3) Add this CSS
COPY CODE.fluid-width-video-wrapper { width: 300px !important; position: relative; padding-top: 30% !important; }
All looks good now!
marceltj
ParticipantSame issue here does not work for me. I am using Activity Plus to embed but they also told me this is related to theme.
Even tried using settings via bp-custom define and still overwritten by theme.February 3, 2015 at 06:54 in reply to: Search Form on Pinterest Home Pages Searches outside specified fields #44495marceltj
Participant@sharmstr Any idea on how to make search with non post type? Trying to get SabaiDiscuss to work with search π They, for whatever reason, did not use custom post type.
Not even sure where to begin but any pointers would be great.marceltj
ParticipantI’d like to know if anyone has figured out how to make these link. It seems standard practice that an element with some type of hover or mouse over would suggest an action, like link to a page. As of now, it’s really just look without function.
marceltj
ParticipantCOPY CODE$redirecturl = apply_filters( 'kleo_modal_login_redirect', $info['user_login'] . '/profile/', '', $user_signon );
marceltj
Participantthat and had to switch the order.
$redirecturl = apply_filters( 'kleo_modal_login_redirect', $info['user_login'] . '/profile/', '', $user_signon );
marceltj
ParticipantUpdate to this and seems to work. Thank you again!
$redirecturl = apply_filters( 'kleo_modal_login_redirect', $info['user_login'] . '/profile/', '', $user_signon );
marceltj
ParticipantMy mistake on this… need to flip user and profile like ‘domain/user/profiles’. I tried to adjust but doesn’t see to work for me this way
marceltj
ParticipantThank you! Only problem I am having is that my setup has slug /profile/ instead of members. Do I change the permalink or how can I hard code it in the function?
marceltj
Participant@sharmstr Hello, I tried to insert your redirect code placed in theme child functions file. Works for a static url but what would I put instead for redirect to logged in users profile?
January 14, 2015 at 23:39 in reply to: how to display social networks to buddypress member profile #42094marceltj
ParticipantGot it working. Thought the field was supposed to be set as URL not Text but vice versa fixed it
January 14, 2015 at 23:18 in reply to: how to display social networks to buddypress member profile #42089marceltj
ParticipantThe below is how it shows.
Attachments:
You must be logged in to view attached files.January 14, 2015 at 23:17 in reply to: how to display social networks to buddypress member profile #42088marceltj
ParticipantCOPY CODEfunction social_links_in_header () { $social_links = array('facebook','twitter','linkedin'); 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; } }
January 14, 2015 at 23:16 in reply to: how to display social networks to buddypress member profile #42084marceltj
Participant`function social_links_in_header () {
$social_links = array(‘facebook’,’twitter’,’linkedin’);
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;
}}
January 14, 2015 at 22:43 in reply to: how to display social networks to buddypress member profile #42073marceltj
ParticipantAlso, this is without any links in the custom fields. So really nothing should show I would think.
January 14, 2015 at 22:39 in reply to: how to display social networks to buddypress member profile #42072marceltj
Participant@sharmstr
Thank you so much for everyone’s effort on this!
I pasted the code into my function file and only see “” target=”_blank”> ” target=”_blank”>” under the profile picture.Any ideas?
-
AuthorPosts