Search Results for 'theme'
-
AuthorSearch Results
-
December 24, 2011 at 2:08 pm #126863
In reply to: Permalinks has changed after latest WP 3.3 upgrade
@mercime
ParticipantI thought it was the missing backlash between `^index.` `php$` but it just didn’t show up in this code.
You’re not using .html for pages plugin right? If not, then have you gone through the usual trouble-shooting route of deactivating plugins and changing to bp-default theme?
Another thing, View > Page Source. At the bottom of that source, do you see any strange characters or out-of-place HTML links/code etc?
December 24, 2011 at 2:07 pm #126862In reply to: Delicate Theme
anniyan07
MemberVader21, Its easy to integrate Buddypress on Delicate theme.
Just replace following on below files.
– `
` to ``– “ to `
`
– “ to “
/activity/index.php
/blogs/create.php
/blogs/index.php
/forums/index.php
/groups/index.php
/groups/create.php
/groups/single/home.php
/groups/single/plugins.php
/members/index.php
/members/single/home.php
/members/single/plugins.php
/members/single/settings/delete-account.php
/members/single/settings/general.php
/members/single/settings/notifications.php
/registration/activate.php
/registration/register.php*edited – thanks to mercime
December 24, 2011 at 1:46 pm #126859In reply to: [Resolved] Member, Profile and Group pages error
@mercime
Participant@fswd looks to me that you need to get updated Custom Community Pro theme. Change to bp-default theme, clear browser cache, and check if behavior corrected … just to make sure that it’s a theme issue.
December 24, 2011 at 1:26 pm #126857In reply to: Struggling with child themes
@mercime
Participant@wmike1503 wrap your code with backticks (`), the symbol between the parentheses so your code will show up here. I’ve done it for you in your post above.
I’ve just updated codex re child themes some hours ago for BP 1.5.2 https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ so you might have missed the changes required.
1. If you want to make some minor changes, create your child theme folder, create style.css file for your child theme and remember to add Template: bp-default in the header of your stylesheet. Then just start adding in your style changes in style.css file and you’re good to go.
2. If you want a total redesign, you’d need to create a functions.php file as well. You want to remove parent theme’s styles and enqueue your own style (alternative method in updated codex article):
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {
// You should bump this version when changes are made to bust cache
$version = ‘20111223’;
// Register stylesheet of wmike child theme
wp_register_style( ‘wmike’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );
// Enqueue stylesheet of wmike chid theme
wp_enqueue_style( ‘wmike’ );
}
add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );
endif;
?>`December 24, 2011 at 10:40 am #126850In reply to: Struggling with child themes
wmike1503
MemberHi,
Thanks for that.
My stylesheet is called style.css so my functions.php contains the following:
`<?php
/*enqueue stlyesheet – ADDED BY MIKE*/
function add_my_stylesheet() {
wp_enqueue_style(‘style’, get_bloginfo(‘stylesheet_directory’) . ‘/style.css’);
}
add_action(‘wp_enqueue_style’, ‘add_my_stylesheet’);/*MIKE’S EDIT ENDED */
?>`
Am I getting there?
Cheers,
Mike
December 24, 2011 at 8:37 am #126849In reply to: Struggling with child themes
modemlooper
ModeratorNo, do not copy. Create a blank functions.php file and add your own custom functions.
December 24, 2011 at 8:02 am #126847In reply to: Struggling with child themes
wmike1503
MemberHi,
Many thanks for that.
I’ve copied the default Buddypress functions.php and added the above code. This just results in the site not loading.
From the various articles i have read it would appear that copying the original files from BP-default such as header.php, footer.php etc to the child themes folder and editing them is meant to work. So far, if I make any changes to them it just breaks BuddyPress.
I must be missing something here.
Cheers,
Mike
@mercime
ParticipantDid you ever run the Theme Check plugin on your install and fix Warnings or Requirements, if any? Did you install Log Deprecated Notices plugin and check Tools > Deprecated Notices to see if you need to update some functions/template tags you have in your custom theme? I’d say deactivate BP and BP template pack and fix any issues you find with your theme first.
Change to bp-default theme and check if everything’s working in your installation. Ideally, it would be better if you install WP/BP with same server environment as your current installation.
EDIT- Also, the 6 BP folders transferred to your WP theme wouldn’t cause changes in your theme’s index.php . If you manually remove the 6 BP folders and deactivate BP Template Pack plugin, does the issue you mentioned resolve itself?
mikek
MemberFinding numerous theme issues, may be in over my head with the amount of time it will take to fix them all let alone figuring out how to fix them all first.
December 24, 2011 at 3:08 am #126839In reply to: Front page
Harty
MemberHey, thanks do the help.
I am using the default theme.
Cheers.
HartyDecember 24, 2011 at 2:25 am #126838In reply to: Front page
Lindsayannb
MemberIt depends on the theme you are using. Generally to make a permanently imbedded video you would open the template file for your home page (sometimes called home.php) and paste it in there.
If your home page is widgetized then you can paste the code into a text widget and drag the widget to the proper location.
OR you can make your theme widgetized by following one of the many tutorials on how to widgetize a wordpress theme.
December 24, 2011 at 1:22 am #126836In reply to: Problem with adminbar avatar
Herman Alexander
MemberHmm. Looks like some coding in the cubepoints plugin that’s not working very well with your theme. I will PM you after christmas eve (between 26-30 December), and then I can take a look at it, and try help you with this one.
December 24, 2011 at 12:35 am #126833lndlyb4
MemberI was able to resolve this for anyone with the same question. The code to change is in the buddypress/bp-themes/bp-default/functions.php file around line 644 `’title_reply’ => __( ‘Leave a Reply’, ‘buddypress’ )`
Just change the text to what you want.
mikek
MemberOk this is odd, but I found more to add to the above. Hopefully this is common and you know the way to fix it.
In my editor, when I click on main index.php, it is supposed to show me my main page template. Instead, it is showing me all BP member code. I looked in the address and it has this code between “main” and “index” ……. members%2F
So obviously I deleted that part in the address and then it took me to my correct main index page BUT that page is not listed on the right side where it should be. Example: If you are in your main index.php….the right side will highlight main index.php as you are viewing it. In this case, it shows up as my main index code, but it is nowhere to be seen on the right side.
Hopefully this is common so my gibberish makes sense, ha
mikek
MemberA confusing part of my theme editor. main index.php is now all buddypress code that seemingly has no residual code from my index before BP. However, my main page is still like my normal main page minus the avatar issue listed above. So if I want to modify my main page code, where do I go for that if it is not the main index.php?
mikek
MemberMaking progress finally. It moved the files successfully and the layout seems fine except for 1 problem I have found so far. The problem is in regards to avatars for the authors. Unless you see more problems on your end?
I have an avatar plugin that allows me to upload pictures to my photobucket then link them to my avatar(s) for more clear pictures. This is also used because it’s easy to modify for all the authors on my site (as the admin, I want control of that). However, this change seems to put me into gravatar only. How can I change that back to putting my photobucket links in for each author? If you look at page 2 where my recent article is, my gravatar is blurry until you hover over it, then it is clear. Further reason I’d like to not use gravatar for authors.
Any recommendations?
December 23, 2011 at 8:52 pm #126827In reply to: Struggling with child themes
modemlooper
ModeratorBuddyPress still loads the core CSS you are better off creating a functions.php file in your child theme folder and enqueueing a custom.css file
`function add_my_stylesheet() {
wp_enqueue_style(‘custom’, get_bloginfo(‘stylesheet_directory’) . ‘/custom.css’);
}
add_action(‘wp_enqueue_style’, ‘add_my_stylesheet’);`December 23, 2011 at 8:30 pm #126823In reply to: Problem with adminbar avatar
justin bean
MemberHey Scott I think you are right but yea in the mean time I need some help! (I know this is not the right place to ask but ok) look at this: http://teamvortex.nl/members/justin-bean/cubepoints/
it”s wel dead 0.0 im using the source by elegant themes, does anybody know how this fix this? I really need some help
it’s a Cubepoints error thingyIf the link doesn’t work go like this: on the homepage click on “clan leden” (right at the top) click on justin bean –> points, and see for yourself
Thank Justin.
December 23, 2011 at 1:05 pm #126808In reply to: A very problem with avatar, please!!
seravifer
MemberI want the users profile tab Disappears option to change But the avatar appears on another page than the user profile. In profile form of the “theme my login plugin”.
December 22, 2011 at 10:15 pm #126779In reply to: Links being displayed in profile field
Tammie Lister
ModeratorIf possible can I know a little bit more. Such as:
-What type of profile field have you set up?
-Are you using the default theme?
-What text are you adding? Are you copy and pasting or just adding in by typing?December 22, 2011 at 7:42 pm #126769In reply to: Mentions not working from the notifications bar….
cwhittl
MemberI figured it out… it was an issue with buddyboss theme… thanks for your help mercime!
@mercime
Participant@MikeK The same thing happened to me in a test install. Could be that the auto-install was incomplete or corrupted for some reason. Re-uploading BP Template Pack plugin manually via FTP, then deactivating BP Template Pack plugin in dashboard, then reactivating the plugin brings in the BP Compatibility Link under Appearance > BP Compatibility to start the process.
Boone Gorges
KeymasterJust to be clear: You are looking under the Appearance top-level menu of the root blog’s Dashboard, right? ‘BP Compatibility’ does *not* appear under the BP top-level menu. (It’s working fine for me with BP 1.5.2 + WP 3.3.)
mikek
MemberFYI, it doesn’t appear the template pack is compatible with 3.3….does not even have a BP Compatibility section at all after installing and activating the plugin
@mercime
ParticipantYes it is. It’s one of the tools used when we review themes submitted to the WordPress Theme Repository. We also use the Debogger plugin as well as the Log Deprecated Notices plugin as well. See #1 on this page https://make.wordpress.org/themes/about/how-to-join-wptrt/
-
AuthorSearch Results