Search Results for 'wordpress'
-
AuthorSearch Results
-
July 22, 2014 at 8:03 pm #185431July 22, 2014 at 6:01 pm #185424
In reply to: "Read more" not working on group activities
danbp
ParticipantJuly 22, 2014 at 5:10 pm #185423danbp
ParticipantDo you mean the group admin screen on back end ?
Have you tried to strip the shortcode ?
$content = strip_shortcodes($content);
return $content;Removing some filters may also work ?
http://wp-a2z.com/oik_api/kses_remove_filters/
Or, sorry if i’m wrong, see here a similar question, with a clever answer which maybe help you further.July 22, 2014 at 11:56 am #185412danbp
ParticipantHi @jaybee08,
try this:
function my_custom_button() { // your button here echo ' <br/><div class="mcb"><a href="#" title="">blabla</a><div> '; } add_filter( 'bp_before_member_header_meta', 'my_custom_button' );Add the function to your child theme’s functions.php or to bp-custom.php
July 22, 2014 at 9:24 am #185406laxmanvel
ParticipantHi Mercime,
Thanks alot for your great thoughts..
once again thanks. but i already used RT media plugin for media and gallary but that is want it for pro version.
I’m newbie in wordpress development so how will i customize it.
media gallary only shows on the admin top bar but i want audio,video and photo upload and view on page.!
Please help me.!
Love you Buddypress Support.! 🙂
Buddypress is great ever.
Regards,
LaxmanvelJuly 22, 2014 at 1:12 am #185392In reply to: members pages not showing
@mercime
ParticipantThe pages are assigned
Strange. Did you by any chance give WordPress its own directory? Because BP won’t work with that kind of installation.
July 21, 2014 at 11:15 pm #185385In reply to: Buddpress courseware
@mercime
Participant@suyashgulati Do also post at the BuddyPress Courseware support forums https://wordpress.org/support/plugin/buddypress-courseware
July 21, 2014 at 10:37 pm #185384In reply to: A urgency when a user rigister
@mercime
ParticipantJuly 21, 2014 at 10:27 pm #185383In reply to: Duplicate Activity.
@mercime
Participant@noyzen do also post in the BuddyPress Activity Privacy support forums https://wordpress.org/support/plugin/buddypress-activity-privacy
July 21, 2014 at 10:24 pm #185382@mercime
Participant@ircsome do also post at the Events Manager plugin forums https://wordpress.org/support/plugin/events-manager
July 21, 2014 at 8:35 pm #185378In reply to: [Resolved] How to invite a user to join a group ?
July 21, 2014 at 8:16 pm #185376In reply to: [Resolved] Need help for setting up Buddypress Site
@mercime
ParticipantI have wordpress installed in its own directory with .htaccess- and index.php copied in the root
@pazens BuddyPress does not work on installations where you give WordPress its own directory. https://codex.buddypress.org/getting-started/before-installing/before-installing/July 21, 2014 at 7:33 pm #185374@mercime
Participant@laxmanvel you’d need a media/gallery plugin. free -> https://wordpress.org/support/plugin/buddypress-media
–
–July 21, 2014 at 5:31 pm #185368In reply to: [Resolved] Remove RSS Feeds
aces
ParticipantJuly 21, 2014 at 4:56 pm #185366In reply to: [Resolved] Remove RSS Feeds
Ben Hansen
Participantsorry maybe this is a dumb question but can you even turn off the regular wordpress rss feed? i’d think both feeds basically work the same way maybe @r-a-y can shed some light?
July 21, 2014 at 4:50 pm #185365In reply to: i want a simple pic as Default avatar.
noyzen
ParticipantHi
i dont know if it’s about wordpress or just BP…
but when i install a clean wordpress and BP on it i get this…
always.July 21, 2014 at 4:46 pm #185364In reply to: i want a simple pic as Default avatar.
@mercime
Participant>> i get a broken image when i select ‘mystery man’ for people who don’t have avatars
@noyzen That happens to me when I work on dev site when offline. This is not a BuddyPress issue, but rather a WP issue. If you deactivate BP, do the mystery man avatars show up? Furthermore, has this happened just recently or has it been the case since you set up WordPress?July 21, 2014 at 3:49 pm #185360In reply to: Error in Inbox/Outbox
July 21, 2014 at 1:19 pm #185352In reply to: "Read more" not working on group activities
danbp
Participanthi @doremdou,
BP is a few steps away from better js handling, wich can be the cause of your current trouble.
https://buddypress.trac.wordpress.org/ticket/5735Maybe open a ticket and describe the problem ? 😉
July 21, 2014 at 12:24 pm #185350In reply to: [Resolved] Accept site Terms and Conditions
danbp
Participanthi @chakadizulu,
read here:
https://buddypress.org/support/topic/terms-of-use-plugin-for-buddy-press/
https://buddypress.org/support/topic/adding-terms-of-service-to-registration/
devs opinion: https://buddypress.trac.wordpress.org/ticket/4747or you can give this one a try ?
https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/
July 19, 2014 at 1:41 am #185275bp-help
Participant@foresme
What membership plugin are you using? Have you tried:
https://wordpress.org/plugins/private-bp-pages/
Full disclosure I am the plugin author.July 18, 2014 at 6:43 pm #185264In reply to: single pages redirect to wp-admin
riki81
ParticipantWell, it seems that every page goes in a strange way.
All BP pages redirect to wp-admin, while other components of website redirect to the homepage. For ex. the basket page of WooCommerce.Could it be .htaccess file or wp.config.php?
.htaccess is this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressOn this server, without
define(‘WP_HOME’,’http://workwidewomen.com/’);
define(‘WP_SITEURL’,’http://workwidewomen.com/’);
in wp-config.php
the server goes in loop between http://www.domainname.com and domainname.com and, after few seconds, says page doesn’t exists.On the past server, everything worked fine. There were no loops and I didn’t need
define(‘WP_HOME’,’http://workwidewomen.com/’);
define(‘WP_SITEURL’,’http://workwidewomen.com/’);I think that BP and WooCommerce are “affected” by the same problem I mean… maybe sht’s going wrong on server?
What can I try to do?Thanks again!
July 18, 2014 at 5:47 pm #185252In reply to: Finding photo galery
@mercime
Participant@mistergrobid do also post at the plugin’s support forums
https://wordpress.org/support/plugin/buddypress-mediaJuly 18, 2014 at 11:45 am #185240In reply to: company name/fonction list member and link profil
victord34
Participantsorry for spam.
And thanks @bphelp . And i see your BP Remove Profile Links. He is great !BUT Now
in profiluser page i have the FIELD3:
<tr class=”field_3 field_poste-occupe field_type_textbox”>
<td class=”label”>Poste occupé</td>
<td class=”data”><p>poste occupé cest ca</p>
</td>
</tr>i would like “include” the <td class=”data”> content in your Code ‘field-name’ : $bphelp_my_profile_field_3=’Field-Name’;
thank you.
and sorry bad english im french ^^
July 17, 2014 at 7:30 pm #185218In reply to: company name/fonction list member and link profil
bp-help
Participant@victord34
Check out this plugin solution:
Add Profile Data To The Members Directory
or, check out this code solution: -
AuthorSearch Results