Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 15,651 through 15,675 (of 31,071 total)
  • Author
    Search Results
  • #131281
    @mercime
    Participant

    Your header.php pastebin url has no code pasted. You won’t need to paste index.php, page.php and re-paste header.php if this is the Minimatica theme you are referring to –> https://wordpress.org/extend/themes/minimatica
    Is it?

    #131280
    @mercime
    Participant

    @indyowls closed your other thread about same issue. Surprised that the theme devs are not providing support for their custom theme, at least to tell you if they don’t know how to do it.

    Let’s see how hard/easy it’ll be to fix alignment of BP pages for ifeature pro. Open up your ifeature theme’s header.php, copy all, and paste into pastebin.com, click submit, and post the generated URL here. Do the same for your theme’s page.php, index.php, sidebar.php and footer.php.

    @mercime
    Participant
    #131272
    @mercime
    Participant

    To start with, have you changed to bp-default theme to check out whether it’s your custom theme that’s not working with BP 1.5.4?

    @mercime
    Participant

    Need to see it. In any case, use Firebug, a Firefox add-on, to identify which style should be changed and do some experimenting online too.

    #131264
    dan77
    Member

    a solution without plugin for a private community, logged-in users only:
    I used the code of david carson described in this thread:
    https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18

    here is the code you need to paste in a bp-custom.php in you plugin directory.
    (you have to create it if you don’t have it).
    Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.


    <?php

    // **** Privacy ********
    function restrict_access(){
    global $bp, $bp_unfiltered_uri;

    // If user is not logged in and
    if (!is_user_logged_in() &&
    (
    // The current page is not register or activation
    !bp_is_register_page() &&
    !bp_is_activation_page()
    )

    ) {
    // Redirect to registration page. Change /register to your register page slug
    bp_core_redirect( get_option('home') . '/register' );
    }
    }

    add_action( 'wp', 'restrict_access', 3 );

    http://pastebin.com/rgJ6BQc8

    #131262
    dan77
    Member

    if you want complete private community I used the code of david carson described in this thread:
    https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18

    here is the code you need to paste in a bp-custom.php in you plugin directory.
    Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.

    ‘<?php

    // **** Privacy ********
    function restrict_access(){
    global $bp, $bp_unfiltered_uri;

    // If user is not logged in and
    if (!is_user_logged_in() &&
    (
    // The current page is not register or activation
    !bp_is_register_page() &&
    !bp_is_activation_page()
    )

    ) {
    // Redirect to registration page. Change /register to your register page slug
    bp_core_redirect( get_option(‘home’) . ‘/register’ );
    }
    }

    add_action( ‘wp’, ‘restrict_access’, 3 );

    http://pastebin.com/rgJ6BQc8

    @mercime
    Participant

    == I’ve put it public_html/thegreatestgift/wp-content/plugins/buddypress/bp-themes/bp-default/members/index.php ==

    Not there. You should replace the code with the sidebar you already had for members directory page per our work in the other topic. In other words, the code I posted in pastebin should be in wp-content/themes/insignio/members/index.php

    @mercime
    Participant

    You should be able to get free support for your premium theme at their forums http://cyberchimps.com/forum/pro/ifeature-pro/

    mosaicrob
    Member

    thank you for your patience with this @mercime,

    I’m confused as I just triple checked and I seem to have made all the adjustments you originally asked. I must be missing something.

    Ok here is a copy of my members/index.php:

    http://pastebin.com/JbbKJagQ

    I’ve put it public_html/thegreatestgift/wp-content/plugins/buddypress/bp-themes/bp-default/members/index.php

    The resulting page is here: http://irsu.co/thegreatestgift/members

    It still has a sidebar… I’m not sure where I’ve gone off target…. confused.

    #131173
    hkcharlie
    Participant

    @mercime thank you for your confirmation
    I dug deep and thought I had the default theme, but for some reason it wwasn’t pulling the default theme from the buddypress plugin, but a default theme from the themes folder.
    So I copied over the bp-default theme to the themes folder and it worked.

    Thank you

    #131156
    @mercime
    Participant

    @hkcharlie Activity threaded comments are working in bp-default theme. What theme are you using?

    seltee
    Member

    i insert this code in neader.

    Write error.
    Messages ( Fatal error: Call to undefined function fp_new_message_count() in /home/abicte/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/header.php on line 31

    #131128

    In reply to: Vertical Sub-menus

    @shivang, check this child theme am building out if thats what you mean http://suchworld.co.cc

    Login:demo
    pass: demo

    #131126

    hi @poxtron, yes, you can do it with css, what you need is div#sidebar {float: left ! important;} amend accordingly.

    @mercime
    Participant

    @mosaicrob If you’re still using the Insignio theme where we changed 16 template files in this thread, then yes, you can make any of them left sidebar or right sidebar or full width.

    For example, you want to make all the Groups Directory Page (groups/index.php) and Members Directory Page (members/index.php) use Full Page Layouts, instead of using the replacement codes I posted in that thread …

    At the top of those two files, change replacement to:
    `

    `

    At the bottom of those two files, change replacement to
    `

    `

    mosaicrob
    Member

    Done!

    1. Which version of WordPress are you running?
    ACTUAL VERSION FROM TODAY
    2. Did you install WordPress as a directory or subdomain install?
    SUBDOMAIN
    3. If a directory install, is it in root or in a subdirectory?
    I THINK SUBDIRECTORY
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    UPGRADE IS NO PROBLEM
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    YES IT WORKS FINE
    6. Which version of BP are you running?
    FROM TODAY
    7. Did you upgraded from a previous version of BP? If so, from which version?
    NO! I INSTALL IT
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    UMM SOME… DONT KNOW
    9. Are you using the standard BuddyPress themes or customized themes?
    CUSTOMIZED THEME; FIRST A NON BUDDYPRESS ; THEN A BUDDYPRESS THEME
    10. Have you modified the core files in any way?
    NOT THAT I KNOW; MY ADMIN UPLOAD THE LANGUAGE PACK
    11. Do you have any custom functions in bp-custom.php?
    SEE ABOVE
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    FROM TODAY
    13. Please provide a list of any errors in your server’s log files.
    SEE POST ABOVE
    14. Which company provides your hosting?
    DONT KNOW
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    I THINK WINDOWS

    #131057
    viktor89
    Member

    I don’t really know how to figure out if they’ve been loaded or not :/ Should I just read it in with my theme to be sure, or will a double load of j-crop crash things?

    #131049

    In reply to: Host: minimum memory?

    Paul Wong-Gibbs
    Keymaster

    It depends on what you have running on your site – themes, plugins, number of users, caching – and how they all interact. I would suggest 64Mb is a safe minimum, but get one that lets you go up to 96Mb+ just in case.

    #131046
    @mercime
    Participant

    – Check if you’ve enable threaded (nested) comments in your Settings > Discussions and if level is set to more than “1”

    – If the set up of your threaded comments is correct, WP 3.3.1 and BP 1.5.4 install – check your custom theme if issue is corrected. If not, contact theme developer. Change to bp-default theme and you’ll see that threaded comments are rendering as wanted.

    #131045
    @mercime
    Participant

    Remove code afer `

    ` in your header.php, It’s going to wreck the layout. You’ve got to ask theme developer where you can add that code in the custom navigation menu of the premium theme.

    More importantly, your layout is wrecked in the content area. Some styles added to your stylesheet like:
    `body.directory #content {
    margin: 0 34% 0 7.6%;
    width: 58.4% !important;
    }
    div#content .padder {
    margin-right: 351px;
    }
    etc.`
    have compounded the problem. Those styles were not there before nor is that one of the recommended additions at all.

    #131039
    yadigit
    Participant

    Yey, I found it =D this requires editing the activity/entry.php in your theme.

    right after the following code:
    `

    `
    Put in:
    `

    $(document).ready(function(){

    $(“li#activity- div.activity-comments ul”).hide();

    $(“li#activity- a.acomment-reply”).click(function(){
    if ( $(“p.collapse-“).css(“display”) == ‘none’ ){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);

    }
    return true;
    });

    $(“p.expand- a”).click(function(){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
    return false;

    });

    $(“p.collapse- a”).click(function(){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
    return false;

    });

    $(“li#activity- input[name=ac_form_submit]”).click(function(){

    if ( $(“p.collapse-“).css(“display”) == ‘none’ ){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);

    }
    return true;
    });

    });

    `
    Please NOTE:
    the “
    should go above
    `

    `
    and the “
    goes under it.

    Any question’s please contact me at
    http://www.yadigit.net..
    Username MrMike.
    It should work just find for you. =D
    Your welcome.

    #131030
    9087877
    Inactive

    1.) Are you using forums for groups, or site wide forums?
    2.) Did you make sure the discussion forums box is checked in dashboard/buddypress/components.
    3.) If you used forums for groups you have to create a group first. This can be done in the front end under groups as long as your logged in. After you created a group, then click forums and create a topic.
    4.) If your using a site wide forum you need to go to dashboard/forums/new forum and create the page and name it, then publish it. Then it will show up in the front end under your forums navigation. Just name your Topic, give it a description, and at the bottom of the screen click submit.
    5.) You may also need to create a custom menu in dashboard/appearance/menus. Create a new menu, name it, save it. Where it says Theme Locations Primary Navigation click the drop-down menu select the name of the menu you just created and click save. Below you can now select your all your pages, click the check box’s then click add to menu, and in the left you can drag them to the order you want to appear on your navigation, then save the menu. I hope this helps!

    #131021
    @mercime
    Participant

    On issue#1 – need to clear cache. Better yet, open site with another browser. Added style works.

    On issue #2, you might also want to try this plugin https://wordpress.org/extend/plugins/buddypress-profile-menu/installation/ where you’d have to add
    `

    `
    just below your wp_nav_menu in your theme’s header.php

    Caveat: you would need to manually change the div classes/ID of the menu UL/LI in the plugin’s bp-profile-menu.php file

Viewing 25 results - 15,651 through 15,675 (of 31,071 total)
Skip to toolbar