Search Results for 'buddypress'
-
AuthorSearch Results
-
October 3, 2013 at 9:35 pm #172283
In reply to: New User Activation
Henry
MemberA partial solution is in the pipeline, although it hasn’t been added to core yet
https://buddypress.trac.wordpress.org/ticket/5042
If the user “second clicks” and they are logged in, they’ll be redirected away from the activation page. If they’re not logged in then they’ll see the activation key form thingy. Whilst not a full solution, it’s an improvement.
October 3, 2013 at 7:22 pm #172275In reply to: Editing sign up form text
aces
ParticipantOctober 3, 2013 at 6:27 pm #172269In reply to: Buddypress registration
martinbeaulne
ParticipantI have the same question as Ben.
I know we shouldn’t modify core files. I know there are .po and .mo files for translations. But creating an entire .mo file for only one ( 1 ) more translation is overkill ( since poedit doesn’t let you just “add” an entry to an existing .po file ). ( http://stackoverflow.com/questions/7680021/how-to-add-a-new-string-to-a-po-file-w-a-po-editor )
I have a third-party theme, and I’ve copied the buddypress folder in it. In members/ there is an “activate.php” file where I changed some text.
But the “Check Your Email To Activate Your Account!” is not in activate.php, nor register.php, nor anywhere else.
So, the question is simple: where is located the string “Check Your Email To Activate Your Account!” ?
( Let me guess something else: there is no translation in the official translation files for this specific string, maybe, because it just isn’t in the registration php files ? )
I think that’s what Ben wanted too.
October 3, 2013 at 4:22 pm #172266dice2dice
ParticipantHi @corytrevor
Thanks you for the advice, very much appreciated.
I will try your suggested solution this evening.
Many thanks for your kind help.
October 3, 2013 at 3:32 pm #172263In reply to: [Resolved] Show posts written by user on profile
bmstudio
ParticipantHi,
I have modify the @azchipka ‘s plugin.
It’s work !!!<?php /* Plugin Name: TCH BP Posts On Profile Plugin URI: http://azchipka.thechipkahouse.com/services/technology/development/wordpress-plugins Description: Adds a tab to Buddy Press User Profile displaying the posts they have published. Version: 0.1 Author: Avery Z Chipka Author URI: http://azchipka.thechipkahouse.com License: GPLv2 or later */ // Make sure we don't expose any info if called directly if ( !function_exists( 'add_action' ) ) { echo '404'; exit; } define('TCH_PostsOnProfilesVersion', '0.1'); define('TCH_PostsOnProfilesVersion_PLUGIN_URL', plugin_dir_url( __FILE__ )); function my_setup_nav() { global $bp; bp_core_new_nav_item( array( 'name' => __( 'Outils', 'buddypress' ), 'slug' => 'mes-outils', 'position' => 75, 'screen_function' => 'mes_outils_lien', 'show_for_displayed_user' => true, 'default_subnav_slug' => 'mes-outils', 'item_css_id' => 'mes-outils' ) ); } add_action( 'bp_setup_nav', 'my_setup_nav', 1000 ); function mes_outils_titre() { echo 'Mes outils'; } function mes_outils_contenu() { locate_template( array( 'members/single/outils/loop-outils.php' ), true ) ?> <?php echo "TEST"; ?> <?php } function mes_outils_lien () { add_action( 'bp_template_title', 'mes_outils_titre' ); add_action( 'bp_template_content', 'mes_outils_contenu' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } ?>October 3, 2013 at 1:58 pm #172257In reply to: [Resolved] Show posts written by user on profile
lucamoretto
ParticipantHi guys is the same if i wannainsert a list of all products uploaded by author in my site woocommerce + buddypress. Every users (subscriber) can upload a new products, I wanna display in the user buddypress profile a list with a link of all products published by author. Is Possible? Can help me to solve this problem? Ty in advance!
October 3, 2013 at 1:33 pm #172254In reply to: Show custom user meta fields on user profile page
pacija
ParticipantThank you for your reply. Unfortunately my knowledge of php and wordpress APIs is not sufficient for this. I was hoping to have something to click on, or at least some code snippet.
Perhaps more people will find this feature useful, and someday it gets included in Buddypress.
October 3, 2013 at 12:44 pm #172250Hugo Ashmore
Participantjust updated my last comment as you do have a choice to still follow older principles in building BP themes.
October 3, 2013 at 12:38 pm #172249santanin
ParticipantOkay sounds good. Thank you again!
October 3, 2013 at 12:36 pm #172248Hugo Ashmore
ParticipantSo you couldn’t have been telling the theme to use sidebars on BP pages? It’s not BP aware, BP still works on the principle of a blank placeholder page with a name i.e ‘members’ but it renders that screen view via page.php if it doesn’t find other file names first (as outlined in the codex)
The template pack post is now outdated, don’t follow, you need to re-factor a file to handle BP screens, there are two codex articles currently dealing with theme compat use those for guidance, further ones may follow but will be generic in nature in that it’s difficult to give specific advice on a per theme basis.
Also be aware that all template pack plugin really did was copy over files to your theme and enqueue the scripts and styles, essentially it did very little from a developers point of view that they couldn’t do manually, you still have the option of copying files from bp-default theme to your child theme and sorting out the styles and scripts required in your own functions file, the templates then would be re-factored broadly along the lines that mercime outlined in that post, however we are trying to steer everyone towards theme compat as the norm now for either creating themes of creating child themes from parents.
October 3, 2013 at 12:27 pm #172247santanin
ParticipantTo answer your P.S. question, no the theme is not BuddyPress ready. It’s a regular WordPress theme. I just really liked the way it looked for my website, and I was unable to find a BuddyPress enabled theme that fit the style I was looking for.
October 3, 2013 at 12:25 pm #172246santanin
ParticipantThank you for the quick response! My apologies, I thought I read a comment by a moderator from a previous post that said not to follow the instructions about 1.7.1, but I was mistaken.
When you say to follow the 1.7 steps, I assume you mean the information contained in this codex: https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
If not, can you list the codex that contains this information, or can you recommend any other BuddyPress Codex you feel would help if I read?
The user “mercime” helped another user get BuddyPress to work on the theme I purchased, but it was using the BP Template Pack, which I know I cannot obtain anymore with BuddyPress 1.8.1. Those instructions were in this post https://buddypress.org/support/topic/resolved-problem-with-adjusting-code-to-fit-theme-modernize/
Thank you again for your help!
October 3, 2013 at 12:11 pm #172245Hugo Ashmore
ParticipantNo the current theme compatibility documentation is up to date and doesn’t say don’t follow 1.7 steps. 1.7 introduced theme compat, 1.8 just extended the template hierarchy, you need to follow the steps outlined for creating child themes, creating a buddypress.php file based on page,php and then that buddypress file will need to updated to work correctly with your theme which sadly, as a lot of themeforest themes are is not compliant with the standard WP template system that BP works through.
So use those guides they should put you on the right lines and if this is client work then oughtn’t to be too hard to figure out.
P.S I note that you say told the theme that bp pages should have sidebars, so is this actually a BP ready /enabled theme ? If so and things aren’t working then you’re best of speaking to theme author or their support channels as they will no best how their theme is constructed and offer far better help.
October 3, 2013 at 2:59 am #172233In reply to: Making Buddypress Private.
c.ogden
ParticipantSweet thanks! I gave your app 5 stars.
October 3, 2013 at 1:56 am #172232In reply to: Making Buddypress Private.
bp-help
Participant@cogden-1
Try this plugin I made. This only makes BuddyPress and bbPress private.
https://wordpress.org/plugins/private-bp-pages/
Also make sure you read the FAQ first:
https://wordpress.org/plugins/private-bp-pages/faq/
Make sure you clear the previous code out of bp-custom.php that you posted above!October 3, 2013 at 1:12 am #172230In reply to: Making Buddypress Private.
c.ogden
Participantweird (doesn’t let me edit my post to check the box for recieve email notifications for replies, so I had to post a reply to check the box
October 2, 2013 at 11:59 pm #172224In reply to: Page titles in U-Design theme
corytrevor
ParticipantUpdate: The themes author was kind enough to provide the code to add to display the buddypress page titles. Add:
<?php elseif ( function_exists('bp_is_page') && ( bp_is_page( BP_BLOGS_SLUG ) || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_ACTIVITY_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() || bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) ) : ?>
<h1><?php the_title(); ?></h1>
to functions.php just below where it has:
<?php if (is_page()) : ?>
<h1><?php the_title(); ?></h1>
October 2, 2013 at 10:06 pm #172221In reply to: [Resolved] Show posts written by user on profile
Henry
Member@fitnessblogger when @azchipka says adjust the path in the plugin to achieve /author/username I assume that means just getting rid of /posts/? I’m not familiar with the plugin. @azchipka should be able to help with specifics.
If you just want to show posts on a BP profile then my code should work:
Alternatively the plugins I mentioned earlier by buddydev.com are brilliant.
October 2, 2013 at 5:52 pm #172216In reply to: [Resolved] Show posts written by user on profile
hughshields
ParticipantThanks @henrywright-1
I did look at Buddyblog but didn’t know that a list of posts on profile comes standard. I actually don’t want my users to blog from their profile. I just want to show a list of blog posts on my member profiles. In any case I will check it out.It seems a pity that the simple Posts in Profile plugin cannot be fixed. I posted on this subject 7 months ago and no one has been able to make it work. It also seems like a highly visible and critical piece to Buddypress WordPress integration. Anyone using WordPress and thinking of adding BP social networking features will want this.
Guess I will let it go!
October 2, 2013 at 5:44 pm #172215In reply to: [Resolved] Show posts written by user on profile
Henry
Member@hughshields If you’re just getting started with PHP and prefer a plugin, try BuddyBlog – http://buddydev.com/plugins/buddyblog/ and Simple Front End Post http://buddydev.com/plugins/bp-simple-front-end-post/
You can let your members blog directly from their BuddyPress profile. A list of posts on profile comes as standard too.
October 2, 2013 at 5:29 pm #172213In reply to: [Resolved] Show posts written by user on profile
hughshields
ParticipantThe plugin by @azchipka called “TCH-BuddyPress-Posts-On-Profile” gets the job half way done and successfully creates a tab on the member profile, but it looks like there is a problem with the code when displaying member posts. Firstly it links to a new page and doesn not display posts within the tab on the member profile, and secondly it does not display any posts. Here is the code. anyone care to take a swing at fixing this:
// show feedback when 'Posts' tab is clicked function bp_postsonprofile() { add_action( 'bp_template_content', 'profile_screen_posts_show' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } function profile_screen_posts_show() { $theuser = bp_displayed_user_id(); query_posts("author=$theuser" ); if ( have_posts() ) : get_template_part( 'loop', 'archive' ); else: ?> <div id="message" class="info"> <p><?php _e( 'Sorry, this user has not published any posts.', 'buddypress' ); ?></p> </div><?php endif; ?> <?php } } ?>October 2, 2013 at 4:07 pm #172209In reply to: Cannot Activate BuddyPress – Page Not Found
twittem
ParticipantUpgraded WAMP Server and set the install to run
– Apache 2.2.22
– PHP 5.3.13Everything is now working correctly.
October 2, 2013 at 12:26 pm #172193In reply to: Wrong URL issues
chuvadeideias
ParticipantI’m using this theme http://luca.untame.net/, modified.
And, this plugins below:
- Advanced Access Manager
- bbPress
- Breadcrumb NavXT
- BuddyPress
- BuddyPress login redirect
- BuddyPress user account type lite
- Contact Form 7
- Cyclone Slider 2
- Executable PHP widget
- Newsletter
- Simple Ads Manager
- Theme My Login
October 2, 2013 at 11:56 am #172191In reply to: registration form with minimum age
randygootjes
Participantahh thousand times thnx, so can i place login form at a page aswell with buddypress?
do they go to a sort of dashboard? cause i want them to log in and only see like extra menu button or soOctober 2, 2013 at 11:43 am #172189In reply to: Enabling Components
YvonneTaylor
ParticipantI am using the Colorway Pro theme and the plugins are Buddypress V1.8.1, Buddypress Activity Plus V1.5. WordPress is the latest update.
The site is in testing mode at the moment, but can be seen at http://www.thedogsclub.com/testing/
This is the link to the page I have problems with
http://www.thedogsclub.com/testing/wp-admin/options-general.php?page=bp-componentsI am trying to achieve something that looks like this screenshot, but at the moment it is more like a dogs dinner! http://wpmu.org/top-3-ways-to-build-a-social-network-with-wordpress/
Many thanks
-
AuthorSearch Results