Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 11,851 through 11,875 (of 22,602 total)
  • Author
    Search Results
  • #137284
    Gyoo
    Member

    Just before I read this, I changed my theme to the final one I’ll use (Arras Theme with the Classical Gamer child theme : http://arrastheme.com/ )
    Your second solution worked well, but now I have an empty bar as wide as the admin bar just under the real admin bar, here is a pic :
    http://puu.sh/IhLa
    It’s just the top of the page, I think it’s clear enough :)

    In any way, thank you for your solutions and explanations. I can’t wait for BP 1.6, I may even test the 1.6 beta to see how it’s integrated, I’m very interested by this :)

    #137281
    @mercime
    Participant

    @sobuddy you just add the WP template tag to show the time https://codex.wordpress.org/Template_Tags/the_time e.g. “

    #137256
    danbpfr
    Participant

    Hello,

    for 1.5.x versions of BP you can add this piece of code in your wp-config.php
    `define( ‘BP_USE_WP_ADMIN_BAR’, true );`
    or add these function to your theme functions.php file if the above doesn’t work.
    `function remove_bp_adminbar(){
    remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );
    remove_action( ‘admin_footer’, ‘bp_core_admin_bar’);
    show_admin_bar(true);
    }
    add_action(‘after_setup_theme’,’remove_bp_adminbar’);
    ?>`

    or you may wait for BP 1.6 where BP’s adminbar will be integrated in WP’s one.

    #137236
    Tammie Lister
    Moderator

    The default theme uses https://codex.wordpress.org/Function_Reference/get_the_date so that would be a good spot for starting to modify that. It uses your set date and time format in WordPress under settings so you can modify that there and it will reflect on the theme.

    “Default: the date_format option (‘Date Format’ on Settings > General panel)”

    #137229
    Gyoo
    Member

    I read everything but haven’t found a clue…
    Any help please ?

    #137203
    angslycke
    Participant

    I’m also looking for a solution to this problem, which seems to involve a lot of different plugins and tweaking as you said. Haven’t heard anything about this being a part of BuddyPress core anytime in the near future unforunately. It should probably be a part of WordPress core in that case since BP uses WP:s user functions.

    #137192
    Gyoo
    Member

    @mercime Thank you for your answer, but by reading what you linked me, I noticed that I was totally wrong on the words I used : I wasn’t talking about the “widget sidebar”, but of the “admin bar” that is on top of the page. On buddypress’ website, I see the WP admin bar, and that’s what I want to have on my own site.
    Then, the answer may be in what you linked, I’ll re-read it to see if I find an answer, but even if I mentioned the Admired theme, I think I’ll get the same “trouble” with any theme (I hope I’ll be understood XD)

    #137189
    @mercime
    Participant
    #137179
    @mercime
    Participant

    @jomjom No wonder the instructions for compatibility for instyle theme last year was not working for you, the code from instyle’s page.php from last year has changed a lot (see http://pastebin.com/1PcjiXK9 from original poster)

    Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your instyle theme folder in server during the compatibility process.

    Since you’ve revised the BP template files, replace all of them for a clean slate by deleting the 6 BP folders transferred to your theme’s folder in server during the compatibility process -> /activity, /blogs, /forums, /groups, /members, and /registration – then re-run dashboard Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <?php if (get_option('instyle_integration_single_top') ” && get_option(‘instyle_integrate_singletop_enable’) == ‘on’) echo(get_option(‘instyle_integration_single_top’)); ?>

    `

    Save files.

    #137167

    In reply to: front page

    Tammie Lister
    Moderator

    You can do a user check in the template file if you want using this: https://codex.wordpress.org/Function_Reference/is_user_logged_in

    Maybe that would be a good starting point for you?

    Adding a sidebar would require you to change the width of the content div and then also add in another get_sidebar call. https://buddypress.org/community/groups/creating-extending/forum/topic/buddypress-default-theme-12-add-more-sidebar-column/ is a good starting point.

    As for changing the header – do you just want to change the header or the entire content area as it’s set to the full width of the site?

    #137156
    Roger Coathup
    Participant

    I take it you used a developer to develop the code to auto generate the usernames from the email address… what does the developer say about this problem?

    On the face of it, it looks like they are applying some hashing algorithm to the email address to generate the username.

    Love it or like it, you should be aware that usernames in addition to email addresses are a fairly fundamental feature of WordPress — attempting to bypass the need for both can lead to issues, e.g. using a raw email address for username, would lead to strange urls for the member profile pages in BuddyPress.

    #137139

    In reply to: Play around!

    Hugo Ashmore
    Participant

    @newpress why on earth have you posted this site here? This is a forum for Buddypress this app you are trying to promote is not even WordPress based, and thus entirely inappropriate to posts here, please do not do so again.

    If you do not want people messing around too much then really you should think about posting an admin loggin on a public forum. I feel you haven’t learnt much from the other post where you blindly downloaded a script and uploaded to your live site? If your Host is troubled then it is firmly your responsibility and you must think about that before leaving links like this.

    I am removing the link as not appropriate to this forum.

    #137123
    @mercime
    Participant

    @dailyblog https://wordpress.org/extend/plugins/gd-bbpress-attachments/ for bbPress 2.+ plugin aka Sitewide Forums.

    There’s no updated plugin for the BP Group Forums.

    @mercime
    Participant

    @lakhlu late as this may be … Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your collection theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <div id="post-” >

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `, AND move tag and title to above `

    `. Just watch out when you do this in the /activity/index.php page.

    Save files.

    sindbad_chen
    Member

    I have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
    On click Finish and I get the below error:
    Warning: Illegal offset type in D:AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
    Any ideas / suggestions ?

    #137106
    sindbad_chen
    Member

    I have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
    On click Finish and I get the below error:
    Warning: Illegal offset type in D:AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
    Any ideas / suggestions ?

    #137105
    sindbad_chen
    Member

    I have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
    On click Finish and I get the below error:
    Warning: Illegal offset type in D:AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
    Any ideas / suggestions ?

    Roger Coathup
    Participant

    For questions 2 and 3 — yes, you can customise these aspects of your site — there are many ways of doing it, and to some extent it depends on the approach you take to developing your site’s theme.

    You can remove tabs, and add new tabs through the BuddyPress API
    You can also remove them by developing your own custom template files (and similarly for the avatar sizes)

    If you look on the showcase tab on this site, or visit bpinspire.com for more up to date examples, you can get a feel for what you can achieve based on BuddyPress.

    Much the same as a WordPress site doesn’t have to follow the basic blog structure, similarly a BuddyPress site doesn’t have to follow the generic bp-default theme structure and UX.

    #137090
    alex35
    Member

    Hi, I have the same exact problem!
    This is what I get in my PHP log file:

    `[10-Jul-2012 19:39:48] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 77824 bytes) in /var/www/wordpress/wp-admin/includes/upgrade.php on line 1559
    [10-Jul-2012 19:39:48] PHP Stack trace:
    [10-Jul-2012 19:39:48] PHP 1. {main}() /var/www/wordpress/wp-admin/admin.php:0
    [10-Jul-2012 19:39:48] PHP 2. require() /var/www/wordpress/wp-admin/admin.php:106
    [10-Jul-2012 19:39:48] PHP 3. require_once() /var/www/wordpress/wp-admin/menu.php:233
    [10-Jul-2012 19:39:48] PHP 4. do_action() /var/www/wordpress/wp-admin/includes/menu.php:97
    [10-Jul-2012 19:39:48] PHP 5. call_user_func_array() /var/www/wordpress/wp-includes/plugin.php:403
    [10-Jul-2012 19:39:48] PHP 6. bp_core_setup_wizard_init() /var/www/wordpress/wp-includes/plugin.php:0
    [10-Jul-2012 19:39:48] PHP 7. BP_Core_Setup_Wizard->__construct() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:1103
    [10-Jul-2012 19:39:48] PHP 8. BP_Core_Setup_Wizard->save() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:45
    [10-Jul-2012 19:39:48] PHP 9. BP_Core_Setup_Wizard->step_db_update_save() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:103
    [10-Jul-2012 19:39:48] PHP 10. bp_core_install() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:771
    [10-Jul-2012 19:39:48] PHP 11. bp_core_install_notifications() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-update.php:1116
    [10-Jul-2012 19:39:48] PHP 12. bp_core_set_charset() /var/www/wordpress/wp-content/plugins/buddypress/bp-core/admin/bp-core-schema.php:20`

    Please help me! How can I fix this issue?

    #137091
    digibluez
    Member

    go to your current themes directory, open up functions.php
    add
    `
    register_sidebar(array(
    ‘name’ => __( ‘Sidebar2’ ),
    ‘id’ => ‘sidebar2’,
    ‘description’ => __( ‘Widgets in this area will be shown on sidebar2.’ ,’buddypress’ ),
    ‘before_widget’ => ‘

    ‘,
    ‘before_title’ => ‘

    ‘,
    ‘after_title’ => ‘


    ));

    Open up sidebar.php
    add after

    `
    go to wp-admin and add widgets in sidebar2, done
    you have to change the theme styles and html yourself though to make it work.

    for comments search the codex plugins db
    https://wordpress.org/extend/plugins/tags/comments
    that dose the job.

    Hello, sorry for the time it takes to answer. I was moving my wordpress server.

    I made the adjustments you suggested, but it shows these errors:

    In the header:
    http://www.sinaloagay.mx/members/admin/

    Parse error: syntax error, unexpected $ end in / home/content/99/9335499/html/SINALOAG-MX/wp-content/themes/metrolo/header-buddypress.php on line 201

    In the post:
    http://www.sinaloagay.mx/llama-pena-nieto-a-la-unidad-y-reitera-respeto-a-la-diversidad/

    Warning: Missing argument 2 for bp_modify_page_title () in / home/content/99/9335499/html/SINALOAG-MX/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 277

    Warning: Missing argument 3 for bp_modify_page_title () in / home/content/99/9335499/html/SINALOAG-MX/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 277

    #137078
    Roger Coathup
    Participant

    It’s sounds you need a developer to work on your general site build, rather than having specific BuddyPress questions.

    You can hire a developer by posting here: http://jobs.wordpress.net
    You can also try posting on the jobs board on this site: https://buddypress.org/community/groups/bp-jobs-board/

    #137075

    In reply to: How to disable this?

    modemlooper
    Moderator

    Do not ever download scripts that are not hosted on WordPress.org or at least have a good following and are well known. I even test plugins on a separate install before using live.

    #137070

    In reply to: How to disable this?

    meg@info
    Participant

    Hi @Hugo, you can check the plugin please, i hav’nt time to add it to wordpress repo.

    and you Mr @newpress, don’t throw accusations around like that ;).

    kraigg
    Participant

    Sorry, I’ve tried using bbPress 2.1, but it is not integrating well with my group forums and Buddypress 1.5 in general.

    What I’ve found:
    – Buddypress activity stream not updating when making bbPress forum posts
    – Creating a ‘new topic’ in bbPress doesn’t always work. Sometimes I get an error message that no forums exist for a particular group, but doesn’t give me the option of creating a new forum topic from the front-end. I have to go into the WordPress backend to create new topics.

    How I installed it:
    – Disable ‘Discussion Forums’ component from Buddypress setup
    – Uninstall ‘Group Forums’ from Buddypress forum setup
    – Delete the WordPress page (“My group forums”) I previously created and linked to Buddypress discussion forum to
    – Install bbPress 2.1 and activate

    Can you let me know if this looks correct?

Viewing 25 results - 11,851 through 11,875 (of 22,602 total)
Skip to toolbar