Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 14,376 through 14,400 (of 31,072 total)
  • Author
    Search Results
  • #136522
    Paul Wong-Gibbs
    Keymaster

    Yes, there have been changes to the theme in 1.6. If I recall, they’re pretty minor. I’ll make sure we details what’s new once we get a changelog written up.

    #136517
    polle001
    Member

    If anyone has this problem, the fix for me was removing the wordpress RewriteEngine from htaccess.

    `# BEGIN WordPress

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

    # END WordPress`

    After removing that, it started working.

    #136516
    Jamiethecomic
    Participant

    I have another problem. Everything is now fine. All pages are responsive and the layouts are fine.

    But my forums look unattractive. The sub forum menus are fine and the topics are fine but the main forum menu looks terrible. http://www.caiminds.com/forums

    Any suggestions?

    #136499
    Mathieu Viet
    Moderator

    Hello,

    You can try to add this in the functions.php of your active theme :

    function henry_restrict_access_admin_panel(){
    global $current_user;
    get_currentuserinfo();
    if ( $current_user->user_level <  1 ) {
    
    $redirect = bp_core_get_user_domain( $current_user->ID );
    
    wp_redirect( $redirect );
    exit;
    }
    }
    add_action('admin_init', 'henry_restrict_access_admin_panel', 1);

    BTW – I really appreciate your help! Thank you!

    OK – dumb question but where are the 6 Clean BP folders?

    I’ve looked within the BP zip and they’re not there. When I uploaded the BP Comp. pack (https://wordpress.org/extend/plugins/bp-template-pack/) it actually skipped over step two automatically.

    Where do I go to see them?

    Roger Coathup
    Participant

    Have a look at the member-header.php file in bp-default theme. It documents how to add fields.

    Follow those instructions to add them in the member-header equivalent in your child or standalone theme… or add them in an action hooked on to bp_profile_header_meta

    #136490
    coreymj78
    Member

    Here is the error message that appears where the broken image is:

    Warning: getimagesize() expects parameter 1 to be string, object given in /home/coreymj7/public_html/wp-content/themes/parallelus-mingle/framework/utilities/media-functions.php on line 152

    Warning: basename() expects parameter 1 to be string, object given in /home/coreymj7/public_html/wp-content/themes/parallelus-mingle/framework/utilities/media-functions.php on line 153

    Here is the function and parameter $new_img_paththat is having trouble on that post:

    $new_img_size = getimagesize( $new_img_path );
    $new_img = str_replace( basename( $image_src[0] ), basename( $new_img_path ), $image_src[0] );

    Here is the post where the error appears:

    http://flooringlifemagazine.com/flooring-your-life

    Basically this means that the function getimagesize and basename used for resizing images get stuck when trying to fetch the image path via $new_img_path.

    At least that is what I’m guessing. What could cause this?

    #136489
    coreymj78
    Member

    Ok, I even checked the GUID of the post Attachment and it is also pointing to the correct path:

    http://flooringlifemagazine.com/wp-content/blogs.dir/2/files/room1.jpg

    So why is it not showing up on the front-end and why is BP unable to load the images as well?

    Here is the post:

    http://flooringlifemagazine.com/flooring-your-life

    Now I am seeing an error show up on the page as well saying something about “expecting parameter 1 to be string” and refers to one of my theme files, which again, nothing changed with my theme either, I just backed up everything as it was and restored them on my new VPS.

    #136461
    Tammie Lister
    Moderator

    In theory you can use any theme but you’d have to use the template pack https://wordpress.org/extend/plugins/bp-template-pack/ to add the files you need which is what that link valuser supplied does. To be honest, it’s going to take some work / adjusting it’s a case of not knowing how much until you do it really.

    If you are not comfortable with doing this then I’d personally recommend you also have a look at some BuddyPress themes. You can purchase themes for BuddyPress with all the support and bells and whistles of WordPress ones so perhaps that would be an option. There are also a number of very feature full and robust free themes for BuddyPress. https://buddypress.org/extend/themes/

    #136460
    valuser
    Participant

    see https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    There are great volunteers on this forum. When they have the time, I am sure they will assist you.

    #136455
    Paul Wong-Gibbs
    Keymaster

    1) Disable user registration in WordPress, and create user accounts manually via the wp-admin screens.

    2) This is default WordPress multisite behaviour.

    3) You will need some kind of front-end posting form for your theme(s).

    #136446
    loribella
    Member

    Also, I can’t find a way to order my pages, i.e., set some up to show or not show in navigation, set some up as sub pages of other pages, etc. Where do I do this?

    #136401

    In reply to: BP Columns child

    rprentice
    Member

    How would I go about getting a 3 column template with this theme?

    #136398
    modemlooper
    Moderator

    You need to ask about this in theme’s support forum http://www.studiopress.com/support/

    #136396
    modemlooper
    Moderator

    I do not give support for added plugins. I do not test with any added BuddyPress plugins unless explicitly stated. Your best bet is to remove the add actions from the mobile theme where the added plugins are placing code to strip your site down to bare essentials. This is generally a good idea for mobile UX.

    The next version of the plugin will not allow added plugins to be used unless I make sure they work. This will be to avoid posts like this. I can’t support every iteration of site that BuddyPress wills. Having individual sites is great but that is because BuddyPress plugin developers are creating plugins for BP. No one as of yet has contacted me to say they want to add the mobilized version of their plugin to support BP mobile. That being said i’m making it so BP plugin devs can add the mobile template files themselves to their plugin. It’s a win for you and me as I won’t have to support every plugin my self.

    #136395
    Roger Coathup
    Participant

    Switch to the bp-default theme, deactivate your plugins – reactivate each one individually and test after each one to isolate the problem

    #136394

    In reply to: BP Columns child

    modemlooper
    Moderator

    No. child themes do not work like that. BP columns is a bp-deafult child theme

    #136383
    Jamiethecomic
    Participant

    Hey! Sorry for the long reply but I’ve been WAY TOO BUSY lately!

    Thanks very much! It worked and your easy to ready instructions made it go so smoothly!

    Thanks! Now I just need to work out how to effect the layout of a buddypress forum and my site is SET! :D

    #136380
    Mathieu Viet
    Moderator

    Ok, to set new fields for your members you should read the paragraph ‘Optional: Set Profile Fields’ of this tutorial
    http://wpmu.org/the-illustrated-guide-to-installing-and-setting-up-buddypress-1-5/

    if you mean login in with email, then you can try this interesting plugin https://wordpress.org/extend/plugins/wp-email-login/

    then you can add a function in the functions.php file of your active theme to change the label of the sidebar login form :

    add_action('bp_after_sidebar_login_form', 'bp_login_by_email_adapt_login_form');
    
    function bp_login_by_email_adapt_login_form() {
    ?>
    
    jQuery(document).ready(function($){
    usernameoremail = $("#sidebar-user-login").parent().html().replace(/Username/ig, 'Username or email' );
    $("#sidebar-user-login").parent().html(usernameoremail);
    });
    
    <?php
    }

    or if you’re using a child theme of BP-default theme, you can add/edit the template sidebar.php and replace the label for=sidebar-user-login by Username or email.

    #136372
    Mathieu Viet
    Moderator

    hi @enderpal444

    I think i would use BP members loop to do what you want to do as you can send meta_key to BP_Core_User::get_users. Then i would take benefit of the filters included in the 2 sql to change its behavior. This is what i’ve tried to add a filtering by geo position to the main BP Members directory. I guess you’ll need to ask Roger and Paul about efficiency…

    in the functions.php of my active theme > http://pastebin.com/2HKsSZCc

    i tried to have a ‘one pass’ approach ;)

    #136370
    Roger Coathup
    Participant

    It’s a custom sign up form on a bespoke page; it’s not based on the register.php file that you find in the bp-default theme.

    In the backend, we also unhook / hook in a number of custom functions to process sign ups – including auto logins, assignment of user meta data, and sending custom welcome emails.

    #136369
    richardpd
    Member

    Mercime-many thanks again for your reply.
    I still cannot get the hang of running BuddyPress group & sitewide forums together on my blog.
    So for now I have disabled BuddyPress Group forums and am using bbPress forums. I even made a child theme of my BuddyPress enabled WP theme anIMass and use bbPress 2010 forum style with it-see my post today on my blog at http://richard-dickinson.com/2012/06/25/buddypress-and-bbpress-blog-update/

    I will keep trying with BuddyPress but for the moment am using bbPress forum! Many thanks

    #136367
    foobool
    Member

    I put your code in functions.php my themes, but nothing changes: (Example above.

    #136366
    foobool
    Member

    <?php

    add_filter(‘show_admin_bar’, ‘__return_false’);
    /**
    * BP-Default theme functions and definitions
    *
    * Sets up the theme and provides some helper functions. Some helper functions
    * are used in the theme as custom template tags. Others are attached to action and
    * filter hooks in WordPress and BuddyPress to change core functionality.

Viewing 25 results - 14,376 through 14,400 (of 31,072 total)
Skip to toolbar