Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 2,876 through 2,900 (of 22,686 total)
  • Author
    Search Results
  • #273762
    Varun Dubey
    Participant

    @shahriar83 You have already created a thread with BP activity plus support, Explain to them how to replicate the issue.

    You can replicate the issue with Template Pack BuddyPress Nouveau after BP 3.0 install using WordPress Default theme “Twenty Seventeen” at singe group activity page.

    #273758
    harry74
    Participant

    Hello,

    I’ve been struggling for days with oEmbed, but I’m not a coder nor very experienced in WP so no luck yet. I want to be able to post on the activity stream from almost any source and generate a preview (same as on Facebook, Tumblr etc). First of all, even some major sites (Facebook, Flickr, Tumblr) from the WP whitelist do not generate a preview when posting a link in activity. A bug maybe? Also, Activity Plus and rtMedia are not solutions, because I tried them and both have problems. I should point out that I have multisite and BP Multi Network and have set BP_ENABLE_MULTIBLOG as true.

    Two very good plugins are Iframely and Embedly. The problem with the first is that there’s a limit of embeds in the free version and it doesn’t support as many sites as I need. Embedly does, but here’s the problem. When activated, there seems to be a conflict with some of the default embed providers of BP, like Vimeo and Youtube. A preview is still generated, but it is only a dead image of the video. You cannot click play or click on the title and open the video in a new tab. So the plugin becomes essentially useless (nobody could afford to have a social network where users can’t post YouTube videos). There’s a similar problem with Iframely (the YouTube video is OK but there’s a big blank area beneath it), but they have an option “Do not override default embed providers” that solves the problem. Unfortunately Embedly doesn’t have such an option. Does anyone know if I could force it somehow to do the same? (I have already contacted their support days ago but they never answered.)

    Then, I thought to remove YouTube from the oEmbed providers list with

    <?php wp_oembed_remove_provider( $format ) ?>

    hoping that this would eliminate the conflict, since Embedly alone would handle YouTube links. I’m not sure what I did it wrong, because at first I pasted this code as a test:

    <?php wp_oembed_remove_provider( ‘http://wordpress.tv/*&#8217; ); ?>

    (with the < >) in the wp-includes/media.php file at the end and it returned syntax error, unexpected ‘<‘. Then I tried:

    wp_oembed_remove_provider( ‘http://wordpress.tv/*&#8217; );

    No error this time, but nothing changed. I could still post a link from wordpress.tv and a preview was generated. Can someone explain how to do this correctly? And do you think that if I remove YouTube from the providers it will solve the issue?

    Finally, I found out about oEmbed Discovery. The documentation is not very clear, so I’m not even sure what exactly it is supposed to do if enabled. Does it allow content from any site to be embedded? Or does it have limitations too? And what does it mean “you can give unfiltered_html users (Administrators and Editors) the ability to embed”? If I used it, would I have to give every new user editor role so that they could post? Anyway, the thing is I installed the Enable oEmbed Discovery plugin, but absolutely nothing changed. I tried some test posts from various websites and only the link was posted as usual. Any idea what went wrong?

    I tried all the above with network activation, per site activation, network and per site together, everything… but to no avail. Any help will be greatly appreciated because this is a huge problem for my site. Sorry for the long post, at least I hope it might help others too with similar issues. Lastly, if anyone proposes a solution which includes some code, please mention where I should paste it (I do have a bp-custom.php file).

    Thanks in advance

    #273749
    Varun Dubey
    Participant

    I am able to replicate the issue, You can report here once
    https://wordpress.org/support/topic/problem-with-new-buddypress-template/

    #273746
    Varun Dubey
    Participant
    #273727
    Varun Dubey
    Participant
    #273713
    filipponeri20
    Participant

    Thanks a lot @sharebophar for your solution. I had to do a little of adjustment but it was right on the spot!

    PROBLEM:
    buddypress nouveau not sending activation email but buddypress nouveau sending correctly emails to user for notifications on manually activated users. So in my case the problem was ONLY that the validation email was not sent. I say ‘only’ from a technical perspective but from the user perspective was a VERY BIG issue. Again thanks @sharebophar for your solution
    Also note that I am not running a wordpress multisite.

    SOLVED:
    Here are the steps I have employed:

    STEP 1
    a) browse to “/bp-core/bp-core-functions.php” in buddypress plugin directory
    b) replace the code for ‘core-user-registration’ and ‘core-user-registration-with-blog’ with the following one

    	'core-user-registration' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate your account', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link: <a href=\"{{{activate.url}}}\">{{{activate.url}}}</a>", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
                            'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link: {{{activate.url}}}", 'buddypress' ),
    		),
    		'core-user-registration-with-blog' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate {{{user-site.url}}}', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: <a href=\"{{{activate-site.url}}}\">{{{activate-site.url}}}</a>.\n\nAfter you activate, you can visit your site at <a href=\"{{{user-site.url}}}\">{{{user-site.url}}}</a>.", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: {{{activate-site.url}}}\n\nAfter you activate, you can visit your site at {{{user-site.url}}}.", 'buddypress' ),
    		),

    STEP 2

    a) go to wordpress dashboard, settings, buddypress
    b) select and run the ‘repair email’ option

    STEP 3

    all now works. I have been testing it with dummy users. I hope the whole explanation helps.
    Regards

    #273708
    Varun Dubey
    Participant
    Varun Dubey
    Participant
    #273695
    Paul Wong-Gibbs
    Keymaster

    Imagine a BuddyPress Template Pack as something analogous to a WordPress theme. You can’t have a child theme compatible with multiple parent themes.

    And you can’t have a template pack compatible with multiple themes. I don’t think there is anything in the template hierarchy – like the named folders that you suggest – that would let you do this. I suppose we could add something but I do not think this would be a good thing for the project at the moment.

    We have discussed a concept of multiple small template packs being active at the same time and we might want to support this sort of folder structure then. But not now.

    filehippofree
    Participant

    I honestly don’t know of another plugin that does this. I took a look at that version today and it’s not only WordPress 3.0 that it needs to be updated for but some BuddyPress stuff as well.

    Anyone know of a solution to help out Max with this? I’d think this is something others would appreciate as well.
    filehippo

    Thanks!

    #273678
    redtreetech
    Participant
    blenderitalia
    Participant

    I solved,
    I point out that in this link the solution is wrong …. missing a “{”
    https://buddypress.trac.wordpress.org/ticket/7845#ticket

    the correct solution is this and it works

    if ( isset( $_POST[ ‘field_’ . $field_id ] ) and !is_array( $_POST[ ‘field_’ . $field_id ] ) ) { // FIXED!!
    $_POST[ ‘field_’ . $field_id ] = trim( $_POST[ ‘field_’ . $field_id ] );
    }

    #273666

    In reply to: registration

    Varun Dubey
    Participant

    @omshankar You can try https://wordpress.org/plugins/lock-my-bp/ plugin to keep your site for members only and it will also add login and register links locked pages

    Varun Dubey
    Participant
    #273656

    In reply to: multi user types

    Varun Dubey
    Participant
    #273630

    In reply to: Few things

    Varun Dubey
    Participant

    @omshankar no need to hide the complete toolbar, you can change option for WordPress logo inside plugin with your custom logo

    #273626
    Varun Dubey
    Participant

    @bassibabes1 for your site I got verification email after 30 min,
    http://prntscr.com/jn6f9b

    @smilingdeep
    You will need to copy files from subfolder to public_html and then update path inside Setting >> General once site live, you can delete deep/wordpress/ folder

    #273625
    smilingdeep
    Participant

    Finally, the champion has found the solution. Thanks a lot @sharebophar

    Everyone who is having email problems on BuddyPress nouveau version can find the solution here Fix Here.

    Open your web directory and browse to “/bp-core/bp-core-functions.php” in buddypress plugin directory.

    Now replace the text highlighted in red with text highlighted in green.

    I think the BP Dev team should make a public announcement for this fix so that users like us don’t trouble themselves for days finding this solution.


    @vapvarun
    @bassibabes1 and @sharebophar thanks a lot for your kind assistance.

    #273623
    Varun Dubey
    Participant
    #273622

    In reply to: Few things

    Varun Dubey
    Participant
    #273618
    smilingdeep
    Participant

    @vapvarun how can I keep this if my wordpress installation directory is “public_html/deep/wordpress”?

    If I open http://www.friendsite.in it shows directory.

    #273617
    Varun Dubey
    Participant

    @smilingdeep keep the address same inside WordPress url and Site url
    as your primary path https://www.friendsite.in

    #273615
    smilingdeep
    Participant

    At your site, you have to path
    friendsite.in/deep/wordpress/register
    friendsite.in/register
    Are there two separate installs or you are using something to change installation path?


    @vapvarun
    As mentioned in BuddyPress requirements, wordpress shouldn’t have it’s own directory. So I installed it in “public_html/deep/wordpress”. Now because it looks messy and shows site directory when I try to open https://www.friendsite.in, so I changed website address in wordress> general settings.

    Is there any problem in this?

    #273607

    In reply to: export data

    Varun Dubey
    Participant
    #273606
    Varun Dubey
    Participant

    @smilingdeep
    At your site, you have to path
    friendsite.in/deep/wordpress/register
    friendsite.in/register
    Are there two separate installs or you are using something to change installation path?

Viewing 25 results - 2,876 through 2,900 (of 22,686 total)
Skip to toolbar