Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,076 through 22,100 (of 32,562 total)
  • Author
    Search Results
  • #100078
    Ekine
    Participant

    I also use firebug a lot but I can’t seem to find the corresponding css style.
    Edit: Okay, I have found it using Chrome developer tools. It is this line:
    “.subcontentpost { margin-bottom: 15px;}”

    #100076
    @mercime
    Participant

    BP Codex is your friend. Disable the custom header functionality on the default BuddyPress theme … add the following to your wp-config.php file:
    `define( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’, true );`

    #100066
    anindyaray
    Member

    thanks @mercime
    actually I was using this .

    and it was creating the problem , now after I removed this line , its all ok ….

    but the other problem I mentioned about unable to change the default-header.jpg image from the default.css #header , it still persist …

    can you please show me some light ?

    #100053
    stoi2m1
    Participant

    Your best bet is to modify the css for the theme. I use Fifefox with the plugin Firebug. This allows you to highlight different sections of the site and see its styling and modify till you get things right and then apply that to your actual code.

    Your problem is not buddypress related and is better suited in a html/css forum.

    #100038
    @mercime
    Participant

    The code for the BP login form can be found from line 40 to line 52 here. Adjust divs and format to taste.

    #100027
    Daniella
    Member

    Another problem is in the email for pending requests it says,
    “To view all of your pending friendship requests: http://cornhill.org/cornhillbeta/members/ellaj/friends/requests/” but that link redirects to the home page.
    A lot of blood, sweat and tears went into this site and I am leery of deactivating that theme. Will it be ok?

    #100022
    Boone Gorges
    Keymaster

    Try switching to the BuddyPress Default theme for testing. Try sending some friend requests. If it works, then the theme is the problem, and you’ll have to get in touch with WPMUDev.

    If it still doesn’t work, please provide some more info about your setup. Are you using any other plugins?

    #100018

    Double-checked: I already had permalinks set to yr/mo/day/name; changed theme to bp-default, and all components are enabled. No change, still says page not found when attempting to go to group or forum pages from main page.

    #100017
    @mercime
    Participant

    – change permalinks in settings to something other than default – https://codex.buddypress.org/getting-started/before-installing/#wp-configuration
    – then change theme to bp-default theme
    – configure BP Components – https://codex.buddypress.org/getting-started/configure-buddypress-components/

    #100015
    @mercime
    Participant

    @AnindyaRay I see that you’ve found a header parallax tutorial. The thing is, since you’re on localhost, it’s not as easy to ID the exact corrections which would give you a fix for what’s there in the image you uploaded. That being said, my stab in the dark is adding the following style to your child theme’s stylesheet
    `body {
    max-width: change to 960px;
    }`
    which will override the parent theme’s max-width of 1250px

    If that doesn’t work, install the Firefox add http://getfirebug.com/ to find styling fix

    #100012
    luvs
    Member

    @hnla, the files are already there, and the code is already there.

    AAARRRRG. :(

    @mercime, thanks, but I like the real arras theme :)

    P.S, I have another problem lurking in the shadows….. I cannot ban members from groups. (kick and ban) “There was an error when banning the user”

    If anything could go wrong, it will! :)

    #100010
    @mercime
    Participant

    @luvs123 Not sure where you are in getting Arras theme compatible with BuddyPress. But you might want to look at this Arras Child theme with BuddyPress templates installed and configured – http://durkkooistra.com/brownbuddy/
    You might want to style the fonts smaller in the sidebar, but that’s not a deal-breaker :-)
    Good luck.

    #100004
    Hugo Ashmore
    Participant

    The javascript main file ‘global.js and also the ajax file are both included and enqueued from the main functions file in bp-default so I don’t really know why it isn’t working for you other than your child theme isn’t correctly referencing bp-default and that might be the fault of the custom theme?

    you could try adding:
    `
    // Load the AJAX functions for the theme
    require_once( TEMPLATEPATH . ‘/_inc/ajax.php’ );

    // Load the javascript for the theme
    wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array( ‘jquery’ ) );
    `
    to your functions file in child theme and copying over the two files into ‘_inc’ folder of child theme and see if that works.

    #100000
    luvs
    Member

    What file?

    @hnla?

    aendrew
    Member

    Hi Roger! Thanks for the response.

    I’m running the same version of WP and BP on both servers; field IDs are the same. I cannot replicate the issue on the testing server; I’m presently thinking it might be a PHP version issue.

    I thought at one point it might be related to https://trac.buddypress.org/ticket/2171, but moving the custom profile field code to after the functions mentioned doesn’t do anything either…

    Something else I forgot to mention — the “add friend” button now appears twice. Also, I don’t think it’s an issue with my theme — I tried switching to the BP default theme and adding a profile field during the members-loop and had the same issue.

    #99976
    Hugo Ashmore
    Participant

    Have you tried to install it? Are there specific issues that have arisen?

    There is some issue at present with this plugin whereby the original author is, I think. in dispute with another that he claims has copied his code and released thus the download for the original hasn’t been available, so not sure what version you have or whether this issue has been resolved.

    Hugo Ashmore
    Participant

    @pcwriter go for it, it’s there to be used if it suits the purpose. – API keys were always a pain :)

    @leguis08 Glad it works.

    @gunju2221 It is very possibly a custom theme issue, a custom theme will have to have ensured that the correct action hooks exist in pages as the main maps are fed through to the page via these, you could test with the widget instead which was provided really so that site admins could place the map in more refined custom widitised areas of the members profile pages if they existed.

    When writing something like this you can only account for that which is known thus the included stylesheet is there simply to try and style the map if it’s dropped into bp-default, therefore those styles may not have relevance to a custom theme, especially where that theme may be heavily modified, however the basic styles are worked on elements and element id’s/classes that should exist in any theme.

    The other aspect of course is that you must have created that extended profile field and named it ‘location’ and existing users will then need to actually edit their profile to add an address or partial address for the map to display, if a user hasn’t filled this item in then the map does not display at all.

    #99959
    anindyaray
    Member

    thank for the suggestion but I actually want a solution for these problem, later will be thinking about supporting browsers …
    is there anybody to actually provide some help in these issue ?
    I’m testing this in localhost ..

    #99958
    Mike
    Participant

    Definitely try the basics of narrowing down the root of your problem. First, I’d probably download the maintenance mode plugin and let all your users know beforehand that you’ll be doing some testing in the wee hours of the late night. Then, deactivate all your plugins. Run the Default BP theme that shipping with your BP plugin, and update BP, too, if you’re not running the latest version. If everything works — registrations/postings/uploads/etc., you’ll know that it’s a plugin(s). To figure out which one(s) is the culprit, activate one by one and keep testing one by one — very labor/time intensive, but that’s usually how troubleshooting goes. Most likely, you’ll be able to figure out what’s wrong and contact the plugin developer for some pointers =)

    #99954
    pcwriter
    Participant

    @maui1

    The adminbar is triggered by the call to wp_footer. So make sure that call is present in your theme.

    #99953
    maui1
    Member

    Hi,

    Thanks for the CSS solution to the admin menu migrating to the bottom in a stretched out hierarchy. While this polishes up my site, but I would really like the admin menu at the top the way it is supposed to be. I have the Executive theme and other than the admin menu I am having a good time working with it.

    Virtuali
    Participant

    I tried the plugin, although it does not show up in the profile?

    Must be because I am using custom theme

    #99945
    Virtuali
    Participant

    Sounds like you need to add the JS into the file in your theme.

    pcwriter
    Participant

    @hnla

    Goody! I’d like to incorporate this into my new theme framework (coming along nicely…). That is, if you don’t mind credit and some link love ;-)
    I couldn’t figure out how to do it without the key but, now it looks doable. Thanks a bunch!

    #99930
    luvs
    Member

    @hnla,really, the only thing wrong is the “@% is a unique identifier for % that you can type into any message on this site. % will be sent a notification and a link to your message any time you use it.”

    All I need to know is how to get that working.

    Thanks so much! :)

Viewing 25 results - 22,076 through 22,100 (of 32,562 total)
Skip to toolbar