Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 11,876 through 11,900 (of 22,644 total)
  • Author
    Search Results
  • modemlooper
    Moderator

    If you want just a list of your Pages then Roger’s suggestion is easiest.

    Study this: https://codex.wordpress.org/Function_Reference/wp_list_pages

    #137355
    Roger Coathup
    Participant

    You can also try increasing your PHP memory (as indicated by the error message you’ve received)… you should then be able to run BuddyPress without problem on your site.

    There are many ways to increase PHP memory (including some specific to WordPress)… please have a Google to find those.

    Roger Coathup
    Participant

    @likeitordont

    It sounds like you want to create a directory page for all the pages on your site… is that correct?

    The BuddyPress directories only exist for BuddyPress components like groups, members, etc.

    The pages on your site are just standard WordPress pages. If you want to create a directory page that lists them all, you would need to write your own template file with a custom WP_Query loop that just returns pages, or perhaps use a WordPress API function to return all pages.

    For more information on how to do this, you should visit the documentation on WordPress: https://codex.wordpress.org/Main_Page

    #137351
    modemlooper
    Moderator

    delete the BuddyPress folder from plugins to get to admin

    #137346
    danbpfr
    Participant

    Hi Venkatesh,

    most of buddypress content is generated by wordpress. So the Media settings can give you what you need.
    That said, where do you want a video upload possibility ? And what king of videos ? Yours orfrom users, or some videotube service ?

    #137342
    Roger Coathup
    Participant

    Take a look at this — you get the information from the basic WordPress user data:

    https://wordpress.org/support/topic/user-registration-date

    Remember to replace the user ID appropriately in the function I give

    angslycke
    Participant

    I solved this by editing the database information in the bb-config.php which is located in your WordPress root folder. The web host had used a script to edit the database information automatically in wp-config.php but the old database details remained in bb-config.php. Now all of my old forum posts are visible again.

    BlinkyBill01
    Participant

    @mercime, I found something interesting…

    So I created a page called “test”. While I was creating the page, I noticed in the Page Attributes that there are three options: Default Template, BuddyPress – Activity Directory, and Sidebar Template.

    When I saved as Activity Directory, the page showed up like my members page with the sidebar under the content. When I saved as Sidebar Template, the sidebar showed up correctly like it does on the homepage. When I tried to save as Default Template, I got a 406 error.

    Is my thinking wrong that when BuddyPress created the members pages, it saved them as Default Template as it had no way of knowing that there were options for the page saves?

    The even more strange part is when I go into the BuddyPress created Members Page, I can save as Sidebar Template and BuddyPress – Activity Directory, but no matter what it’s saved at, it doesn’t change. The looks of the design stays the same. (Also, I think that the “default template” is just the Activity Directory template.)

    So, I have no clue on what to do. I can’t seem to save/change the Page Attributes of the BuddyPress created pages.

    Also, I’ve noticed that with the most recent WordPress update, I’ve been getting more and more 406 errors. Is this something I should contact my hosting company about?

    Thanks.

    Links for reference:
    http://forcedreality.net/test/ – page saved as Sidebar Template
    http://forcedreality.net/test2/ – page saved as BuddyPress – Activity Directory
    http://forcedreality.net/members/ – BuddyPress created page, maunally edited to save as Sidebar Template, which isn’t working.

    modemlooper
    Moderator
    #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
Viewing 25 results - 11,876 through 11,900 (of 22,644 total)
Skip to toolbar