Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,901 through 22,925 (of 32,561 total)
  • Author
    Search Results
  • #94452
    Tao JIN
    Participant

    yes, all of this seems right.

    I use the WP 3.0.1
    and add
    define( ‘MULTISITE’, true );
    define( ‘SUBDOMAIN_INSTALL’, true );
    $base = ‘/’;
    define( ‘DOMAIN_CURRENT_SITE’, ‘usenode.com’ );
    define( ‘PATH_CURRENT_SITE’, ‘/’ );
    define( ‘SITE_ID_CURRENT_SITE’, 1 );
    define( ‘BLOG_ID_CURRENT_SITE’, 1 );

    also DNS wild card entry allowed.

    Now, I signup , only the user was created, no new blog create, even I input the blog ‘s sub-domain.

    But, when I remove the buddypress, use the default theme of WP 3.0.1, it works, I can create the use with new blog.

    #94413
    Bowe
    Participant

    Hi guys,

    I would like to let everyone know that the demo is now available here: http://bp-tricks.com/demo/
    If you have any pre-sale questions you can ask them here: http://bp-tricks.com/themes/pre-sales-questions/forum/,

    It’s what they call a soft launch, the actual Tips and Tricks community is launching as soon as possible :-) You can start submitting your Tricks if you want on http://bp-tricks.com/submit-a-trick.

    That’s it for now :)

    #94400

    In reply to: blog sturcture

    r-a-y
    Keymaster

    Hi @tubruk,

    From what you typed, I can’t really confirm what it is you want to do.

    Sounds more like a theme issue, you might want to check modemlooper’s BP Columns theme for hints on how to structure the page into 3 columns:
    https://wordpress.org/extend/themes/bp-columns

    #94392
    nathan12343
    Participant

    I’m not sure why this still isn’t possible – in the default theme the image seems to be hard coded to read 150×150 but there is plenty of space all around it. It would be great if anyone could tell me where I could change the dimensions. Stretching the image through css would probably look bad.

    Thanks

    #94381

    require( ‘./wp-load.php’ );
    require( ‘./wp-blog-header.php’ );
    require($_SERVER . “/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php”);

    These are the dependencies for the BP registration process. Once all 3 are loaded, the form will work.

    I have a custom BP installation in which I bypass the main BP index.php file and use WPMU and BP functions as I need them.

    To get the slugs to work, I change my .htaccess file as such:

    RewriteRule . index.php?slug=1 [L,NC,QSA]

    and then my index.php as such:

    if (isset($_GET)) require( ‘./wp-blog-header.php’ );

    In that way, the BP header is only loaded when a slug is used, and I can bypass it otherwise.

    #94370
    Hugo Ashmore
    Participant

    Not ideal but I guess as long as it works. Generally speaking it must be the responsibility of each theme writer to support their theme and to correct any issues that may arise through it, otherwise it would become an increased burden on the main support site.

    #94365
    zoltok
    Participant

    Thanks for the reply hnla.

    Apologies, my first instinct was to come here as I thought maybe someone familiar with how the ajax is referenced in the default theme could help me duplicate it in Buddymatic. For the moment, I’ve used the suggestion of the other poster, which was to duplicate and rename each and every AJAX function in my own functions file. Obviously this is not an ideal solution but it will work while I wait for a fix either to Buddymatic, or the eventual release of Thematic with support for Buddypress.

    #94363
    rich! @ etiviti
    Participant

    what params can be passed to the members loop (edit a theme file or create a child theme for members/index)
    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/

    but a small bug, if no xprofile data then not all the members will be returned
    https://trac.buddypress.org/ticket/1670

    #94360
    Hugo Ashmore
    Participant

    Your first port of call should really have been the themes home having established it is a theme issue or so it would appear.

    If you read through this page you arrive at:
    http://freebpthemes.com/themes/buddymatic/?replytocom=409#respond

    Which appears to be a similar or the same issue? and it might be worth adding to this comment stream? There is also a possible solution that might be tested.

    #94349
    Round World Travels
    Participant

    Feature Request: So far plugin runs good on my site but I wold like a option to turn off the share button on my posts. I only want it for the buddypress side as I already have some form of sharing incorporated on my posts and this does not mesh well with my theme. Thanks

    Roger Coathup
    Participant

    To confirm: you can use custom permalinks without problem in the default wp install.. Changing them as suggested to /%category%/%postname% ?

    If that’s the case, try installing BuddyPress plugin again using the automatic install, switch to the bp-default theme, and let us know the outcome

    #94339
    Bowe
    Participant

    @skolbloggense: BP-Slick uses the same BuddyPress translation strings so the theme should just work fine with your Translation. The only thing that is not yet translated is the menu navigation. But that can all be found in one file, which is organized and very easy to edit. I think it will take you about 10 mins to translate it!

    I will add po/mo files to the theme pretty soon (to make upgrading easier, so you won’t lose changes) but right now it’s yet added :) The Theme is now for sale btw.. It can be purchased with 20% discount until the end of the week: http://bp-tricks.com/purchase-bp-slick/.

    Here’s the sales page with it’s features: http://bp-tricks.com/pre-order-bp-slick/. And a short video on how to get it running: http://www.youtube.com/watch?v=gMb7tXXV6Rw&feature=player_embedded

    #94335
    skolbloggense
    Participant

    @Bowe: Does your theme has the possabillity for translation in a .po file? Its pretty important for me to have the site in Swedish….

    Don Bernard
    Participant

    Tried using the wp default theme. All works fine, with BP deactivaed. can post read, categories pages read ok. No errors

    Don Bernard
    Participant

    I deactivated BP set the custom permalink as you suggested.

    The child BP theme lost all off its menus. However I can select catagories but when ido the page comes up with this error in the post.

    Fatal error: Call to undefined function bp_core_get_userlink() in D:homehnt12a135wp-contentthemesbp-columnsindex.php on line 28

    With BP activated the posts show ok

    #94305
    chouxpastry2002
    Participant

    Hi Rich,

    I had some digging through cosde. And found in templatetags.php

    ‘$mini_activity_actions = apply_filters( ‘bp_activity_mini_activity_types’, array(
    ‘friendship_accepted’,
    ‘friendship_created’,
    ‘new_blog’,
    ‘joined_group’,
    ‘created_group’,
    ‘new_member’
    ) );’

    which i wanted to filter out. Can you please tell me how do i can apply filters on these actions using functions file in my theme :)!!!

    #94290
    asshu
    Member

    Thanks !

    #94269
    Hugo Ashmore
    Participant

    Off the top of my head locate the min / max widths and replace them with width:960px or larger if you really wish. Child theme approach is best as then you can move a copy of the bp default css to your own folder to work on , problem is that min/max properties are a nuisance as they can’t be unset as such, once stated you are stuck with the damned things ‘auto’ is not a value for min/max nor is re-setting them to ‘0’ so the original property decs need to be removed really.

    #94281
    Brian Owens
    Participant

    Thanks for the advice. Could you tell me how to set the bp-default layout to a suitable fixed width? If not, could you recommend another theme that’s similiar that would work?

    Hugo Ashmore
    Participant

    It works for me!

    As always first question – as in the other thread – is does it work if you drop back to the default theme?

    Roger Coathup
    Participant

    @johnnyscience – does it work if you switch to the default theme?

    If so, you know the problem is in your theme, and you should probably try contacting labsecrets.com for advice on this one

    If not, fire it back on here

    #94251
    helpin
    Member

    I have changed other themes .But the link still appears .

    >Does that link url have any meaning to you?
    As most of the times it shows error .I don’t need that .But don’t know how to remove that as I don’t know the exact location .

    (The previous domain I typed is some other people’s site and they do have the same link which I have .SO I linked to that domain.I don’t know if they have similar problem .I have membership on that site and I will ask them if they know about that link’s function and how they use )

    #94249
    Hugo Ashmore
    Participant

    What theme and plugins are you running. if custom theme does this occur when using default. If running plugins disable all but necessary i.e BP does it still occur?

    Does that link url have any meaning to you?

    #94247
    Hugo Ashmore
    Participant

    The layout of default is a fluid one, the image is going to look diffrent on various browsers depending on their width and screen resolutions.

    The instruction to set an image with a width of 1250px is not an indication the image will be fine, an image of that width will only display fully if your browser has at least 1338px width, start to narrow the browser width and the element being asked to hold the background also has to reduce in width thus clipping the background.

    Creating graphics and placing them appropriately for fluid layouts is actually a lot harder than it appears.

    The method that would ordinarily be used would be to divide the graphics in to two separate slices, the right hand stripes portion would be it’s own graphic this would be placed as a background to an inner element to the main one holding the other graphic, the new element would be left to simply run full width of it’s parent i.e default natural behavior of a block level element the red stripes would then be set as a background to this new element but placed at 100% on the y-axis i.e all the way to the right.

    Now what occurs is that the right hand graphic moves independently of the left it will sit to the right hand edge of the header. Drawback to this is that you have to be aware of what has been set as a min-width for the layout if this value is too small it will allow the graphic to move too far together and overlap; min-width need to be sufficient to keep the two images reasonably separate.

    I’m afraid that the bp-default theme is not really geared up to handle a graphic of the type you have made, with it’s principle resting on clipping the header image at smaller width thus requiring an image type that still makes sense if pert of it is hidden.

    Another solution is to set the bp-default layout to a suitable fixed width and match your header graphic to that width, then the issue doesn’t occur.

    Failing all that your last option is to move the stripes to the left by the amount that is appropriate at the layout min-width for it to show fully, now when you expand the browser you will eventually arrive at a blank area where the stripes run out /end so you will need to run the graphic on from the point where the stripes meet the bottom of the header or height, so for ~100px or so you need to continue the graphic albeit it clipped to top and bottom in your graphics software

    #94224
    Beverly
    Participant

    Thank you Paul for responding but answer the questions in detail here:
    1. Which version of WP/MU are you running? Answer: WP 3.01
    2. Did you install WP/MU as a directory or subdomain install? Answer: Using it on my main domain
    3. If a directory install, is it in root or in a subdirectory?
    4. Did you upgraded from a previous version of WP/MU? If so, from which version? Answer: when it says upgrade I click that. So I guess it supdated.
    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Answer: Yes
    6. Which version of BP are you running? Answer: It says..Buddy press 1.2.5.2
    7. Did you upgraded from a previous version of BP? If so, from which version? Answer: Every time it says update I always click that…So maybe..??
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Answer: Buddy press 1.2.5.2, Live journey importer, akismet, fast secure contact form 0.2, OPML Importer 0.2, Post video player slideshow and photo gallery 1.79, Rss Importer, simple social sharing widgets and incons 0.2, Word Press Importer version 0.2 and WP Touch 1.9.19.1
    9. Are you using the standard BuddyPress themes or customized themes? Answer: Standard
    10. Have you modified the core files in any way? Answer: I don’t think so…Didn’t touch anything…Just beginning to do this…
    11. Do you have any custom functions in bp-custom.php? Answer: I don’t think so
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Answer: Using Hostmonster.com is my web host part of their menu control panel comes with concrete5 and under concrete5 I installed buddy press…Then that’s all I did
    13. Please provide a list of any errors in your server’s log files. Answer: The only problem I’m having is nobody can “create an account” or cannot register…And of course no email was sent for verification and account is obviously not created..
    14. Which company provides your hosting? Hostmonster.com
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? My server is running? I’m using century link previously Sprint…Mozilla fox and Explorer…Windows XP

    So I guess I answered all the questions…That’s all I did…And can’t create an account…I did it to test the application…Now go to my website hostpugs.com create an account and see what’s going on…my email: whiteflower12004 @yahoo.com….Thank you!

Viewing 25 results - 22,901 through 22,925 (of 32,561 total)
Skip to toolbar