Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,201 through 1,225 (of 11,523 total)
  • Author
    Search Results
  • #209858

    In reply to: Managing too long URL

    webcreations907
    Participant

    Maybe you don’t have those selectors / class names on your theme? Not sure what theme you’re using, but when I test on this forum, in Chrome & Safari adding the above fixes the overflow issue, Firefox didn’t seem to have a issue.

    Try the below, you might have to refresh your browser so it loads the changes.

    
    .bbp-reply-content a, 
    .bbp-topic-content a{
    	word-wrap: break-word;
    	word-break: break-word;
    }
    
    
    #209843
    tinkerbill
    Participant

    Yes, I’ve had this recently. One of our users posted a series of test replies to a topic. Some of them appeared as normal, but about half just vanished into thin air, with no feedback at all.

    Obviously keen to get to the bottom of this 😐

    #209813
    Robin W
    Moderator

    ok, I can only suggest it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #209803
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #209756

    In reply to: Which widget is this

    Robin W
    Moderator

    @sirlouen – thanks, I’ve incorporated all those changes in 4.4.2

    Let me know if I missed anything

    and thanks so much for helping me improve my plugin – as a one man developer/tester it’s hard to spot where code can be improved !

    #209736
    Robin W
    Moderator

    ok, something will be stopping that

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #209716
    AnnieBVT
    Participant

    Hi 007elt, After much searching and some testing I found a solution that converts the HTML version of the text editor into a basic TinyMCE editor. However, you must have FTP or cPanel access to the backend files in order to add code to your theme/child theme’s functions.php file. Otherwise a plugin is the only other resort, and I prefer not to load up on plugins.

    If you have access, add these two code snippets. The first one will convert the text editor to a basic TinyMCE, and the second will strip out html code from content pasted into the text editor that was copied from another web page.

    function bbp_enable_visual_editor( $args = array() ) {
    $args[‘tinymce’] = true;
    $args[‘quicktags’] = false;
    return $args;
    }
    add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );

    function bbp_tinymce_paste_plain_text( $plugins = array() ) {
    $plugins[] = ‘paste’;
    return $plugins;
    }
    add_filter( ‘bbp_get_tiny_mce_plugins’, ‘bbp_tinymce_paste_plain_text’ );

    And, if you want to get rid of the word “Private” that displays in the title of a forum that is set to private, put this code in your child theme’s functions.php file also:

    function remove_private_prefix_from_title( $title ) {
    return ‘%s’;
    }
    add_filter( ‘private_title_format’, ‘remove_private_prefix_from_title’ );

    robertstaddon
    Participant

    This typo still exists, which continues to publicly display Private or Scheduled sticky posts in the latest version of bbPress 2.6.4.

    It can be easily fixed by correcting line 404 of the “bbpress/includes/topics/template.php” file to set $sticky_query[‘perm’] instead of $sticky_query[‘post_status’].

    This is the correct code that works:

    
    // Allowed statuses, or lean on the 'perm' argument (probably 'readable')
    $sticky_query['perm'] = bbp_get_view_all( 'edit_others_topics' )			? 
      $r['post_status']
      : $r['perm'];
    
    robertstaddon
    Participant

    I have the exact same problem as @artmuns on a brand new WordPress install. I’m running just the latest version of bbPress 2.6.4 with the latest version of WordPress and no other plugins on the default WordPress theme. On the Edit Topic screen, I can go to “Topic Attributes” and change the “Type” to “Sticky” or “Super Sticky”. However, once a topic type has been changed to “Sticky” or “Super Sticky”, if I try changing it back to “Normal” and then click “Update”, it will not change. I have to either go to the frontend or to the listing of All Topics and click “Unstick” to change the Topic type to something besides “Sticky”. This is definitely a bug with bbPress!

    #209658
    johntug
    Participant

    Hi Good afternoon ….

    I can see that this was a question before …. I have the same issue. I am a newbie to WP and bbPress.

    This is clean WP install using Pagebuilder by SiteOrigin and Advantage theme running bbPress. No modifications. with bbPress style pack, Akismet Anti-Spam and using Easy WP SMTP for emails.

    As administrator I get email notifications for new subscribers and for change of password requests so the email function is working.

    I have set up a test user and some posts making sure the “notify me of follow-up replies by email” is checked then as the administrator have replied to the post. My test user is not getting any notifications.

    Is there something I am missing that needs setting up or altering to send the reply notifications?

    Thanks in advance for your help.

    #209616
    L46
    Participant

    I deactivate all plugins except for bbpress, test to register but failed still.

    set up email to come from my site eg @mysite.com and
    contact my host provider (SG) to help – problem still.

    I install  https://wordpress.org/plugins/check-email/  
    admin accepted test email.
    but problem still too.now I deactivate plugin check-email.

    SG help me to set plugin”WP Mail SMTP” .problem still too.

    hope can assist me. thanks a lot.

    #209614
    L46
    Participant

    I checked and tested 4 times to register with the same account.but the site didnt noticed that cant register with the same account.and the user is not getting any registration email after each register.
    and I(admin) didnt get any notification about a new user too.
    I (admin)had got notification email when I set up a topic yesterday.

    i can create new user accountA successfully via wp dashboard.
    and admin and user accountA got the notice email .
    the user accountA got the registration email .
    but user accountA cant login .

    I try but no luck.
    Please help! thanks

    #209597

    In reply to: Managing too long URL

    SirLouen
    Participant

    Good idea, I’m going to test it

    #209585
    dtommy79
    Participant

    Hi,

    My forum stat widget looks like this: https://www.dailyenglishtests.com/forums/

    How do I display the numbers and the text in one line?

    Thanks

    L46
    Participant

    HI,
    site: https://www.visionshe.com
    admin@visionshe.com

    I checked and tested 4 times to register with the same account.but the site didnt noticed that cant register with the same account.and the user is not getting any registration email after each register.
    and I(admin) didnt get any notification about a new user too.

    I (admin)had got notification email when I set up a topic yesterday.

    I try but no luck.
    Please help! thanks

    #209579

    In reply to: writing to contents

    Clivesmith
    Participant

    Hi Robin,

    Thank you, if I add that to my functions file, it adds it to a new reply perfectly if I as admin create that new reply.
    But it does not work if a guest replies (it is normal for my replies to be from guests) all replies go to moderation and at the moment, before I approve the reply by publishing I add test at the end of each content. It is when I click publish that I want it to add the text.

    Regards

    Clive

    #209565
    kasperdalkarl
    Participant

    Thanks for posting this. I installed the plugin, and added

    			// Paragraph
        	'p'          => array(
        	    'class'    => true,
            	'style'    => true,

    But sadly I still get this in cleartext:
    <p style=”text-align: center;”>Test 3</p>

    Any suggestions? Thanks!

    #209563
    kasperdalkarl
    Participant

    Hi!

    I was wondering if anyone knows how to allow users to align text in posts/threads?
    Right now it just comes out as raw code text:
    <p style=”text-align: center;”>Test test test</p>

    I have been trying to mess a bit in /wp-content/plugins/bbpress/includes/common/formatting.php but to no success. Does anyone have a suggestion on how to allow p style and text alignments?

    Thank you!

    #209545
    WorldWideWebb
    Participant

    Seen this one come up a few times in this forum, but have yet to see a fix. Hopefully the following additional details help to diagnose the threaded replies not working very well:

    – It is not a conflict with my theme (I switched to 2019 and disabled all plugins).

    – The issue does not occur when I am logged in as an administrator (nested/threaded replies work fine if I’m logged in with my admin account) or when all other plugins are disabled.

    – Re-enabling WooCommerce makes the issue come back (so that suggests that there is some interaction with WC that is causing this).

    – When the issue is present, the reply form briefly appears where it’s supposed to (directly below the reply that I am replying to), but the page then redirects to the same page with querystring parameters appended to the URL. Example: mysite.com/topic/the-topic-title/?bbp_reply_to=7330&_wpnonce=bb385daa6e#new-post

    – Also when the issue is present, I see the following js errors in the console when I hit reply:

    “TypeError: event.target.matches is not a function” – touch-keyboard-navigation.js:277:22
    “TypeError: d is null” – reply.min.js:3:997 (appears to have to do with scrolling, probably what’s in charge of scrolling the page down to the reply form)

    I’m guessing that maybe this redirection should be disabled somewhere? I can’t interrupt it to test out whether the reply would work correctly if the page didn’t redirect me first.

    Since WooCommerce is such a common plugin, I’m hoping this issue can be addressed.

    Karen Drost
    Participant

    I just got an email from a user who cannot edit his post. Looking at my settings, I found I had “Disallow editing after” set to 5 minutes. Underneath, it reads:
    When this is checked, the setting to “0 minutes” makes it possible to always edit.

    So, I entered 0 and hit Save. When I check the setting, it says 5 again. I tried several times, always with the same result (duh!). Any ideas how to fix this?

    For now, I have entered a string of 999999999999, but that’s not very elegant, is it now?

    I’m on the latest version of both WP and bbPress, using Twenty Sixteen as my theme.

    #209428
    Stephen Ekpa
    Participant

    Wow…Thanks for these code.
    I tested it on my test site with newmag wordpress theme by tagdiv and it worked.
    But on the main site, I’m using Jnews Child theme. I tried it, but it did not work. Perhaps it because I don’t know which function.php to use; main theme or child theme funtion. Tried with child theme, but it did not work.

    #209391
    SirLouen
    Participant

    @robin-w This is not working as expected and I think there is a bbpress bug. I’m currently testing in my localhost but I think I will publish on trac what I’m finding

    #209342
    SirLouen
    Participant

    Is it possible to remove user icon from revisions?

    Edit: testing

    #209334
    theicebooky
    Participant

    Hey,

    I have created a website where my users are allow to create their own Forums… However, when I tested it out as a user, I can’t create a Forum without a “Parent Forum.”

    Is there a way to allow my users to create Forum without needing a Parent Forum. (Or somehow create a “Parent Forum” by themselves)

    Thank you very much!!!

    #209326

    In reply to: Freshness is way off

    Alexander Agnarson
    Participant
Viewing 25 results - 1,201 through 1,225 (of 11,523 total)
Skip to toolbar