Search Results for 'wordpress'
-
AuthorSearch Results
-
November 15, 2013 at 3:52 am #174254
In reply to: Share Users
martinbeaulne
Participant@henrywright-1 : two words: multi language. I read your link, and almost all the comments. Someone tells the author about multi language, and the author seems to agree about the utility of multisite for multi language sites.
And relying on plugins to translate content is not a solution, for many reasons.
I read more and more about the multisite option, and it seems cool. But I’m not really happy about having to learn all that new stuff right now. It’s a free website I’m creating for fun and to help a community, you know..
Since I already have the site at http://www.cinemacontact.com/fr/ ( when I started the project, I thought maybe I’d have to make some other versions of the site with other languages, so I put it in /fr/ directory right at the beginning… ), and I am guessing I’ll have to destroy it if I want to go multisite.
As I read it, it seems like I’ll have to put a main site in the root, then other “sites” in /fr/ and /en/ and such… And I can’t just “move” my current /fr/ site to the root… I think.
Does this looks logic ? The steps would be:
1 – Install a fresh wordpress in cinemacontact.com’s root folder, with a new DB.
2 – Customize the template and plugins exactly like I did for my /fr/ site.
3 – Create a site, from the network admin, in the /en/ subfolder.
4 – Copy the users from the DB already populated I used in my /fr/ site to the new root’s DB.
5 – Test the /en/ site, with data and everything.
6 – If it works, delete the /fr/ site and re-create it via the root network admin.
7 – Translate the /en/ site and publish it.*Only at step 6 will be a brief interruption of service because I’ll be messing with my actual /fr/ site.
Does that seem correct ? I don’t want to screw up, because people are actually using the site…
Thanks a lot for your help..
November 14, 2013 at 8:38 pm #174241In reply to: BP Buttons are unreadable
modemlooper
Moderatoryou could always use one of the plugins that add css https://wordpress.org/plugins/simple-custom-css/
November 14, 2013 at 7:18 pm #174238In reply to: Share Users
Henry
MemberAnd, if possible, not messing with multisite as I think it is overkill for the purpose
To me, multisite sounds like it is exactly what you’re looking for but I could be wrong without seeing your exact requirements. Have a read of this article written by one of the moderators on wordpress.org – it should give you a good idea if multisite is for you:
November 14, 2013 at 6:09 pm #174234In reply to: Gray box on BuddyPress
@mercime
Participant@monaloco So you have a screenshot of the issue. For a moment there you had me confused as to how you got BuddyPress in a WordPress.com account 🙂
As to the issue, it’s possible that it could be resolved by simply tweaking styles in your theme’s style.css file. We need to see the site/webpage, site url?
November 14, 2013 at 4:18 pm #174232In reply to: BP site slow to load
Ben Hansen
Participantdid you check the very last link on the bp optimization page? its advice from your exact hosting company:
http://www.rackspace.com/blog/optimize-your-wordpress-site-with-w3-total-cache/
November 14, 2013 at 4:10 pm #174231In reply to: Share Users
Ben Hansen
Participantmight want to look into this:
November 14, 2013 at 1:25 pm #174225In reply to: WordPress Social Invitations
Damian
ParticipantThe free version is in wordpress.org/plugins/wp-social-invitations/
November 13, 2013 at 8:51 pm #174205In reply to: need help stretching background image in IE
mattg123
ParticipantNo need…. I’ll just explain it slightly better you’re using a buddypress child theme, so you need to create a folder inside _inc called “js”. For me, this holds all my javascript files in this case, you’ll put backstretch.js here (make sure the name is backstretch.js)
Next step is putting the background image in the folder _inc as well, place your image inside “images” within _inc, name it background.(whatever)
Now we need to add the code so that wordpress uses these files – we can add it to our functions.php
function backstretch_script() { wp_register_script( 'backstretch', get_stylesheet_directory_uri() . '/_inc/js/backstretch.js', 'jquery', '1.8.3', true); wp_enqueue_script( 'backstretch' ); } add_action( 'wp_enqueue_scripts', 'backstretch_script' ); function backstretch_add() { ?> <script type="text/javascript"> jQuery.backstretch("<?php echo get_stylesheet_directory_uri()?>/_inc/images/background.jpg"); </script> <?php } add_action ('wp_footer', 'backstretch_add', 20);add that code as is – you may want to change the .jpg to .png or whatever file type your image is.
If for some reason you don’t want to place backstretch.js or your background image in those folders, you’ll need to modify these two lines to the new location.
wp_register_script( 'backstretch', get_stylesheet_directory_uri() . '/_inc/js/backstretch.js', 'jquery', '1.8.3', true);
jQuery.backstretch("<?php echo get_stylesheet_directory_uri()?>/_inc/images/background.jpg");Hopefully that’s slightly clearer
November 13, 2013 at 5:51 pm #174195davaguco
ParticipantMy wordpress was working perfectly before installing buddypress. I installed buddypress, I didn’t upgrade it from another version.
Henry
MemberYes, it’s possible and very easily done using:
https://wordpress.org/plugins/buddypress-followers/November 13, 2013 at 3:22 pm #174183In reply to: Confirmation Message
derock299
ParticipantThanks Guy, but the problem here is that I do all my work on line, so how will I be able to edit the php from my browser, or can I do it from wordpress editor? if yes please how do I nevigate to the file and edit it?
November 13, 2013 at 4:07 am #174166In reply to: Remove User Activations
olumi_day
ParticipantWhoops! The link to the activation disabling plugin is actually here:
https://wordpress.org/plugins/bp-disable-activation-reloaded/
November 13, 2013 at 4:01 am #174165In reply to: Remove User Activations
olumi_day
ParticipantThank you for the prompt response. In my haste, I ended up using this plugin: ( http://www.timersys.com/plugins-wordpress/bp-disable-activation-reloaded ) although it wasn’t the ideal choice since I’m already using a lot of plugins.
I will definitely try this code out although the “Check Your Email to Activate Your Account” notification could still pose a problem. It just sounds like the kind of thing that wouldn’t bother me at first but then I would quickly become nitpicky about. Either way, I’m happy to just have a nice, easy way to override the activation email without the use of a plugin.
I do wonder if the users that had already registered prior to me using this override will be able to now log in just fine without still needing the activation email. I did a few test runs using the plugin I mentioned above and found that users who registered prior still needed the activation code to log in.
Finally, the help tour is a custom plugin built on top of twitter’s bootstrap 3 framework. I found the code for it here: http://bootstraptour.com/
It was very easy to install and only worked because the theme I’m currently using is built on the bootstrap framework.November 13, 2013 at 1:49 am #174160In reply to: Remove User Activations
shanebp
ModeratorYou can avoid the need for activation email by using this code in bp-custom.php
function bp_disable_validation( $user_id ) { global $wpdb; $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d", $user_id ) ); } add_action( 'bp_core_signup_user', 'disable_validation' ); add_filter( 'bp_registration_needs_activation', '__return_false', 100 );But the next screen will still inject this $title:
“Check Your Email To Activate Your Account!”Even with a template over-ride!
I think it’s reasonable that if this filter is applied:
add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );That you shouldn’t need a database operation.
And the $title should not be injected.Currently, the only way I see to change that $title is to hack a core file.
Hacking core files is NOT recommended.
That said, see:
plugins\buddypress\bp-members\bp-members-screens.php and find Line 515.[ I’d love to be wrong about all this and hope somebody has an easier approach. ]
If you’d like to help BP and anyone else trying to solve this problem,
please submit an enhancement ticket at https://buddypress.trac.wordpress.org/
Use the same user / pw you use here.Now… a question for you… On your site http://causeanddesign.com you have a very nice help tour using overlay boxes. The first box says: “Welcome. Every nonprofit deserves good design and good technology.”
Did you write a custom script / plugin for this?
Or find an existing plugin?November 12, 2013 at 8:59 pm #174151In reply to: Cookie error after upgrading to WP 3.7.1 from 3.6.1
Pin
Participantfixed using: https://buddypress.trac.wordpress.org/changeset/7485
November 12, 2013 at 8:57 pm #174150Pin
Participantan alternative is to change few lines on the login form’s code as posted here: https://buddypress.trac.wordpress.org/changeset/7485
Cheers
November 12, 2013 at 6:02 pm #174134In reply to: How to allways add the admin…
@mercime
ParticipantNovember 12, 2013 at 6:00 pm #174133In reply to: How can i delete my account
@mercime
Participant@shaunmacrae We don’t delete BuddyPress accounts which are tied to WordPress accounts. Just don’t use it.
November 12, 2013 at 12:33 pm #174116Cam
ParticipantNovember 12, 2013 at 10:20 am #174111In reply to: Change default email wordpress@mydomain.com
Asynaptic
Participantfound it! add this to functions.php
add_filter(‘wp_mail_from’, ‘new_mail_from’);
add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’);function new_mail_from($old) {
return ‘ENTER NEW EMAIL HERE’;
}
function new_mail_from_name($old) {
return ‘ENTER NAME HERE’;
}November 12, 2013 at 9:17 am #174108danbp
Participanthi @dvize,
you making reference to documentation relating to BP 1.5. Many things have changed since 15 versions ! See changelogs here.
But you’re right, searching is a complex thing anyway.To remove the header search box, you have 2 easy solution.
1) create a child theme and remove the form code who is in header.php
2) use CSS to hide the box/* hide the header search box */ form#search-form { display:none; visibility: hidden; }November 12, 2013 at 8:41 am #174107In reply to: Image gallery plugin with buddypress
danbp
Participanthi @rukiar7,
avaible BuddyPress plugins are listed here.
As BP is only a WordPress plugin, you can use many other plugins aside, and depending your php skills, you can integrate or let them play more or less easily with BP.
Those WP plugins are here.Maybe the only one actually who’s really integrated with BP, you have rtMedia for BuddyPress. Exist also in Pro version. Give it first a try with the standart edition and see if it is working for you.
November 12, 2013 at 3:20 am #174099Asynaptic
Participantupon further research I found these:
http://tollmanz.com/partial-page-templating-in-wordpress/
in comments, TJ Thomas writes on May 6, 2013 at 8:51 pm:I’m playing with BuddyPress and watching my load times disappear. (I’ve been using Redis in front of APC and have been getting 0.002 sec load times), but with the new dynamic of having a “social site” CPU and memory are getting a workout. I can really see that this MUST happen and I hope you are an impetus.
http://eamann.com/tech/ludicrous-speed-wordpress-caching-with-redis/
https://github.com/BenjaminAdams/wp-redis-cache
Wp Super Cache Page generated in 0.318 seconds.
W3 Total Cache Page generated in 0.30484 seconds.
Wp Redis Cache Page generated in 0.00902 seconds.
WHAT?!? 0.00902 seconds?!?
I can’t believe this. Is this for logged in users as well?
/mind blown
November 12, 2013 at 2:59 am #174098danbp
Participant@crazycoolcam
thank you for the fix. Works like a charm.
I opened a ticket about this. https://buddypress.trac.wordpress.org/ticket/5236#ticketNovember 11, 2013 at 8:13 pm #174077In reply to: Buddypress "share on mysocialnetwork"
@mercime
Participant -
AuthorSearch Results