Search Results for 'theme'
-
AuthorSearch Results
-
September 10, 2016 at 4:12 am #258592
In reply to: Activity feed difficulties
karmatiger
ParticipantYeah, I’ve ben talking to SeventhQueen, makers of the Kleo theme I’m using, but their response to almost every question asked is “have you tried looking for a plugin that will do what you want?”
September 9, 2016 at 4:41 pm #258584danbp
ParticipantHi!
1) yes – as i already explained
2) yes
3) the solution is to patch the file manually. It will be available in a future bbPress update, but i ignore the date… It’s better to patch immediatly, update can be in a long time.
Here is the patch.
– In red you see the current code.
– In green the new one you can use.Remove the line in red and replace it by the green one. Note this modification in a safe place, in case the patch won’t be applied at next bbP update. This can happen and is available for absolutly any plugin, theme and even WP when it comes to patch core files.
You see also the line number so it’s very easy to find it inside the file.
The concerned file is mentionned in bold, above the diff. code itself.
FYI the complete path iswp-content/plugins/bbpress/includes/extend/buddypress/activity.phpI suppose you know how to copy/paste ? 🙂
September 9, 2016 at 10:22 am #258559In reply to: removing DELETE from activity stream
jbboro3
ParticipantWhy don’t you just put this two lines of css code in your theme’s css or custom css page instead of trying to get into functions files..
a.button.item-button.bp-secondary-action.delete-activity.confirm {
display: none;
}
a.delete.acomment-delete.confirm.bp-secondary-action {
display: none;
}September 9, 2016 at 10:03 am #258556In reply to: Activity feed difficulties
Henry Wright
ModeratorWith reference to the animation, have you tried contacting the theme’s author? Usually when there’s an issue like this it’s worth reporting it so they can issue a global fix.
September 9, 2016 at 8:13 am #258546In reply to: CSS causing cover image to disappear.
karmatiger
Participantwhere did you place the function? When I put it in bp-custom.php the cover image still crashes when I upload copies of the css files to buddypress/css to my Kleo child theme
September 8, 2016 at 8:44 pm #258540In reply to: removing DELETE from activity stream
shanebp
ModeratorAre you referring to the Delete button on an activity item?
If so, create a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\activity\entry.php
And then remove this line:
<?php if ( bp_activity_user_can_delete() ) bp_activity_delete_link(); ?>September 8, 2016 at 1:59 pm #258524In reply to: default cover photo problems
karmatiger
Participantisn’t fixing a snippet of code easier? all I need is to check whether or not there’s already a cover photo already attached to that profile.
Every time there’s a problem with the theme as it is, seventhqueen says “add this 3rd party plugin”. I now have 33 plugins already running, which isn’t doing any wonders for performance, or a tidy backend, and throwing more plugins at things will only exacerbate the problem.
September 8, 2016 at 12:13 pm #258517Topic: “Create Group” button not showing
in forum How-to & Troubleshootingclaudiosinopoli
ParticipantHi there,
I recently installed WordPress 4.6.1 and BuddyPress 2.6.2
I’m using a child theme of the Enfold theme by kriesi.at and everything runs nice but the “Create Group” button inside the Groups page is missing so I can see only “Memberships” and “Invitations”.
It works though with the theme Twenty-Fourteen and Twenty-Fifteen but not with the Twenty-Sixteen.
I was googling this and most of the people says that’s an issue related with fact that the_title(); tag in the theme’s page.php is placed “outside the WordPress loop”.
Unfortunately nobody has a solution.
Can you please tell me how to fix this issue? Some php lines in the child’s functions.php or something like that?
Thanks a lot.September 7, 2016 at 7:54 am #258481acedesign123
ParticipantHi @danbp
Thank you for the response, however I am new to BuddyPress, but I do know Theme Dev in WP in Gen, my situation is this,
I want to remove all other steps and just fill in the details as you see on the first screen and just click finish, and have the group created. That is all.
I just tried the :: Remove Sub-Nav Tabs from the link you provide and it does not work.
Secondly, should I be putting the code onbp-custom.phpRegards
AceSeptember 7, 2016 at 7:49 am #258480In reply to: identify code
danbp
Participanthi,
September 6, 2016 at 10:43 pm #258473In reply to: Creating Custom Member Types
Joshua Blevins
ParticipantI am really confused about how a child theme overrides a standard theme. So does the child theme just have to be named Twenty Sixteen Child and it will override Twenty Sixteen?
September 6, 2016 at 8:50 pm #258469In reply to: identify code
danbp
ParticipantHave you tried to use my snippet example ?
The code in the Themekraft tutorial is outdated. Current reference is the Nav API.September 6, 2016 at 7:01 pm #258465In reply to: identify code
idichoo
ParticipantI saw this above tried to rename the menu items but it does not work
Can you help?
pre type=”php”
$bp->bp_nav[‘activity’][‘name’] = ‘wall’;
/preSeptember 6, 2016 at 6:18 pm #258462In reply to: Creating Custom Member Types
danbp
ParticipantArrrgggl ! 🙂 You’re loosing your time by trying to do that. BP Default will be definetly built out soon.
Read WP codex about child theme and use this solution in any case. Whatever change you make in a core file will be owerwriten at next update. Theme modification should be made from within a child-theme, so it is safe even when an update is made on the original.And read at least here about BuddyPress theming.
September 6, 2016 at 5:55 pm #258459In reply to: BuddyPress on hosted shared server
danbp
Participant1) if you plan high traffic, don’t use a shared host but a VPS. You may also need access to php.ini, as the memory_limit often lacks on shared host (you need at least 128mo for this to get BP running in good conditions).
2) difficult to answer. What the difference between 10GB of space(on your host or on a cloud) and 10GB of cached files ? Not the space, but the speed. I presume you will need space AND speed.
3) to increase performance, you have first to install correctly WP, theme and plugins. Set up some rules about image size and a lot of other little things related to what user can do/or not on the site. Wait for traffic and compare to know if it worth to go further with performance (as this may be a paid service). WP Rocket (premium plugin) may be one of such a tool.
September 6, 2016 at 5:44 pm #258457In reply to: Creating Custom Member Types
Joshua Blevins
ParticipantIf I change code like the h3 tags or something will the changes show up on the members directory page? I am trying to modify the bp-default because im not very familiar with child themes. I figure if I modify the parent theme it would show up on the main theme right?
September 6, 2016 at 5:31 pm #258453In reply to: Creating Custom Member Types
danbp
ParticipantHi !
bp-default is a deprecated theme since 1.7 (2013) and only in for backward compatibility.
If you use latest BP, you can use almost any existing theme and preferably with a child-theme if you customize your site.
Custom code can be added to bp-custom.php or into child-theme’s functions.php
References
bp-custom.php
member_typesSeptember 5, 2016 at 8:03 pm #258423ndsailor
ParticipantThanks Everyone!
I went back to the tried and true deactivate-plugins-and-themes method and I did find a culprit. Edit Flow is causing the problem. I have let the plugin author know.
Appreciate the help.
JWSeptember 5, 2016 at 7:25 pm #258420In reply to: Buddypress not sending activation emails
zpaulypaul
ParticipantIm using Lush by IronTemplates.
Recently upgrade from a lower version to the newest version. Thats when I found this problem.
I also find it weird I dont see Buddypress widgets within Visual Composer. They show up in Page Builder plugin, but I cant use that plugin with this theme, that is why I had to upgrade. And now that I upgraded emails arnt being sent. WEIRD!September 5, 2016 at 4:46 pm #258410In reply to: How to Change the From Email for Activation
steigw
ParticipantIt’s a staging site that doesn’t have public access, but I can put the code and info in here. Here is the complete code of the functions.php in the child theme. maybe I just put it all together wrong.
<?php function nisarg_enqueue_styles() { $parent_style = 'nisarg-style'; wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/font-awesome/css/font-awesome.min.css' ); wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'nisarg-child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) ); } add_action( 'wp_enqueue_scripts', 'nisarg_enqueue_styles' ); ?> <?php function custom_wp_mail_from( $email ) { $handle = ‘accounts’; $find = 'http://'; $replace = ''; $link = get_bloginfo( 'url' ); $domain = str_replace( $find, $replace, $link ); return $handle . '@' . $domain ; } add_filter( 'wp_mail_from', 'custom_wp_mail_from' ); ?>The email link is:http://mydomain.com/activate/JA0BvkK1Q0DND10SYegdOtkTMemhGUF0/
When I click on it immediately, I get all this:
Fatal error: Uncaught exception ‘phpmailerException’ with message ‘Invalid address: ‘accounts’@mydomain.com’ in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php:946 Stack trace: #0 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(352): PHPMailer->setFrom(‘\xE2\x80\x98accounts\xE2\x80\x99@…’, ‘WordPress’) #1 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(1726): wp_mail(‘webmaster@arlin…’, ‘[My Dev Sit…’, ‘New user regist…’) #2 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-functions.php(2031): wp_new_user_notification(18) #3 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-screens.php(364): bp_core_activate_signup(‘JA0BvkK1Q0DND10…’) #4 [internal function]: bp_core_screen_activation(”) #5 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/plugin.php(524): cal in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php on line 946
If I wait a while, then I get the normal webpage and it says “invalid activation key”. I don’t understand the significance of an immediate click on the link in the email vs. waiting a few more seconds, but it definitely matters.
September 5, 2016 at 4:24 pm #258409In reply to: Buddypress not sending activation emails
Paul Wong-Gibbs
KeymasterWhich theme did you upgrade? From what version to what version?
September 5, 2016 at 3:51 pm #258402In reply to: Your connection to this user
danbp
ParticipantFYI, minutes vs. hours ! 🙂
When you search strings, open the .pot file provided with almost any theme and plugin for translation.
In this text format file, you will find (if exist) the string and ALSO the file and the line # where it is used.The default profile content
September 5, 2016 at 3:42 pm #258399In reply to: Your connection to this user
David Bisset
ParticipantCan you include a screenshot?
Are you sure this functionality isn’t coming from or be altered by another plugin or your theme?
September 5, 2016 at 1:44 pm #258396In reply to: How to Change the From Email for Activation
steigw
Participantonly broken with that custom code, which I found in another post and worked for their theme/bp/wp setup. To try @danbp’s suggestions, I’ll need to find examples where more code is provided.
September 5, 2016 at 1:13 pm #258393In reply to: problem with confirmation code
israelle
Participantthank you Paul @djpaul for your replay
i’m using host – http://www.hostinger.co.il its a free host for php and wordpress websites
those are the plugins in my siteClef
Limit Login Attempts
Mailgun integration for WordPress
Regenerate Thumbnails
WooCommerce
Akismet
buddypress
bbpress
wipi Hebrew theme page editor
hello doli -
AuthorSearch Results