Search Results for 'theme'
-
AuthorSearch Results
-
March 31, 2016 at 7:02 am #251951
In reply to: Courseware – Online course on BP
ripulkr
ParticipantTry WPLMS it is an LMS on BuddyPress : http://themeforest.net/item/wplms-learning-management-system/6780226
March 29, 2016 at 7:14 pm #251909In reply to: Restricting Group names.
shanebp
ModeratorYou can put it in your theme/functions.php or in bp-custom.php.
March 28, 2016 at 5:48 pm #251868In reply to: ATT: Moderator
Dono12
ParticipantIf you guys want to keep it for other people facing similar issues, please remove or add a space holder here:
.../wp-content/themes/Starkers-Child-2/images/vidimage.jpgMarch 27, 2016 at 7:20 pm #251842shanebp
ModeratorIf they’ve logged in, they should have a last_activity entry – without which they won’t appear on the Members page.
If you aren’t concerned about existing last_activity entries for those who currently do appear, paste this function in your theme/functions.php.
It will create a last_activity entry for all users and set it to the current time.Load the site once and then remove this function so that it does not run again.
function brad_add_last_activity() { global $wpdb; foreach ( $wpdb->get_col( "SELECT ID FROM $wpdb->users" ) as $user_id ) { bp_update_user_last_activity( $user_id, bp_core_current_time() ); } } add_action('bp_init', 'brad_add_last_activity' );March 26, 2016 at 3:15 pm #251822In reply to: Insert a join group button in a post
danbp
ParticipantHi,
you tried the complicated way. 😉 Let’s do it simple & stupid (it’s easter).
Assuming you want to link only to one group, whatever the post.
1) simplest way
Pick up the join group url by hovering over the button on the group directory.
Something likeyour-site.com/groups/group_name/join?_wpnonce=5b8355ee81d
Above the post, write “Join group X” as text and add the url. You’re done !2) lazy way
add a shortcode button on the text editor (not visual), with button text and url.Add both snippet to bp-custom.php or child-theme’s functions.php
In this example, my group page is named groupes and the group name is Horseshoe
Change that to your credentials for$hrefvar (see 1) to get the url).function my_join_button($atts, $content='') { extract(shortcode_atts(array( 'class'=>'post-join-group' // css class name ), $atts)); $href = get_home_url().'/groupes/horseshoe/join?_wpnonce=6b826ee77d'; $output = '<span><a href=" '. $href .' ">Join the Horse group</a></span>'; if ( $content != '' ) { $output = "$class $content"; } return $output; } add_shortcode('join_my_group','my_join_button'); /* Add a shortcode button to html (text) editor */ function add_quicktags() { ?> <script type="text/javascript" charset="utf-8"> QTags.addButton( 'aq_jmg', 'Join my group', '[join_my_group]', '', '', 'Join my group' ); </script> <?php } add_action( 'admin_print_footer_scripts','add_quicktags');March 25, 2016 at 10:10 pm #251813In reply to: Modify profile edit page
carson7634
ParticipantVersion 4.4.2 of WP
http://www.dynamicdigitalpursuits.com/SportsRecruiters
Theme:
SydneyPlugins:
BuddyPress
BuddyPress Profile Tabs (Deactivated)
Page Builder
s2Member
Sydney Toolbox
Theme My LoginMarch 25, 2016 at 1:00 am #251790valuser
ParticipantA possible way to achieve what you want.
Networks+ and bp-multi-network
Each network can have absolutely completely separate Activity Streams, Groups, Forums, and sites/blogs as well as separate plugin and theme structures.
I only say MAY because the usermeta is shared and once a user visits another network that user is added to the Members of that network.
However AFAIK users have separate bp-profile data on each network
I fully understand that this may not be exactly what you are looking for but it certainly is a very good start.
March 24, 2016 at 2:51 pm #251759In reply to: less items in BuddyPress stream
@mcuk
ParticipantHi,
Copy the line file activity-loop.php into your child theme (maintaining the same file structure), and replace the line:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>with the line:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&per_page=10' ) ) : ?>March 23, 2016 at 10:27 pm #251727In reply to: Email Notifications Not Working
davidkey772
ParticipantThank you SO much for engaging and for your optimism…
The site is hosted with a small company called Green Web.I have several other sites hosted with them using WP and they all send email form the sites fine. For this reason, I don’t think it’s a server issue. None of these other sites have BP though.
The site that has BP – the one I have the issue with – has a plugin that sends emails to notify about new blog posts: that works fine. Also, other WP admin notifications (password changes, new registrations, etc.) all work fine.
The theme is custom built – but as I mentioned, other types of email notification are working fine with this theme. It’s just the BP email notifications…
March 23, 2016 at 9:39 pm #251724ngoegan
ParticipantI figured out what was causing the redirect – I had “Enable Security” selected in Theme My Login plugin. When I unselected it, it allowed me (when I’m logged out) to access the register page!
I don’t know why when I deactivate the plugin it still causes the issue though.
Either way, it’s a TML issue.
Now I just have to figure out how to exclude the “register” page from the site security.
So glad to at least know the cause!
March 23, 2016 at 8:12 pm #251720In reply to: Email Notifications Not Working
Paul Wong-Gibbs
KeymasterWe should be able to figure this out. 🙂
Where is your website hosted?
Does your site send WordPress emails, without any other plugin activated, and using the default theme? For example, comment moderation / notification emails.
March 22, 2016 at 9:15 am #251661ngoegan
ParticipantI wouldn’t know funny if I saw it, but here is the only thing relating to redirects or registering that I could tell from my theme’s function.php file. Does any of it look funny to you?
add_action( ‘template_redirect’, ‘twentytwelve_content_width’ );
/**
* Register postMessage support.
*
* Add postMessage support for site title and description for the Customizer.
*
* @since Twenty Twelve 1.0
*
* @param WP_Customize_Manager $wp_customize Customizer object.
*/
function twentytwelve_customize_register( $wp_customize ) {
$wp_customize->get_setting( ‘blogname’ )->transport = ‘postMessage’;
$wp_customize->get_setting( ‘blogdescription’ )->transport = ‘postMessage’;
$wp_customize->get_setting( ‘header_textcolor’ )->transport = ‘postMessage’;
}
add_action( ‘customize_register’, ‘twentytwelve_customize_register’ );/**
* Enqueue Javascript postMessage handlers for the Customizer.
*
* Binds JS handlers to make the Customizer preview reload changes asynchronously.
*
* @since Twenty Twelve 1.0
*/
function twentytwelve_customize_preview_js() {
wp_enqueue_script( ‘twentytwelve-customizer’, get_template_directory_uri() . ‘/js/theme-customizer.js’, array( ‘customize-preview’ ), ‘20141120’, true );
}
add_action( ‘customize_preview_init’, ‘twentytwelve_customize_preview_js’ );March 22, 2016 at 6:35 am #251657In reply to: Missing Add Friend Button
ripulkr
ParticipantI also have the WPLMS theme, there is switch in the theme which enables this.
The switch is located in WP Admin – WPLMS – BuddyPress – Member meta infoMarch 22, 2016 at 6:34 am #251655In reply to: 2.5 HTML email styling not working
ripulkr
ParticipantYou can also integrate Gmail for sending Emails using the WP SMTP plugin : http://www.wpbeginner.com/plugins/how-to-send-email-in-wordpress-using-the-gmail-smtp-server/
For the WPLMS theme, the developers are working on migrating their course related emails to Buddypress.
March 22, 2016 at 6:05 am #251651In reply to: Users Sell Items
ripulkr
ParticipantI am also using the WPLMS theme, based on the information I have they’re already working on similar module integrating with this plugin :http://codecanyon.net/item/booked-appointment-booking-for-wordpress/9466968?s_rank=1
March 22, 2016 at 2:58 am #251648@mcuk
ParticipantI was just taking a shot in the dark, that if line 107 was the one :
if ( $image = genesis_get_image( array( ‘format’ => ‘url’, ‘size’ => genesis_get_option( ‘image_size’ ) ) ) ) {then change the
=to==.But the problem maybe something incorrect prior to the = sign. A missing semicolon, bracket etc. Does the function work properly in its original state (i.e. before alterations were made?).
May be useful to ask your theme support as to where the link from Shane should go, as I’m not familiar with it.
March 21, 2016 at 11:38 pm #251635riseUp
ParticipantHm….when I copied and pasted your suggested code, I get the following message:
Parse error: syntax error, unexpected ‘=’ in /home/content/p3pnexwpnas06_data03/32/3122732/html/wp-content/themes/streamline-pro/functions.php on line 107
What do you think? How do you think I should adjust this code? Thank you!
March 21, 2016 at 7:37 pm #251619r-a-y
KeymasterI turned off all Plugins except WordPress and Buddypress and this issue still occurs.
Are you sure you disabled all plugins except BuddyPress? If so, check for any rogue code snippets in your theme’s
functions.phporwp-content/plugins/bp-custom.php.Once that is done, delete all registration pages you have set up in WordPress. Create a new WordPress page to be used for BuddyPress registration. Just enter a post title and hit “Publish”. Also, ensure all your pages in the “Pages” trash are deleted.
Next, go to “Settings > BuddyPress > Pages” and set the “Register” page to the page you just created.
March 21, 2016 at 6:46 pm #251613In reply to: Login widget customization
@mcuk
ParticipantYou need to get the css selectors for the title and the button to style them. Easily done using the developer tools on your browser (hit F12 in your browser).
Then you’ll have something like this to remove the title:
#idoftitle { display: none; }and to style your button something like:
#idofloginbutton { border: 1px solid #ff00ff; border-radius: 4px; background: #ff00ff; color: #fff; }etc.
There are lots of variables that go into styling so the above are just examples. Put your custom code in your style.css file within your child theme and your changes will show.
March 21, 2016 at 8:01 am #251596danbp
ParticipantHi,
you have to debug your install. It’s probably a theme conflict or a cache issue, related to a content.
Activate a twenty theme and deactivate all your plugins except BuddyPress and clear your cache. Test WP+BP+Theme. If ok, reactivate plugins one by one untill you find a culprit.
Please take advice from here.
March 21, 2016 at 3:25 am #251593In reply to: Using bp_parse_args() to filter members loop
johnkim1968
ParticipantHi Shane,
I tried the 2015 theme and had the same problem. Just to confirm, http://yourURL/members/member name/friends/requests/ – gave you the correct friend requests and not all members? If so, you are correct and I need to keep digging. Thanks.
March 20, 2016 at 11:56 pm #251583ds123
Participantthanks for the reply its a themeforest theme called vivacity and here are the plugins i have installed:
Akismet
Version 3.1.8 | By Automattic | View detailsAudio player
Version 2.0.4.1 | By Martin Laine | Visit plugin siteAuto Post Thumbnail
Version 3.3.4 | By Aditya Mooley , Tarique Sani | View detailsBuddyPress
Version 2.5.1 | By The BuddyPress Community | View detailsCloudFlare
Version 1.3.20 | By Ian Pye, Jerome Chen, James Greene, Simon Moore, David Fritsch, John WinemanDashboard Widget Remover
Version 1.0 | By Zihad Tarafdar | View detailsDisable wp new user notification
Version 0.100323 | By Corey Salzano | View detailsGoogle Analytics by Yoast
Version 5.4.6 | By Team Yoast | View detailsLayerSlider WP
Deactivate | Edit
Version 5.6.2 | By Kreatura Media | Visit plugin siteLog Report Plugin
Keeps Stop Spammer logs in CSV file
Version 1.0 | By Keith P. Graham | Visit plugin siteMail From
Version 1.0.1 | By Andrew Hamilton | View detailsSelect SI CAPTCHA Anti-Spam
Version 2.7.7.7 | By Mike Challis | View detailsStop Spammers Spam Control
Version 6.15 | By Keith P. Graham | View detailsVivacity Plugin
Version 1.2 | By GhostPoolWP Maintenance Mode
Version 2.0.3 | By Designmodo | View detailsWP Super Cache
Version 1.4.8 | By Automattic | View detailsWP Widget Cache
Version 0.26 | By Andrew Zhang | Visit plugin siteWPBakery Visual Composer
Version 4.9 | By Michael M – WPBakery.com | Visit plugin siteYoast SEO
March 20, 2016 at 11:05 pm #251579Henry Wright
ModeratorWhich plugins do you have active and which theme are you using?
March 20, 2016 at 10:52 pm #251576In reply to: cover images won’t work on 4.2.2 latest buddypress
ds123
ParticipantThanks for the reply paul …. they have never worked for me … i tried switching to the wordpress 2016 theme and then the classic theme to rule out my own theme being responsible …the cover images are there where they should be in the buddypress uploads directory ..but they don’t show up ..any ideas?
March 20, 2016 at 10:33 pm #251574In reply to: Using bp_parse_args() to filter members loop
shanebp
ModeratorI cannot duplicate your issue using a standard WP theme, like 2015, and no custom code other than the filter discussed in this thread.
I suspect an issue with your customized version of the members loop or some custom function re members and / or friendships.
-
AuthorSearch Results