Forum Replies Created
-
Author
-
HDcmsParticipant
Hello,
Thank you it works.
I hope this will be an option for next update because I’m not the only one interested
RegardsHDcmsParticipantHI,
2 / 🙁 I thought I read that you were going to propose in a comment !? This is an important point! Is that a lot of affected files?
which ? thank you for helping me on this because I can not pay developer
3 / even an intranet requires a display by management roles !
RegardsHDcmsParticipantHello,
1 / I want dasboard with shortcordes plugins without visual composer
2 / buddypress right menu, the main menu at the top
3 / very hassle, your integration paidMembershipPro to sweetdate is very good.
Planned ?Attachments:
You must be logged in to view attached files.HDcmsParticipantHello,
Example theme with the format pictogram:
http://www.themefocus.co/demo/?product=alterna
suggestion 😉HDcmsParticipantHello,
I imagine that your answer relates to item 3/ !?
This is actually a non-urgent improvement point, I suggest for a future releaseDo you saw on points 1/ and 2/ that do not seem resolved to me?
1/ filter :
add_filter(‘bp_get_activity_show_filters_options’, ‘add_media_show_filter’, 10, 2 );2/ Hiding the contents :
add_filter( ‘bp_get_activity_show_filters_options’, ‘bpfr_remove_filters_options’, 50, 2 );I’m leaving tomorrow and I wish solve these problems!
RegardsHDcmsParticipantHI,
4/ If it’s not too hard can you incorporate into your next update (or put it in a plan soon) improved display before the publication of a note in the activity streamBest as twenty: minimum information before publication
You: OverloadAttachments:
You must be logged in to view attached files.HDcmsParticipantHI,
Thank you
I do not know if that answered the last pressing issue, but it works now.
Nevertheless the first 2 points are not resolved
1/ filter by images of rtmedias the sidewide activity stream
2/ Hiding the contents of the sidewide activity streamWant my custom.php-file?
Regards
HDcmsParticipantHI,
More generally.
I try to apply the methods for BP 2.6+ masking lines of the selector.
It works with a theme but not with twenty sweetdate (child or parent)
Thank you for your helpCOPY CODEadd_filter( 'bp_get_activity_show_filters_options', 'bpfr_remove_filters_options', 50, 2 ); function bpfr_remove_filters_options( $filters, $context ) { /* * @param string $context Context for the filter. 'activity', 'member', 'member_groups', 'group'. */ // if ( 'activity' == $context AND pmpro_hasMembershipLevel(array('0','1'))) { if ( 'activity' == $context ) { // commenter les lignes qu'on veut afficher $remove_these = array( //'New Members' => __( 'New Members', 'buddypress' ), 'Profile Updates' => __( 'Profile Updates', 'buddypress' ), // 'Updates' => __( 'Updates', 'buddypress' ), 'Friendships' => __( 'Friendships', 'buddypress' ), 'Group Updates' => __( 'Group Updates', 'buddypress' ), 'New Groups' => __( 'New Groups', 'buddypress' ), 'Group Memberships' => __( 'Group Memberships','buddypress' ), 'Posts' => __( 'Posts', 'buddypress' ), 'Comments' => __( 'Comments', 'buddypress' ), ); foreach ( $filters as $key => $val ) { if ( in_array( $val, $remove_these ) ) unset( $filters[ $key ] ); } } return $filters; }
HDcmsParticipantHi,
help me please because after I’ll be away a few days!
a) hide the members of counter top of the page activity
b) hide follow rss
(http://seventhqueen.com/demo/sweetdatewp/activity/)
ThanksHDcmsParticipantHI,
I had already tried and it does not work?
and how to hide the members of counter top of the page activity (http://seventhqueen.com/demo/sweetdatewp/activity/)
COPY CODEactivity-all span{ display: none; /* Does not work*/ }
HDcmsParticipantHi,
I am also hide follow rss
I tried several codes including this oneCOPY CODEul.sub-nav li.feed { display: none !important; }
does not works 🙁
HDcmsParticipantAh!! I must do the same with the “Home” of breadcrumb
what file does he find? or hook ?HDcmsParticipantHello,
sniff !
Thank you to tell me what php file, i can go put my code (or do_action)
It is on the left sidebar of a page with 3 columnsHDcmsParticipantHi,
Ok I’ll make it simple by taking a picture of a member with a link to his profile.
Do you have a hook that would allow me to write a sidebar (I want to limit the profile display for a number of months)HDcmsParticipantHello Laura
resolved 🙂if (is_user_logged_in()) {echo ('/page-d-exemple/');} else {get_home_url();}
-
AuthorPosts