Search Results for 'theme'
-
AuthorSearch Results
-
August 25, 2010 at 9:02 pm #90379
In reply to: Posts can’t be found
Roger Coathup
ParticipantWhich theme are you using?
Do the posts appear correctly with BP deactivated?
August 25, 2010 at 8:41 pm #90372r-a-y
KeymasterHook into the “bp_adminbar_random_menu” action.
function my_random_article() {
echo 'YOUR LINK';
}
add_action( 'bp_adminbar_random_menu', 'my_random_article' );
Add to your theme’s functions.php.
August 25, 2010 at 8:30 pm #90370r-a-y
KeymasterFirst problem… try using an activity stream loop on your main blog:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/You’ll need to add the activity stream loop to your main blog theme.
Make sure BuddyPress is activated network-wide.
August 25, 2010 at 8:18 pm #90364In reply to: Buddypress not on themainblog ?
John
ParticipantHello,
Thanks you very much for helping me.
I’ve followed your link but I’ve got a problem.
(3) Keep your old BuddyPress user / group avatars
I don’t find my file bp-custom.php (at the following location : wp-content/plugins/buddypress/), should I create one or is it at an another location ? I’ve looked but I didn’t find anything.(4) Redirect previous BuddyPress permalinks
I’ve edited my .htaccess but when I click on my name from a comment I’ve made on a post on the blog’s network or if I try to view an activity I end up on the same page : the Members Directory. I’m using the default buddypress theme on the blog.Did I make a mistake on my .htaccess ?
Here’s the path of my installation, using Wamp :
http://127.0.0.1/themainblog/ – the main blog
http://127.0.0.1/themainblog/network/ – where buddypress is enabled.
http://127.0.0.1/themainblog/blogname/ – a blog from the networkHere’s how I edited my htaccess :
RewriteEngine On
RewriteBase /themainblog/
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]RedirectMatch 301 ^/members/(.*)$ http://127.0.0.1/themainblog/network/members/$1
RedirectMatch 301 ^/groups/(.*)$ http://127.0.0.1/themainblog/network/groups/$1
RedirectMatch 301 ^/blogs/(.*)$ http://127.0.0.1/themainblog/network/blogs/$1
RedirectMatch 301 ^/forums/(.*)$ http://127.0.0.1/themainblog/network/forums/$1# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]Best regards,
August 25, 2010 at 3:50 pm #90343imjscn
ParticipantMy main blog is not with bp default theme, but I redirected bp links to 2nd blog which is on default bp theme. So, if a plug in fetch and display bp streams on root blog, when user click that title, it will be redirect to the 2nd blog.
s2member sounds great, I will try it, thanks!
August 25, 2010 at 1:11 pm #90326In reply to: Changing target of ‘register’ link on login page
Roger Coathup
ParticipantOk, I don’t know the theme, but it looks like the designer has ‘gotten lazy’ and coded in a hard link to register.php rather than the register slug.
You’ll have to get in there and find which template file it’s using, and change the link code to the register slug. The code you’ll be inserting is something like: http://pastebin.com/4n20tpx9
Might be worth asking the theme designer to make the change.
August 25, 2010 at 12:57 pm #90325In reply to: Changing target of ‘register’ link on login page
footybible
Participant@rogercoathup – I’m using social theme. This is the page:
http://www.footybible.com/wp-login.php?redirect_to=http%3A%2F%2Fwww.footybible.com
The ‘register’ link, in the bottom of the box, redirects to the home page instead of ‘/getinvolved’ which is my new slug. Not a huge problem, but annoying enough to put some people off I supect.
Thanks
August 25, 2010 at 12:41 pm #90322In reply to: Changing target of ‘register’ link on login page
Roger Coathup
Participant@footybible – What’ve you changed your slug to? What does the link point to that is failing? Essentially, they need to be the same thing.
Which page is giving you the problem? Is it a standard WP login screen as opposed to a BuddyPress one? Which theme are you using?
Based on this, you can just go in and edit the appropriate template file to point the link to the right place. You won’t have to touch ‘actions’ – certainly not ‘register_post’ … which is something completely different.
August 25, 2010 at 12:29 pm #90320In reply to: Sidebar Tabs
Roger Coathup
Participant@janismo – do you mean widgets aren’t working in your sidebar? Or, do you mean specific plugins for displaying the widgets in tabs aren’t working?
If it’s a simple problem adding any widget, then try with the default theme, disable other plugins, and see if the problem still exists. [note: in general, if you have a widget / plugin that is supposed to be compatible, but isn’t working – it’s a good idea to strip back to basics and try to identify whether it’s something in your theme, or perhaps a clash between two of your plugins]
If you want to create tabs manually, you are best to look at some of the Javascript libraries, e.g. jQuery, that have components already built for creating tabbed interfaces. You would then edit your sidebar.php template file to ensure your components are added, and that the markup is correct for the Javascript tabbing script.
August 25, 2010 at 12:22 pm #90319In reply to: Sidebar Tabs
jalien
ParticipantIf you want to have a look at the Suffusion theme and go to the theme’s site there is a BP extension for the theme. One of the options in the theme is to have tabs in one widget area. You might like to look at the code if you are using another theme, or just use his theme. It looks nice, but some BP plugins need a little reworking to display correctly. There are some good help in the forums though. Maybe this will help.
August 25, 2010 at 11:14 am #90315In reply to: Use Forums without Groups?
Roger Coathup
Participant@hitler – they are coming – I guess partly as a result of end users tearing their hair out – group forums has some interesting technical / logical reasoning behind it, but the user interface experience was far from perfect.
Check out @johnjamesjacoby post on the imminent new approach: https://buddypress.org/2010/08/buddypress-and-bbpress-the-future/
Note: now the presentation / interface features should be back in the hands of the theme developer. You can clutter / un-clutter as much as you like, use groups / not use groups, standalone / not standalone, etc. – it should be much more flexible, allowing you to craft better and more exceptional websites.
August 25, 2010 at 10:39 am #90312In reply to: Blogs on my BPsite
Boniu
ParticipantNow, i just removed /plugins directory, checked all permalinks etc. then tried to install buddypress, and…..
“Cheatin’, uh?”
Maybe im doing something wrong? i should make a new theme before bp installation?
now ill make a new clear wp install and try to do it again from the begining@edit there’s something strange, “network installation” has made a new menu, there are some links like “log in” “sign up” etc.
“log in” button’s adress is mysite/wp-login.php?redirect_to=mysite/home
@edit2 made new installation, step-by-step with a guide, and still the same…. any ideas?
August 25, 2010 at 7:44 am #90300Roger Coathup
ParticipantDoes it work if you switch to the bp-default theme?
If so, the fault is in your theme. Give that a try, then provide more info on the error message.. can you register and login ok on your machine?August 25, 2010 at 2:54 am #90288In reply to: Site went Off
govpatel
ParticipantYour site open fine for me but there is nothing there just a default theme do have a backup of your database to retrieve your data and settings.
August 25, 2010 at 1:44 am #90278In reply to: Users can’t register through BuddyPress home page
August 24, 2010 at 10:52 pm #90250In reply to: Introducing JobBoardr
Anonymous User 96400
InactiveI am aware that CVs have different formats from one country to the next, so future versions will provide a way to completely customize any aspect of a CV.
This will be loosly based on the new way of generating and sorting profile fields in the BP trunk and on CV templates provided by users of JobBoardr.
Once you signed up to the test site, you can set up your own CV already and then generate a PDF file from it. The user-avatar gets automatically included as of now. The project that sidetracked me from finishing the first stable version of JobBoardr doesn’t actually need all the CV extravaganza, so a CV-rewrite will come with version 1.1.
Saying that, if you know a bit of PHP and OOP it’ll be easy to adjust the function responsible for outputting the PDF file. You’d also need to adjust the theme template for the CV, but that can be copied over to a child theme and does not involve any core-JobBoardr modifications.
What you get out of the box right now is basically an English CV (the one I used when I lived there). I am German, so I’ll provide a German CV as well. Other than that any other templates will have to be provided by users of JobBoardr.
August 24, 2010 at 10:47 pm #90249In reply to: Why is it a bad idea to copy “bp-default” theme?
PH (porsche)
ParticipantGood to know @boonebgorges
August 24, 2010 at 10:40 pm #90247In reply to: Why is it a bad idea to copy “bp-default” theme?
Boone Gorges
Keymaster@crashutah – That’s right. But chances are that most of your modifications will only take place in a handful of template files, so it’s still way better than having to migrate changes over to a wholesale copy of bp-default. To give you a frame of reference, even a fairly heavily themed version of BP 1.2.x like on http://commons.gc.cuny.edu inherits something like 60-70% of its template files from bp-default.
August 24, 2010 at 10:05 pm #90243In reply to: Why is it a bad idea to copy “bp-default” theme?
Roger Coathup
Participant@porscheheritage – exactly!
If you are happy with the content being produced by the template files, then yes, just create you own style.css (and other css files) in your child theme, and modify to meet your needs.
I quite like the bp-default folder structure for images and css files, so you might want to copy that.
August 24, 2010 at 9:59 pm #90242In reply to: Why is it a bad idea to copy “bp-default” theme?
PH (porsche)
ParticipantThanks @rogercoathup
So, I can just copy the CSS and mangle that to taste and not copy the “template files”
August 24, 2010 at 9:51 pm #90240In reply to: Why is it a bad idea to copy “bp-default” theme?
Roger Coathup
Participant@crashutah – that all depends how much you’ve specialised your child theme away from the default. It also depends if there are new features you want to take advantage of – in which case dig around and see how they are being used in the default, and ‘steal / adapt’ as necessary.
Remember for the most part, a theme is about presentation rather than underlying function / features. That said, this can be blurred as you dig into the activity loops and directory template files.
We typically derive our child themes from the bp-default theme, but make very considerable changes – chopping out big chunks of the over heavy markup, and making somewhat dramatic changes to the layout. By deriving, we do however get to make use of some of default templates especially within the social loops, etc.
For some of our newest sites, where you would struggle to know BuddyPress was even there, we are building our own themes from scratch.
August 24, 2010 at 9:47 pm #90239In reply to: Why is it a bad idea to copy “bp-default” theme?
Roger Coathup
Participant@porscheheritage: have you read this article on child theme development: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/ ?
That’s the best starting point.
You don’t copy the BP-default theme – instead in your child theme, you create new templates where you want to override the default ones, and simply inherit the others. A directive you add to your child theme’s style.css file identifies which theme is it’s parent.
August 24, 2010 at 9:45 pm #90237In reply to: Why is it a bad idea to copy “bp-default” theme?
techguy
ParticipantBoone,
On BP updates, any files you add to your child theme you’ll have to compare against the update and manually update them with the new features right? So, if I overwrite header.php in my child theme, then when BP updates, I’ll have to compare my header.php with the new release to see if I should copy over any new features right?However, like you said if it’s all just done with css, then you don’t have to worry.
August 24, 2010 at 9:43 pm #90236In reply to: Why is it a bad idea to copy “bp-default” theme?
PH (porsche)
ParticipantThanks @boonebgorges
So… do i just make a “child theme” of “BP-Default”? meaning “copy the content of that” into a new folder “myChildTheme” and make that the “child” of “bp-default”
August 24, 2010 at 9:17 pm #90233In reply to: BuddyPress Spam
Mark
Participant@rogercoathup no I didn’t change the slug or the default text. I’m not a developer and wasn’t 100% sure how to change the slug. I looked at the wp-config.php but it looks a lot different than Andy’s example on BP org I read. Would I change it under wp-config still? Andy’s posting is from 09. I will go ahead and change the default text. I’ll do anything to keep those bot ******* away. lol. So far Ive been good with the two plugins even though it looks like overkill to my visitors.
Side note. I’m having a problem with viewing status on my activity feed. When someone joins the site or posts a notification and I go to click on view next to the notification, the page it takes my to has issues with the theme. I assume it has to do with my themes template file?. here’s the snipit of code View Any thoughts on how to fix it? Thanks. -
AuthorSearch Results