Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 11,901 through 11,925 (of 22,660 total)
  • Author
    Search Results
  • #137314
    @mercime
    Participant

    @matax91 are you using PHP 5.4 by any chance? Then check out if solution provided in following link works out for you https://buddypress.trac.wordpress.org/ticket/4191

    #137313
    chrfriis
    Member

    Hello Mercime,

    Thanks for your input. As I stressed, I was trying to give constructive criticism. I meant no harm!

    I work with DVD/BD authoring, and FCP editing – this is where I can help out others (and I do. Also very generously. And I do know all about the way forums work :-) ). In this area I’m relying on others, and as our support guy was out of reach, I had a very critical breakdown situation on my hands yesterday.

    It didn’t make sense to me, that Roger spent time writing that I shouldn’t make identical threads, without at least – in the same post? – writing a line in response to me having followed his original advice. Anyone could probably tell that this double thread was a desperate action on my behalf, for which I apologized promptly.

    I’ve been very careful trying to describe what I have on my hands here – If you read my first post, you’ll see that I can’t access the admin panel (so I CAN’T change to default theme!). And if you read the posts after Rogers input, you’ll see that deleting the buddypress plugin didnt help – in other words I still cant access my admin panel. And the entire wordpress site is down.

    I respect everyones time! I value (very highly!) what I get from any forum! And I give knowledge back (in my field of expertise)! In this case it seems that because I offended someone, I was excluded. Everyone makes mistakes. I was corrected. And I stated my opinion about forum behaviour.

    I’m in over my head. And getting more frustrated by this forum. I thank you for your time – I do appreciate your help. But I’m gonna have to wait for my support guy to return. Thanks.

    #137309
    abbersbolton
    Participant

    Ok it does give help on the knowledge base about a rewrite script. I don’t exactly understand what I’m rewriting as I’m a bit of a newbie to it all – is the modrewrite script important?

    It tells me to create a file called rewrite.script in the web folder and enter my code and it shows this:
    `#Zeus webserver version of basic WordPress mod_rewrite rules
    map path into SCRATCH:path from %{URL}
    look for file at %{SCRATCH:path}
    if exists then goto END
    look for dir at %{SCRATCH:path}
    if exists then goto END
    ##### FIX FOR LOGIN/FORGOTTEN PASSWORD/ADMIN ETC #####
    match URL into $ with ^/wp-.*$
    if matched then goto END
    ##### FIX TO ALLOW SEARCH TO WORK #####
    match URL into $ with ^/(.*)
    set URL = /index.php/$1`

    Do you know if I simply copy this code or am I supposed to modify it for myself?

    #137304
    @mercime
    Participant

    @chrfriis Know that all of us helping out in the forums are unpaid volunteers living in different time zones and under no obligation to follow up with or respond to a question. In other words, we have lives outside of BuddyPress and WordPress. Roger has always been generous with his time in helping out in these forums. And if the suggestions given you didn’t work, then you should take the initiative to find out other solutions yourself.

    Change to default theme, then when you can access wp-admin, change back to your customized theme. Roger mentioned this above but you haven’t posted whether you’ve done it or not.

    modemlooper
    Moderator
    #137302
    shanebp
    Moderator

    Is your server using apache?
    Do you have an .htaccess file ? (look in the directory where you keep wp-config,php )
    If so, it should look something like this:

    `

    order allow,deny
    deny from all

    # BEGIN WordPress

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    # END WordPress
    `

    EyeMagicGraphics
    Participant

    Have you tried “Conditional Logic” (https://codex.wordpress.org/Conditional_Tags)? There’s also a “Dynamic Widgets” plugin (https://wordpress.org/extend/plugins/search.php?q=Dynamic+Widgets) I’ve found that works well!

    #137289
    @mercime
    Participant

    Post authors are stored in wp_posts table. See https://codex.wordpress.org/Database_Description#Table_Overview
    For support regarding this matter, please post at https://wordpress.org/support/forum/how-to-and-troubleshooting

    #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 ?

Viewing 25 results - 11,901 through 11,925 (of 22,660 total)
Skip to toolbar