Search Results for 'buddypress'
-
AuthorSearch Results
-
October 4, 2013 at 4:32 pm #172315
Henry
MemberHey @hugo
1. Lol! I’m lazy and a really bad designer!
2. You just answered my question with this! jQuery is enqueued but I seem to need the latest version. Not sure including jQuery twice done me any favours. Just used
wp_dequeue_script( 'jquery' );which solved my problem.Thanks Hugo 🙂
October 4, 2013 at 4:12 pm #172313Hugo Ashmore
ParticipantQuestion is why on earth are you using bootstrap!
Second question is isn’t jquery enqueued anyway!
October 4, 2013 at 2:58 pm #172312In reply to: Combine /user & /user/profile pages?
shanebp
ModeratorOctober 4, 2013 at 11:03 am #172305santanin
ParticipantThank you again for your posts and advice. It is very much appreciated.
I read more documentation and re-read your posts, and I have taken two steps so far, however I have hit a wall with what to do next.
Here is what I did:
1) Created a child theme following all instructions from the official WordPress Codex (https://codex.wordpress.org/Child_Themes), loaded the style.css file to my child theme’s directory, and successfully activated my child theme.
2) Made a copy of the parent theme’s “page.php” file and renamed it “buddypress.php” and placed it in my child theme’s directory.
For the next step, are you suggesting I only need to make some edits to the “buddypress.php” file until I achieve my desired results? I noticed in mercime’s post assisting the user in making the BP pages all have full width for my theme, that mercime recommended taking a copy of the “header.php” file and renaming it to “header-buddypress.php” as well as creating a new blank “sidebar-buddypress.php” file, and adding some code to each file. Do you think I would need to do something similar for my situation for having the right sidebar appear (versus having the pages be full width as mercime figured out?) Or would I only need to modify the one “buddypress.php” file to achieve my results?
Thank you again!
October 4, 2013 at 7:56 am #172299In reply to: Adding classes to profile fields
modemlooper
ModeratorIf you are referring to what the users see and not the admin like in your screenshot you can just target with CSS no need to use a function.
The CSS is:
#buddypress .standard-form .field_2 div.checkbox label
field_2 could be different depending on where you placed the checkboxes in the admin.
October 4, 2013 at 3:36 am #172295lucamoretto
Participantwith this plugin i can display in the user buddypress profile a list with a link of all products published by author (not a posts!) … ty 😉
October 4, 2013 at 2:08 am #172293@mercime
Participant@lucamoretto there’s a premium plugin by @svenl77 and @konrads at http://themekraft.com/store/woocommerce-buddypress-integration-wordpress-plugin/ which bridges BuddyPress and Woocommerce and does what you need.
October 4, 2013 at 1:35 am #172291In reply to: [Resolved] Custom sidebar on register page
@mercime
Participant@newo1t it all depends on what theme are you using? Have you followed instructions at https://codex.buddypress.org/theme-development/theme-compatibility-1-7/template-hierarchy/
October 4, 2013 at 1:32 am #172290@mercime
Participant@karthiksanthanam error caused by BuddyPress Virtual Gifts widget plugin. Please contact plugin author about the error.
October 4, 2013 at 1:19 am #172288In reply to: How to let users blog
@mercime
ParticipantOctober 3, 2013 at 9:35 pm #172283In 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! -
AuthorSearch Results