Search Results for 'theme'
-
AuthorSearch Results
-
March 13, 2012 at 3:04 am #131281
In reply to: [Resolved] Fixing Alignment for Minimatica WP Theme
@mercime
ParticipantYour header.php pastebin url has no code pasted. You won’t need to paste index.php, page.php and re-paste header.php if this is the Minimatica theme you are referring to –> https://wordpress.org/extend/themes/minimatica
Is it?March 13, 2012 at 2:48 am #131280@mercime
Participant@indyowls closed your other thread about same issue. Surprised that the theme devs are not providing support for their custom theme, at least to tell you if they don’t know how to do it.
Let’s see how hard/easy it’ll be to fix alignment of BP pages for ifeature pro. Open up your ifeature theme’s header.php, copy all, and paste into pastebin.com, click submit, and post the generated URL here. Do the same for your theme’s page.php, index.php, sidebar.php and footer.php.
March 13, 2012 at 2:40 am #131279@mercime
ParticipantClosing this thread for same topic re-started at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddy-press-on-other-themes/
March 12, 2012 at 4:27 pm #131272In reply to: Activating Forums on Groups
@mercime
ParticipantTo start with, have you changed to bp-default theme to check out whether it’s your custom theme that’s not working with BP 1.5.4?
March 12, 2012 at 4:24 pm #131270@mercime
ParticipantNeed to see it. In any case, use Firebug, a Firefox add-on, to identify which style should be changed and do some experimenting online too.
March 12, 2012 at 2:03 pm #131264In reply to: Members Only for the WHOLE site
dan77
Membera solution without plugin for a private community, logged-in users only:
I used the code of david carson described in this thread:
https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18here is the code you need to paste in a bp-custom.php in you plugin directory.
(you have to create it if you don’t have it).
Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.
<?php// **** Privacy ********
function restrict_access(){
global $bp, $bp_unfiltered_uri;// If user is not logged in and
if (!is_user_logged_in() &&
(
// The current page is not register or activation
!bp_is_register_page() &&
!bp_is_activation_page()
)) {
// Redirect to registration page. Change /register to your register page slug
bp_core_redirect( get_option('home') . '/register' );
}
}add_action( 'wp', 'restrict_access', 3 );
March 12, 2012 at 1:59 pm #131262In reply to: Members Only BuddyPress
dan77
Memberif you want complete private community I used the code of david carson described in this thread:
https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18here is the code you need to paste in a bp-custom.php in you plugin directory.
Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.‘<?php
// **** Privacy ********
function restrict_access(){
global $bp, $bp_unfiltered_uri;// If user is not logged in and
if (!is_user_logged_in() &&
(
// The current page is not register or activation
!bp_is_register_page() &&
!bp_is_activation_page()
)) {
// Redirect to registration page. Change /register to your register page slug
bp_core_redirect( get_option(‘home’) . ‘/register’ );
}
}add_action( ‘wp’, ‘restrict_access’, 3 );
‘March 11, 2012 at 11:55 pm #131250@mercime
Participant== I’ve put it public_html/thegreatestgift/wp-content/plugins/buddypress/bp-themes/bp-default/members/index.php ==
Not there. You should replace the code with the sidebar you already had for members directory page per our work in the other topic. In other words, the code I posted in pastebin should be in wp-content/themes/insignio/members/index.php
March 11, 2012 at 11:51 pm #131249@mercime
ParticipantYou should be able to get free support for your premium theme at their forums http://cyberchimps.com/forum/pro/ifeature-pro/
March 11, 2012 at 10:20 pm #131247mosaicrob
Memberthank you for your patience with this @mercime,
I’m confused as I just triple checked and I seem to have made all the adjustments you originally asked. I must be missing something.
Ok here is a copy of my members/index.php:
I’ve put it public_html/thegreatestgift/wp-content/plugins/buddypress/bp-themes/bp-default/members/index.php
The resulting page is here: http://irsu.co/thegreatestgift/members
It still has a sidebar… I’m not sure where I’ve gone off target…. confused.
March 11, 2012 at 12:39 pm #131173In reply to: [Resolved] Threaded comments
hkcharlie
Participant@mercime thank you for your confirmation
I dug deep and thought I had the default theme, but for some reason it wwasn’t pulling the default theme from the buddypress plugin, but a default theme from the themes folder.
So I copied over the bp-default theme to the themes folder and it worked.Thank you
March 11, 2012 at 1:54 am #131156In reply to: [Resolved] Threaded comments
@mercime
Participant@hkcharlie Activity threaded comments are working in bp-default theme. What theme are you using?
March 10, 2012 at 12:00 pm #131129seltee
Memberi insert this code in neader.
Write error.
Messages ( Fatal error: Call to undefined function fp_new_message_count() in /home/abicte/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/header.php on line 31March 10, 2012 at 10:03 am #131128In reply to: Vertical Sub-menus
Prince Abiola Ogundipe
Participant@shivang, check this child theme am building out if thats what you mean http://suchworld.co.cc
Login:demo
pass: demoMarch 10, 2012 at 9:54 am #131126In reply to: sidebar from right to left child theme
Prince Abiola Ogundipe
Participanthi @poxtron, yes, you can do it with css, what you need is div#sidebar {float: left ! important;} amend accordingly.
March 10, 2012 at 2:10 am #131117@mercime
Participant@mosaicrob If you’re still using the Insignio theme where we changed 16 template files in this thread, then yes, you can make any of them left sidebar or right sidebar or full width.
For example, you want to make all the Groups Directory Page (groups/index.php) and Members Directory Page (members/index.php) use Full Page Layouts, instead of using the replacement codes I posted in that thread …
At the top of those two files, change replacement to:
``At the bottom of those two files, change replacement to
``
March 9, 2012 at 9:51 pm #131112mosaicrob
MemberDone!
March 9, 2012 at 1:28 am #131066dockoellewood
Member1. Which version of WordPress are you running?
ACTUAL VERSION FROM TODAY
2. Did you install WordPress as a directory or subdomain install?
SUBDOMAIN
3. If a directory install, is it in root or in a subdirectory?
I THINK SUBDIRECTORY
4. Did you upgrade from a previous version of WordPress? If so, from which version?
UPGRADE IS NO PROBLEM
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
YES IT WORKS FINE
6. Which version of BP are you running?
FROM TODAY
7. Did you upgraded from a previous version of BP? If so, from which version?
NO! I INSTALL IT
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
UMM SOME… DONT KNOW
9. Are you using the standard BuddyPress themes or customized themes?
CUSTOMIZED THEME; FIRST A NON BUDDYPRESS ; THEN A BUDDYPRESS THEME
10. Have you modified the core files in any way?
NOT THAT I KNOW; MY ADMIN UPLOAD THE LANGUAGE PACK
11. Do you have any custom functions in bp-custom.php?
SEE ABOVE
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
FROM TODAY
13. Please provide a list of any errors in your server’s log files.
SEE POST ABOVE
14. Which company provides your hosting?
DONT KNOW
15. Is your server running Windows, or if Linux; Apache, nginx or something else?
I THINK WINDOWSMarch 8, 2012 at 9:54 pm #131057In reply to: Error editing profile fields
viktor89
MemberI don’t really know how to figure out if they’ve been loaded or not
Should I just read it in with my theme to be sure, or will a double load of j-crop crash things?March 8, 2012 at 7:04 pm #131049In reply to: Host: minimum memory?
Paul Wong-Gibbs
KeymasterIt depends on what you have running on your site – themes, plugins, number of users, caching – and how they all interact. I would suggest 64Mb is a safe minimum, but get one that lets you go up to 96Mb+ just in case.
March 8, 2012 at 6:47 pm #131046In reply to: [Resolved] Threaded comments
@mercime
Participant– Check if you’ve enable threaded (nested) comments in your Settings > Discussions and if level is set to more than “1”
– If the set up of your threaded comments is correct, WP 3.3.1 and BP 1.5.4 install – check your custom theme if issue is corrected. If not, contact theme developer. Change to bp-default theme and you’ll see that threaded comments are rendering as wanted.
March 8, 2012 at 6:40 pm #131045In reply to: Change Width of Buddypress and menus
@mercime
ParticipantRemove code afer `
` in your header.php, It’s going to wreck the layout. You’ve got to ask theme developer where you can add that code in the custom navigation menu of the premium theme.More importantly, your layout is wrecked in the content area. Some styles added to your stylesheet like:
`body.directory #content {
margin: 0 34% 0 7.6%;
width: 58.4% !important;
}
div#content .padder {
margin-right: 351px;
}
etc.`
have compounded the problem. Those styles were not there before nor is that one of the recommended additions at all.March 8, 2012 at 3:07 pm #131039In reply to: Collapse and expand comments
yadigit
ParticipantYey, I found it
this requires editing the activity/entry.php in your theme.right after the following code:
``
Put in:
`$(document).ready(function(){
$(“li#activity- div.activity-comments ul”).hide();
$(“li#activity- a.acomment-reply”).click(function(){
if ( $(“p.collapse-“).css(“display”) == ‘none’ ){$(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
}
return true;
});$(“p.expand- a”).click(function(){
$(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
return false;});
$(“p.collapse- a”).click(function(){
$(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
return false;});
$(“li#activity- input[name=ac_form_submit]”).click(function(){
if ( $(“p.collapse-“).css(“display”) == ‘none’ ){
$(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
}
return true;
});});
March 8, 2012 at 1:07 pm #131030In reply to: Feedback and help on my BP site
9087877
Inactive1.) Are you using forums for groups, or site wide forums?
2.) Did you make sure the discussion forums box is checked in dashboard/buddypress/components.
3.) If you used forums for groups you have to create a group first. This can be done in the front end under groups as long as your logged in. After you created a group, then click forums and create a topic.
4.) If your using a site wide forum you need to go to dashboard/forums/new forum and create the page and name it, then publish it. Then it will show up in the front end under your forums navigation. Just name your Topic, give it a description, and at the bottom of the screen click submit.
5.) You may also need to create a custom menu in dashboard/appearance/menus. Create a new menu, name it, save it. Where it says Theme Locations Primary Navigation click the drop-down menu select the name of the menu you just created and click save. Below you can now select your all your pages, click the check box’s then click add to menu, and in the left you can drag them to the order you want to appear on your navigation, then save the menu. I hope this helps!March 8, 2012 at 9:40 am #131021In reply to: Change Width of Buddypress and menus
@mercime
ParticipantOn issue#1 – need to clear cache. Better yet, open site with another browser. Added style works.
On issue #2, you might also want to try this plugin https://wordpress.org/extend/plugins/buddypress-profile-menu/installation/ where you’d have to add
``
just below your wp_nav_menu in your theme’s header.phpCaveat: you would need to manually change the div classes/ID of the menu UL/LI in the plugin’s bp-profile-menu.php file
-
AuthorSearch Results
<p class="expand-“>
<p style="display:none" class="collapse-“>Hide Comments
`
Please NOTE:
the “
should go above
`
and the “
goes under it.
Any question’s please contact me at
http://www.yadigit.net..
Username MrMike.
It should work just find for you.
Your welcome.