Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 17,976 through 18,000 (of 31,073 total)
  • Author
    Search Results
  • #119058
    Ash Shaw
    Participant

    Thanks a lot. In our case each site on the network will be using buddypress, but they won’t be sharing posts / comments between them. Also, all of these sites are sharing a single child theme. I suppose I could add a condition to the function to whitelist only the current site id, preventing updates streaming in from any of the other sites. Will give it a shot.

    Sennza Pty Ltd
    Participant

    Thanks @modemlooper. I had been considering having to do an option like that. I’ll give that one a whirl tomorrow and see how I go.

    Hey @djpaul, yeah they all have spaces in them. All the existing users come in with spaces in their name in a First Name, Last Name kind of way. I tried changing the ‘Nickname’ and ‘Display Name publicly as’ fields in my own profile to see what would happen yesterday and that obviously doesn’t have anything to do with it as you can see here: http://edgeqld.org.au/members/Bronson%20Quick/

    I know the site was originally WordPress MU then it went to WP 3.0 then up to WP 3.2 and installed the BP theme and plugins on top of that. I didn’t have any existing users on my staging site so didn’t hit this problem til we went live….now I’m cowboy coding fixing bugs and I’m completely stuck with this one!

    #119034

    In reply to: Way to Change Groups

    @mercime
    Participant

    == but would love to see anything that didn’t require changing the theme….==
    Choice for either allowing all members or the admin only to create groups is in BP 1.5 beta 2

    == I want to be able to create a user role that has moderator access to all groups.==
    A global forum moderator role is not available in the current version of the BuddyPress forum integration at this time.

    #119032
    @mercime
    Participant

    Single WP or Multisite? BP installed in domain root or secondary blog? Linux or Windows server?

    Change to bp-default theme.
    Deactivate all plugins except BP.
    Groups are enabled in your BP Settings.
    Check root where you installed WP (domain root, subfolder or subdomain), if there’s a bb-config.php, delete it. Also, make sure you didn’t install/activate BP in a subfolder/subdomain named the same as one of BP components – i.e. shouldn’t be groups, members, forums, etc. you get the drift.

    #119018

    In reply to: Way to Change Groups

    cwhittl
    Member

    I found this for the disable normal users for creating (https://buddypress.org/community/groups/requests-feedback/forum/topic/group-administration/?topic_page=3&num=15) but would love to see anything that didn’t require changing the theme….

    Also a concept on the 2nd point. I think if I could find were the logic to allow super admins to be a group admin and add logic to allow people in certain roles to do them as well… but I’m not sure were that would be..

    kizinko
    Participant

    Ok, so I finally got the code to do something without breaking the site, but it did the opposite of what I need. It still shows the posts on the home page for the group that I’m trying to hide, but the activity stream for that group no longer shows those posts…lol. I need the home page to hide those posts and the group activity stream for that group to show it’s own posts.

    The code I used is as follows:

    It is located in the file /buddypress/bp-themes/bp-default/activity/activity-loop.php. I am guessing I’m just working in the wrong file. Can anyone help me find where I need to insert this code (if it is even right)?

    kizinko
    Participant

    Hello modemlooper,

    Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php:

    while ( bp_activities() ) : bp_the_activity();
    if(bp_get_group_name() != ‘Failed Sundays’ )
    include( locate_template( array( ‘activity/entry.php’ ), false ) )
    endif;
    endwhile;

    What am I doing wrong? Am I even in the right file?

    Sorry for being such a noob…..

    kizinko
    Participant

    Hello modemlooper,

    Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php:

    What am I doing wrong? Am I even in the right file?

    Sorry for being such a noob…..

    #118995
    kizinko
    Participant

    First thing, you need a child theme if you haven’t already created one. Doing a quick search online should find directions on how to do it if you need.

    Second, In that child theme you need a CSS file to make changes to your buddypress site’s style.

    Third, there is a buddypress file called default.css where all the default styling is set up. In many cases your CSS file and the default file will have conflicts, but not to worry…there is a solution.

    Using code from karmatosed from above, I’ve added a couple of modifications.
    a, a:link{color: #ffffff !important;}
    a:visited{color: #ffffff !important;}
    a:hover{color: #ffffff !important;}

    Hope this helps!

    alfredojp
    Participant

    @mercime i’m using the buddyboss theme. I ifgured out the problem to my first question…it was just taking out the code in the archive.php file

    @mercime
    Participant

    There’s no blog-loop.php in bp-default theme. So what theme are you using?

    #118952
    juxair
    Member

    ty for your fast reply karma

    i added it to the (my) theme style.css

    NO change ….

    if you visited my site you can see that all links are white or orange or green (link visited hoover)
    BUT they do not get accepted in BP…

    i hope you have an idea…

    ty again regards

    awe

    #118933

    In reply to: Reserving usernames

    Henry
    Member

    Thanks @modemlooper, in return i’ll try and test your mobile theme :)

    Pay it forward.

    #118931

    In reply to: custom theme

    Tammie Lister
    Moderator

    Are you using the_content or the_excerpt to show the content? the_excerpt should give you exactly that an excerpt so if using you would need to make that smaller:

    https://codex.wordpress.org/Function_Reference/the_excerpt

    Specifically useful to you would be this:


    function new_excerpt_length($length) {
    return 20;
    }
    add_filter('excerpt_length', 'new_excerpt_length');

    #118929
    Tammie Lister
    Moderator

    You appear to not have a style for the links so as a result yes it is going to default.

    Try this:


    a, a:link{
    color: #ffffff;
    }
    a:visited{
    color: #ffffff;
    }
    a:hover{
    color: #ffffff;
    }

    I listed hover and visited separately as ideally you’d show those states with a colour variation even if a slight one of #eeeeee or something.

    Put the code in your stylesheet / child theme preferably would be one to have this (don’t know what set up you are using). It should then work otherwise please post back and say where put to aid diagnosis.

    @mercime
    Participant

    Basically, the solution was to refrain from renaming divs within HTML structure in child theme of bp-default unless you know what you’re doing and make corresponding change in js where required as well. Re-upload BuddyPress and you should be good to go – unless you’re using a totally customized bp-default child theme then you need to contact theme author.

    #118916
    @mercime
    Participant
    #118910
    Tammie Lister
    Moderator

    You mean what is using activity / groups and files in it unless I’m mistaken?

    I can’t think of a quicker method than having the default theme open with child and following the path it’s fairly accessible in 1.5.

    Some links that may help you:

    https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
    https://codex.buddypress.org/theme-development/the-bp-default-theme/
    https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
    https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/

    However, if I’ve missed the mark can you give me an example of what you want to do may help me see?

    #118861
    modemlooper
    Moderator

    This could be the issue not sure but to run BuddyPress you need to have a capable theme.

    Are you running BuddyPress? I know its a silly question but people have posted on here before about WP issues.

    #118857
    kizinko
    Participant

    Yes, what wilfil said will change the link color to a darker blue, but if you want more control over how dark it will be you can replace the word “blue” in his code “a {color:blue !important;}” to a hexadecimal value.

    After doing a quick google search I found http://www.2createawebsite.com/build/hex-colors.html. Scroll down to the color box and after you select the color just copy and paste the hex value from the bottom right of that box. You will need to include the “#” along with the six digits that follow it in your code.

    Example:
    a {color:#0C19A2 !important;}

    To further explain the “!important” exclamation, it just allows you to override CSS properties already assigned to an element. In this case the color property is being overridden from the default.css blue (which has already been set by buddypress) to your newly assigned color for the “a” element.

    Hope this helps!

    #118856
    w101
    Participant

    “BuddyPress ready” – this is new to me :) Ummm… I’m just using 20 10 default that came with WordPress. If there is another can you point me to it?

    Thank you!

    #118855
    modemlooper
    Moderator

    yeah, I’m saying do not use the default themes that come with wordpress. Just to test. It shouldn’t matter but I think there have been problems with using default WP theme and children on MultiSite.

    Is your 20 11 parent theme BuddyPress ready? This could also be a problem. If you are using BP Template pack and 20 11 and then trying to use a child on top of that.

    #118854
    w101
    Participant

    btw, i’m now displaying PHP errors with display_errors = On via php.ini and all i see is the same blank white page :(

    #118852
    w101
    Participant

    Just tried with 20 10 and I have the same problem. It won’t take hold of the child theme. I just get a blank white screen.

    #118851
    modemlooper
    Moderator

    also when you get a white page it could be a php coding error in your theme

Viewing 25 results - 17,976 through 18,000 (of 31,073 total)
Skip to toolbar