Save file.
Search Results for 'theme'
-
AuthorSearch Results
-
May 2, 2012 at 3:17 pm #133857
In reply to: [Resolved] Customising Alyeska Theme for Buddypress
@mercime
Participant@artisantopia do post the pastebin url for content-page.php file. If you don’t have it, do ask the theme author where `et_template_part( ‘content’, themeblvd_get_part( ‘page’ ) )` is so I can help you fix alignment of the BP template files.
May 2, 2012 at 2:58 pm #133855Hugo Ashmore
ParticipantBut did you deactivate the custom theme and activate bp-default, disable all plugins except BP and for good measure visit permalinks page to clear cache.
And are you really having exactly the same issue? It is proper to create a new thread and describe your issue in as much detail there rather than tag (hijack) on to an old thread.
May 2, 2012 at 2:52 pm #133853Andrew
MemberHi @mercime I have the same problem. WP 3.3.1 and BP 1.5.4. I’m using a child theme based off a Theme from themeforest.net (Gratitude – http://themes.zenthemes.net/gratitude/ )
You can see the live site with the errors here http://yogamalafoundation.org I de-activated buddypress plugins (which subsequently also weren’t working ) and then I reset permalinks. Still no go. Any help would be uber appreciated.
May 2, 2012 at 12:09 pm #133850In reply to: how to get the load more to work
Paul Wong-Gibbs
KeymasterIn the appropriate theme template (probably /activity/activity-loop.php), change the bp_has_activities() call to set: per_page = 10. This will show only 10 items per page (or per click of the ‘load more’ button in the Default Theme).
There isn’t a way of doing “show me the recent updates from a maximum of 10 users).
May 2, 2012 at 12:07 pm #133849In reply to: How to hide profile fields
Paul Wong-Gibbs
KeymasterI would suggest creating a new profile field group for this sort of field, and put some logic into the appropriate theme template to not show fields in that group.
May 2, 2012 at 11:59 am #133847In reply to: Activity Filters
Paul Wong-Gibbs
KeymasterIt takes the value=”” attribute and, from memory, uses that for the type= and sometimes the action= arguments for bp_has_groups. In the default theme, It does this in bp_dtheme_ajax_querystring()
May 2, 2012 at 8:34 am #133845In reply to: do not have associated WordPress Pages
Hugo Ashmore
ParticipantYes as mercime says don’t delete anything just yet, deleting and re-installing is seldom really required.
With the Salutation theme you have chosen quite a tricky framework to get ones head around, at best it’s confusing until you have spent a bit of time with it, but results do look quite nice and it appears to integrate well with BP, one thing to bear in mind with the theme is that it does allow you to export all the configured layouts and template includes so if you have started building, configuring layouts then check where the various export options are and save them then if necessary you can re-import them to re-create your custom changes.
May 2, 2012 at 5:54 am #133840@mercime
ParticipantB. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php and at the TOP, above all code contained within, add this
``Then at the BOTTOM of sidebar-buddypress.php, below all other code, add this:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/unstandard/ at the same directory where your regular header.php and sidebar.php files are in
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
May 2, 2012 at 5:53 am #133839@mercime
Participant@sarbanharble I downloaded The Unstandard theme from http://5thirtyone.com
See if the instructions below to fix alignment will work for you:You will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your unstandard theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your Unstandard theme folder in server – activity, blogs, forums, members, groups, register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
`<div id="post-” class=”single-entry group”>`May 2, 2012 at 5:12 am #133838@ChrisClayton
Participant@yadigit – The official way to remove it is via adding the tag ‘buddypress’ to your theme style.css comment header (the section where you tell wordpress your theme’s name).
eg.
`
/**
* Theme Name: My Themes
* Tags: buddypress, awesome
**/
`Theirs also an internal config line that you can add to wp-config.php or plugins/bp-custom.php
`define( ‘BP_SILENCE_THEME_NOTICE’, true );`May 2, 2012 at 3:38 am #133835In reply to: Changing the color of h1
Toby Cryns (@themightymo)
ParticipantStep 1: Build a BuddyPress child theme: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Step 2: Add a style for h1: http://www.w3schools.com/css/css_intro.asp
May 2, 2012 at 2:48 am #133830sarbanharble
Member@mercime thanks for the advice. I did try the second method to no avail. I went ahead and adjusted the forum/index.php just to make sure I could align it correctly, which it looks to have worked okay. I’ll probably just do that to the other…15. Par for the course of a career in befriending the interwebs.
I’m not sure what happened but last I checked the button in question started functioning.
May 2, 2012 at 2:40 am #133829@mercime
Participant@sarbanharble looks like you’ve not completed Step 3 of the BP Compatibility process for members, groups, activity and registration/activation pages- https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#step-three
Based on a quick scan of the HTML structure of The Unstandard theme, you can use the 2nd method per link above to fix alignment of the BP template files – i.e., create necessary content/files header-buddypress.php, sidebar-buddypress.php and/or footer-buddypress.php and upload these to your theme folder – instead of the 1st method which involves changing 16 BP template files.
May 2, 2012 at 2:05 am #133827In reply to: do not have associated WordPress Pages
@mercime
Participant@starprintbrokers before deleting everything. Follow my instructions in my post above to change to bp-default theme etc.
May 2, 2012 at 2:03 am #133826In reply to: [RESOLVED]CSS bp problems – The Global Sport theme
@mercime
Participant@nsbalgcom Open up your theme’s header.php file, copy all, paste in pastebin.com, click submit, and post the generated URI here.
Do the same for your theme’s (The Global News Theme, right?) index.php, page.php, sidebar.php, and footer.phpMay 2, 2012 at 1:14 am #133825In reply to: [RESOLVED]CSS bp problems – The Global Sport theme
May 2, 2012 at 12:26 am #133824In reply to: Getting Started…
@mercime
ParticipantSanity check: When you said you activated the “default theme” in your first post, did you mean the WordPress default theme Twenty Eleven or the bp-default theme? It should be the bp-default theme. And if you’re using Twenty Eleven or any other WordPress theme, you need to install and activate the BP Template Pack plugin then go through Appearance > BP Compatibility process.
Now if you are using the bp-default theme, go to BuddyPress Pages again and double-check that BP components are indeed associated with respective pages https://mercime.files.wordpress.com/2011/11/bp-installation-wizard-08.gif
If that doesn’t cut it, https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
May 1, 2012 at 11:55 pm #133822In reply to: [RESOLVED]CSS bp problems – The Global Sport theme
@mercime
Participant@nsbalgcom I see you’ve installed the BP Template Pack plugin. Now you need to fix the alignment within the BP template files to be compatible with your WP theme WPSN – via 1st method of changing 16 BP template files or via 2nd method of creating only the header-buddypress.php, sidebar-buddypress.php and/or footer-buddypress.php.
Initial scan of online source code shows that you need only to implement the 2nd method and adding some styles to fix the alignment of your theme. https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#fixalignment
May 1, 2012 at 11:14 pm #133820In reply to: do not have associated WordPress Pages
starprintbrokers
MemberJust gettng back to this project.
@mercime, I did confirm that Salutaion will work with the current BuddyPress theme.
Hugo, if this doesn’t work, then I will ask my host provider to wipe out the entire site and I’ll start over. It’s not such a loss, as I am still building the site. I can easily create those missing pages with those names, but would imagine there is code and are layouts that I cannot replicate. I would say my skill level is probably just short of intermediate, so I would rather play it safe than build any more content. I’ve save what I built in Word docs anyway!
May 1, 2012 at 6:46 pm #133814Hugo Ashmore
ParticipantI’ve installed – re-installed, manually modified DB’s, a hundred times and never had anything remotely like this happen especially not caused by BP. BP doesn’t cock up in this manner, table prefix sounds like something your theme has done.
As for fix? try renaming your tables back to the wp default ‘wp_’
May 1, 2012 at 6:09 pm #133813In reply to: use wp register forum not BP, any ideas?
yadigit
Participant@paul gibbs Removing the registeration folder in my theme worked just fine.
I have no idea why I never tried it before. Thanks a lot!
You rock.May 1, 2012 at 4:36 pm #133808Hugo Ashmore
ParticipantA little more work is required to remove those empty tags used for clearing though
May 1, 2012 at 9:07 am #133799Nasir Zia
MemberHi,
The code provided above worked, although a little change was required in sidebar coding…> Widgets, and drag & drop a widget into the corresponding widget panel.', 'swagger' ); ?>
May 1, 2012 at 6:01 am #133793In reply to: use wp register forum not BP, any ideas?
Paul Wong-Gibbs
KeymasterGood question. I think if you delete the registeration/ folder in your theme (or parent theme), it will use WP’s. Let us know.
Also try removing the page mapping for the component in wp-admin – BuddyPress > Components
May 1, 2012 at 5:56 am #133792jakeyboy1989
Member@mercime Thanks again for your help.
I tried this previously with another colorlabs template and it simply displayed =0 when I tried loading the page, however, using a different template now, it seems to work.. I just need to try and adjust the files to make it look a bit better.
you can see what I have done here – http://www.jakewhitehead.com/socialbp/
Just hoping this will do what I want.
Can you hide some of these menus so only logged in users see them?
-
AuthorSearch Results