Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 8,501 through 8,525 (of 22,672 total)
  • Author
    Search Results
  • #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..

    #174241
    modemlooper
    Moderator

    you could always use one of the plugins that add css https://wordpress.org/plugins/simple-custom-css/

    #174238

    In reply to: Share Users

    Henry
    Member

    Hi @martinbeaulne

    And, 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:

    Don’t Use WordPress MultiSite

    #174234

    In 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?

    #174232

    In reply to: BP site slow to load

    Ben Hansen
    Participant

    did 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/

    #174231

    In reply to: Share Users

    Ben Hansen
    Participant

    might want to look into this:

    https://wordpress.org/plugins/wp-multi-network/

    #174225
    Damian
    Participant
    #174205
    mattg123
    Participant

    No 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

    #174195
    davaguco
    Participant

    My wordpress was working perfectly before installing buddypress. I installed buddypress, I didn’t upgrade it from another version.

    #174185

    In reply to: Follow

    Henry
    Member

    Yes, it’s possible and very easily done using:
    https://wordpress.org/plugins/buddypress-followers/

    #174183

    In reply to: Confirmation Message

    derock299
    Participant

    Thanks 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?

    #174166
    olumi_day
    Participant

    Whoops! The link to the activation disabling plugin is actually here:

    https://wordpress.org/plugins/bp-disable-activation-reloaded/

    #174165
    olumi_day
    Participant

    Thank 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.

    #174160
    shanebp
    Moderator

    You 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?

    #174151
    Pin
    Participant
    Pin
    Participant

    an alternative is to change few lines on the login form’s code as posted here: https://buddypress.trac.wordpress.org/changeset/7485

    Cheers

    #174134
    @mercime
    Participant
    #174133
    @mercime
    Participant

    @shaunmacrae We don’t delete BuddyPress accounts which are tied to WordPress accounts. Just don’t use it.

    #174116
    Cam
    Participant

    You’re welcome @danbp. It appears that another fix is on its way and it is set to be included in 1.9.

    These my fix and the official BP fix tackle the issue differently, but they shouldn’t conflict.

    See #5219 for details on the official fix.

    ~Cam

    #174111
    Asynaptic
    Participant

    found 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’;
    }

    danbp
    Participant

    hi @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;
    }
    #174107
    danbp
    Participant

    hi @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.

    Asynaptic
    Participant

    upon 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

    danbp
    Participant

    @crazycoolcam
    thank you for the fix. Works like a charm.
    I opened a ticket about this. https://buddypress.trac.wordpress.org/ticket/5236#ticket

    #174077
    @mercime
    Participant
Viewing 25 results - 8,501 through 8,525 (of 22,672 total)
Skip to toolbar