Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 14,851 through 14,875 (of 32,678 total)
  • Author
    Search Results
  • dachimaster
    Participant

    Hi,
    Yes i am doing it on a live site. . Good point on compatibility , i just checked the theme, and it says its compatible with BuddyPress 1.6.1, BuddyPress 1.6, BuddyPress 1.5.3, BuddyPress 1.5.2. i’m downloaded the current version which is 1.6.4. .should that be a problem? (I’m using a theme from themeforest called detube)

    #155685
    aldereteka
    Participant

    Will someone please help a poor frustrated soul? I’m a total beginner at all things WordPress, Buddypress and even further, CSS, PHP, etc. and I think this is an easy question, I just can’t figure it out.

    I’m trying to make my child functions.php override the parent one in Buddypress 1.6.4 Default theme, but I can’t get any of it to work and it’s driving me bananas. Using the following code in the parent functions.php, I was able to change the default “wordpress@yourwebsite.com” email address but that’s obviously not sustainable as any update with wipe it clean. How do I make it work in my child theme?

    Thanks,

    Carlos

    function res_fromemail($email) {
    $wpfrom = get_option(‘admin_email’);
    return $wpfrom;
    }
    function res_fromname($email){
    $wpfrom = get_option(‘blogname’);
    return $wpfrom;
    }
    add_filter(‘wp_mail_from’, ‘res_fromemail’);
    add_filter(‘wp_mail_from_name’, ‘res_fromname’);

    #155671
    montanamind
    Participant

    I was hoping someone could help me with this problem. I have WordPress 3.5.1 and Buddypress 1.6.4. The friends tab is displaying the wrong count when looking at a users profile. I have seen this problem recorded before and have tried all of the solutions suggested but none seem to work. If anyone has any insight or suggestions I would greatly appreciate it. Thanks in advance for your help!

    Brajesh Singh
    Participant

    Are you doing it on a live site? Is your Theme BuddyPress compatible. For BuddyPress 1.6.x, the BuddyPress features are only available to BuddyPress enabled theme. In BuddyPress 1.7, BuddyPress automatically supports all themes(but 1.7 is still in beta and not recommended for live site).

    dachimaster
    Participant

    Are there any special network settings i need to authorise for buddypress to operate?

    dachimaster
    Participant

    Hi Thanks Brajesh,

    found the settings buddypress tab and clicked through. but no configuration wizard to speak off
    all i see are the tabs across saying – components (with 10 active, and 2 must use), pages, settings and forums (where i installed the configure site wide forums). . checked again in the wordpress site, and still buddy press hasn’t shown up. .

    Should i be installing buddypress 1.7 perhaps?

    Brajesh Singh
    Participant

    You will need to configure BuddyPress before it comes into action.

    Look for the notice in the Network admin. If it is not there, just click Network Admin-> Settings->BuddyPress and you should see the configuration wizard.

    Hope that helps.

    dachimaster
    Participant

    HI there,
    I’ve just set up a website as a wordpress multisite, and created a wordpress site.
    Installed buddypress and network activiated it, but can’t see any evidence of it in my wordpress site? wondering have i missed something in the installation?
    I’ve instsalled Buddypress 1.6.4 on a wordpress multisite version 3.5.1

    thanks

    Derrick

    #155650
    @mercime
    Participant

    @p2ab BuddyPress does not work on installations where you give WordPress its own directory per your link above https://codex.buddypress.org/user/before-installing/#system-and-server-requirements

    Nimenenea
    Participant

    Hi, I am using the code below found on this support page to have a new tab on the Member page. Inside it I want to display a certain post (I have the permalink) and to do that I need to transform the permalink into the post ID. In the WordPress Codex url_to_postid() does just that. But it doesn’t work on the Member page. It works like a charm everywhere else.
    Surely I am doing something wrong.

    `
    //Displaying a new tab
    function my_test_setup_nav() {
    global $bp;
    bp_core_new_nav_item( array( ‘name’ => __( ‘test’ ), ‘slug’ => ‘test’, ‘parent_url’ => $bp->loggedin_user->domain . $bp->slug . ‘/’, ‘parent_slug’ => $bp->slug, ‘screen_function’ => ‘my_profile_page_function_to_show_screen’, ‘position’ => 80 ) );
    bp_core_new_subnav_item( array( ‘name’ => __( ‘Home’ ), ‘slug’ => ‘test_sub’, ‘parent_url’ => $bp->loggedin_user->domain . $bp->slug . ‘/’, ‘parent_slug’ => $bp->slug, ‘parent_slug’ => $bp->slug, ‘screen_function’ => ‘my_profile_page_function_to_show_screen’, ‘position’ => 20, ‘item_css_id’ => ‘test_activity’ ) );
    function my_profile_page_function_to_show_screen() {
    //add title and content here – last is to call the members plugin.php template
    add_action( ‘bp_template_title’, ‘my_profile_page_function_to_show_screen_title’ );
    add_action( ‘bp_template_content’, ‘my_profile_page_function_to_show_screen_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
    }
    function my_profile_page_function_to_show_screen_title() {
    echo ‘something’;
    }
    function my_profile_page_function_to_show_screen_content() {

    //get the permalink
    $url = get_bloginfo( url ).’/’.bp_get_displayed_user_username().’/post-name/’ ;

    //transform the permalink in ID and display post
    $my_postid = url_to_postid( $url );
    $content_post = get_post($my_postid);
    $content = $content_post->post_content;
    $content = apply_filters(‘the_content’, $content);
    $content = str_replace(‘]]>’, ‘]]>’, $content);
    echo $content;
    }
    }
    add_action( ‘bp_setup_nav’, ‘my_test_setup_nav’ );`

    Everything works, I’ve tested it, the problem is with the url_to_postid() function. I am not using custom posts.

    Thank you.

    Subin
    Participant

    Wordpress: 3.5.1
    buddypress: 1.6.4

    site url: http://alchemy-tm.com/register/

    The problem is that, I can’t see any field under the “profile details” section.
    because of that my register page is not working. when i click on submit nothing happens.
    I have customized the register page to fit my custom theme. I have also tried the default buddypress theme to check if it shows there. but it doesn’t.

    i have the same setup on my local server. Where i have wordpress 3.5 and there i can see the “name(required)” filed under profile details.

    I don’t know how to solve it. Please help 🙁

    #155328
    jefigo
    Participant

    Hi,
    for me it is the same. Searching just returns posts from wordpress but nothing from BP.
    Is there a setting for BP that enables search through posts and comments from BP?

    @mercime
    Participant

    @unsalkorkmaz please note that I have edited one of your posts above. No personal remarks/attacks are allowed in this forum.

    I appreciate that you want to give users as many features as possible with your theme and I understand your frustration. Having said that, the WP Theme Review Team Admin already noted which he considered plugin territory starting here https://lists.wordpress.org/pipermail/theme-reviewers/2013-March/012183.html and more so for the TinyMCE buttons later on the thread.

    I supported you in the Author URL in the same thread. While I don’t agree with the TRT Admins 100% of the time, I support them 100% in the above-mentioned plugin-territory discussion. My unsolicited suggestion is to remove the items listed above which are considered plugin territory from your theme and create a plugin specifically for the theme e.g. Firmalite Theme Booster or Firmalite Add-ons or whatever you want. Further suggest submitting a revised theme while your theme is still up in the review queue.

    Firmalite is the 13th in theme review queue as I write this. We’ve cleared many of the backlogs the past week and there are reviewers doing some reviews this week. Know that all of the reviewers are volunteers and also know that way sometime ago the waiting time for a review was 3-4 months.

    Thank you for your patience.

    imtrevormrose
    Participant

    Fixed. It was completely my fault. I had copied and pasted a short bit of code into my functions.php file to block access to the wordpress dashboard from anyone not an admin.

    /*blocks access to the dashboard*/

    function wpse_11244_restrict_admin() {

    if (!current_user_can(‘update_core’)) {

    wp_die(__(‘You are not allowed to access this part of the site’));

    }

    }

    add_action(‘admin_init’, ‘wpse_11244_restrict_admin’, 1);

    function include_jQuery() {
    if (!is_admin()) {
    wp_enqueue_script(‘jquery’);
    }
    }
    add_action(‘init’, ‘include_jQuery’);

    #155300
    montanamind
    Participant

    I am using Buddypress 1.6.4 and WordPress 3.5.1. I seem to have an issue with my “Friends” count. When looking at the tabs of the user the “Friends” tab shows 4 users but when clicking on the tab only 2 friends are there. I have seen this brought up on a few different occasions but none of the fixes I found have taken care of the problem. I have even tried to remove the number count completely but have also not found anything that works. Any help would be greatly appreciated. Thanks!

    Laurent J.V. Dubois
    Participant

    It isn’t a people issue … it’s a key point to accept this dev. strategy. WordPress is a large framework, you have to accept the rules …
    The current wp editor will be just a plugin too, that will be better, but that’s an other point 😉

    Unsal Korkmaz
    Participant

    Naa.. Themes are easy. Esspecially with theme customizer feature. Main problem is wp repo rules [EDITED ~~~ by Mercime. No personal attacks are allowed on this site]. If you have time, you can read this discussion: https://lists.wordpress.org/pipermail/theme-reviewers/2013-March/012167.html I can simplify the problem in that discussion:  In FirmaSite 1.1.0 version, i added 2 custom tinymce button that makes easy to use special css classes. For example you can convert a link to bootstrap button with just 1 click. You can change a button’s color or size with just 1 click. You dont need to write css classes in tinymce for making your content more useful or better readability. What this tinymce plugin doing is actually simple. For example it adds “btn btn-primary” classes to <a> tag  to make it a good looking button. They closed my theme because of it. What did i do? Made user’s content creation easy…

    Btw an example of theme usage: http://resimlitarif.com/ This is a turkish food recipe website that my mom is writing 🙂 Just 1-2 little custom css code for header and custom background..

    Unsal Korkmaz
    Participant

    @mercime well.. wp theme repo admins are interesting. I dont think i can get approved anytime soon. Check this: https://themes.trac.wordpress.org/ticket/11449

    TinyMCE buttons are Plugin territory. Bam.. close theme as not approved. Now wait 1 more month. 1 month later:  “XXX is plugin territory.” bam.. 1 more month again.. Where is full review?  How can i be sure if they dont do that like 7-8 times more?

    imtrevormrose
    Participant

    Hey guys, I’m working on a client’s site, just set up a fresh install of wordpress ( ) and buddypress ( 1.6.4 )

    Everything went smoothly, integrated bbpress fairly well. But, I’ve got two test accounts going – a basic user, just registered him – he’s set as a “participant” for the forums and a “subscriber” for wordpress – I’ve tried making the account a contributor, and it still gave me no dice. Then I have the admin account that was created while installing wordpress.

    The admin account can follow other users, post status updates, and send out private messages. But the test users that’s currently a subscriber, can reply to private messages, or send them out, nor can he post status updates, favorite status updates, or comment on status updates or public messages.

    Is this an issue that’s well known, or am I the only one experiencing it?

    http://northcarolina100.com/

    #155274
    drickson
    Participant

    WordPress 3.5.1
    BuddyPress 1.7 beta

    I have successfully installed a plugin to stop the bots from auto registering users but it is not working. http://areyouahuman.com/

    I have read there support material related to BuddyPress but it is way too technical.
    http://support.areyouahuman.com/customer/portal/articles/755585-using-playthru-with-a-buddypress-registration-form-

    I would appreciate anyone who can help me stop the bots from destroying my site:
    http://homebusinessownersnetwork.com/

    Thanks,
    David

    #155225
    TheSeoGuy
    Participant

    SOLVED: the problem URL was located in the WordPress “Buddy” theme settings.

    MatthewByrom
    Participant

    Hi there, Bit of an odd question, this…

    We have a website being set up that uses BuddyPress, Buddypress Group Email Subscription & a customised plugin to allow users to create a post with some custom fields (courtesy of Gravity Forms) & for all subscribed users to receive an email in digest form or if they prefer, an email whenever someone posts to the group they are subscribed to.

    The functionality is all good for the digests etc. However, the users want to be able to see all the fields in their post – custom fields, the lot.

    I have created a function that builds the email content using SQL. I tested using a page & passing $post_id as an integer.

    However, when trying to add the functionality to the email-side of things, the point at which the post is added to the activity stream didn’t pull the custom fields from wp_postmeta. the data from wp_posts is fine, just nothing where the data from wp_postmeta should be.

    I identified that it would work flawlessly if I tried to get the PREVIOUS posts content+metadata (I just did $post_id– as a test: When I submitted a post I got the previous posts’ data, metadata & all as expected.)

    I can only conclude that wp_postmeta does have the relevant data in it when the post is added to the activity stream.

    The following sequence of events is occurring when someone hits the “Submit” button when posting:

    1. wp_posts is updated
    2. post added to activity stream
    3. wp_postmeta is updated

    If I could change the sequence of this, I’d be very happy!
    Right now I’m only really focusing on the “All Email” aspect.

    @becskr kindly suggested that I should look in bp-subscription-activity-digest.php line 444 & add a call to my functionality there using a plugin, but when I just change variable $message to “TEST” (just to see if I can affect the email content), the content of the email does not change.

    I’m just wondering if ALL Email is handled by a different function, as it sends a different type of email out, compared to a digest.

    Is there a point at which the email is generated that I may be able to intercept & add my own little function before the email is sent? Does anyone know where that function is located?

    Any advice appreciated, as always!

    Version Numbers:
    WordPress 3.5, BuddyPress 1.6.4, Group Email Subscription 3.3.1

    #155199
    wtravis
    Participant

    AHA! Found the problem. I thought I had to put bp-custom.php in the root of the BuddyPress plugin folder, but it should go in the WordPress plugins folder instead! Now it’s working!

    Somehow missed this tutorial on how to use bp-custom.php, was only guessing based on threads I’ve found here. https://codex.buddypress.org/developer/customizing/bp-custom-php/

    #155156
    eleudson
    Participant

    Hi, I resolve (ubuntu server 12.04, apache2) this problem as follow:

    1) Execute the setup wizar of BuddyPress after the plugin activate

    Tip from https://codex.buddypress.org/user/setting-up-a-new-installation/installation-wizard/

    2) Move the plugins\buddypress\bp-themes to wp-content/themes and set the pretty permalink. I’am using the month + name.

    Tip from http://wpmu.org/buddypress-now-supports-wordpress-single-user-no-wpmu-required/

    3) Set the Apache2 mod_rewrite with

    # sudo a2enmod rewrite

    and change the option AllowOverride of None to all in the file /etc/apache2/sites-avaliable/default

    …
    `
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all`
    …

    Tip from http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/

    #155146

    In reply to: BP errors…

    shanebp
    Moderator

    That’s not a BuddyPress error.
    It’s an error from the elvito-bp plugin.

    You might try asking the plugin author:
    https://wordpress.org/support/plugin/elvito-bp

    I suggest you ask them to read this:
    https://codex.buddypress.org/developer/plugin-development/checking-buddypress-is-active/

    Also – imo – that plugin is lacking basic security.

Viewing 25 results - 14,851 through 14,875 (of 32,678 total)
Skip to toolbar