Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 6,626 through 6,650 (of 26,874 total)
  • Author
    Search Results
  • #167321
    davidschwartzer
    Participant

    My web site is: Apple Tech Talk

    I am running WordPress 4.3.1 and the current version of bbPress.

    I have installed bbPress for my forum and have a registration page set up. The page has a message that says:

    By registering with this blog you are also agreeing to receive email notifications for new posts but you can unsubscribe at anytime.

    I seem to recall I added that text and now I would like to remove it but for the life of me I can’t find it. I have check the widgets, menus, forums settings and it doesn’t appear anywhere.

    Perhaps this is standard text and I really think I added it and can’t find it now. Anyone have a clue where I should look?

    Thanks,

    David

    #167320
    paul-burwell
    Participant

    Hi,

    Running WP 4.3.1
    Running bbPress 2.5.8

    Recently installed bbPress and have been trying, so far unsuccessfully, to have it function the way it should. If a user is logged in (standard user) or not logged in and they try to access the forum (https://bsop.staging.wpengine.com/forum/lightroom-2/) they get a 404 error. If I log in as an admin I can visit that URL without issue.

    I’ve tried every one of the debugging suggestions (deactivated everything but bbPress, used the 2012 theme, reset permalinks, reinstalled bbPress, etc.)

    I finally activated the WP_Debug flag and see the following error being thrown:

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /nas/wp/www/staging/bsop/wp-includes/functions.php on line 3622

    I’m testing on my staging server through WP_Engine so I have full ability to play as required to resolve this.

    Any and all help is greatly appreciated.

    Paul

    #167319
    vizcano
    Participant

    I created a personalized language translation.

    But every few days it goes to the standard Spanish translation.

    i want to keep my own translation. How can i do this?

    WordPress 4.3.1
    bbpress 2.5.8

    #167301
    summerfeeling
    Participant

    Hello there,

    I run at the time a vBulletin Forum with the version 4.2.2. I have placed a new WordPress installation today and bbPress install the latest version. I want to migrate all the data of vBulletin to bbPress.
    Primarily are important to me, posts, attachments, users and especially the side structure (SEO).
    I have the Importer with the correct credentials filled the Vbulletin Forum.

    However, I get the following error message:

    Repair any missing information: Continue
    WordPress database error: [Table ‘dbxxxxx-11.forum’ does not exist]
    SELECT convert (forum.forumid USING “utf8”) AS forumID, convert (forum.parentid USING “utf8”) AS parentid, convert (forum.threadcount USING “utf8”) AS thread count, convert (forum.replycount USING “utf8”) AS reply count, convert (forum.title USING “utf8”) AS title, convert (forum.title_clean USING “utf8”) AS title_clean, convert (forum.description USING “utf8”) AS description, convert (forum.displayorder USING “utf8 “) AS displayorder FROM Forum AS forum LIMIT 0, 100
    No boards started to convert passwords reset Conversion

    Why is that and how can I implement my plan successful? What am also very puzzled: Why is behind my database name, a point with forum added?

    I would be your help very, very grateful. :))

    #167297
    vale12
    Participant

    Hi,
    in my website when I try to restore the discussions of some specific user, wordpress give the error “Are you sure to do this? Retry”, what could be the reason?

    #167294
    BewitchingFiction
    Participant

    This is something I did look at – I deactivated all the plugins and went back to square one – still got the same issue.

    I have the following plugins active on my site:

    Akismet
    BBpress
    Buddypress
    Buddypress Group Chat
    Buddypress Security Check
    Firmasite theme enhancer
    Jetpack
    Mailchimp for WordPress Lite
    Pinterest Verify for WordPress
    Polls
    Registration Honeypot
    Sitewide Newsletters

    Several of these weren’t activated until after the site was already experiencing these issues.

    I have looked in Jetpack settings (as this is the only one I can see that could affect the blacklist (logically) but there is nothing in there I can see.

    Some of my users are obviously getting frustrated by these strange messages all because they have used something in a joking manner – and we are all adults (I have an age rating on my forum which I moderate quite carefully – and manually – with the site moderators).

    #167270
    Robkk
    Moderator

    Well I am glad the workaround fix worked for you.

    Could you CC the trac ticket so you can be notified of any new patch added onto there so you might test it in the future.

    Login using your WordPress.org credentials then scroll down to the bottom of the ticket then click the add to CC checkbox, then hit submit changes.

    #167267

    In reply to: bbpress search

    Robkk
    Moderator

    The bbPress search searches news items?? It only searches for bbPress post types really.

    Are you sure you are not confusing this with the default WordPress search??

    #167253
    Robkk
    Moderator

    Are the posts marked as spam?? Since you have Akismet make sure it is not too aggressive in finding spam. You could set this in the Akismet plugin settings.

    Other than that maybe look for a different spam plugin an alternate plugin to Akismet if it is too aggressive in stopping spam.

    This for frontend posting/commenting.

    https://wordpress.org/plugins/spam-destroyer/

    And this for Registration might be a good combination.

    https://wordpress.org/plugins/wangguard/

    #167252
    Robkk
    Moderator

    It might be possible to use some code to calculate the posts like this or wait til 2.6 adds this feature.

    https://wordpress.org/plugins/bbp-topic-count/

    Then I guess setting the role using the code below when they reach the count. I am not sure entirely though, I have never tried something like this yet.

    bbp_set_user_role();

    Right now this is most likely custom development and you may need to hire a developer to create this for you.

    #167246
    Robkk
    Moderator

    This should show the items in the specific menu.

    add_filter( 'wp_nav_menu_items', 'rkk_add_auth_links', 10 , 2 );
    function rkk_add_auth_links( $items, $args ) {
        if (is_user_logged_in() && $args->theme_location == 'sub-header-menu') {
            $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>';
        }
        elseif (!is_user_logged_in() && $args->theme_location == 'sub-header-menu') {
            $items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=register') .'">Register</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=lostpassword') .'">Lost Password</a></li>';
        }
        return $items;
    }

    By default it leads to the regular wordpress login form. if you want to change that to a frontend page, you can change this site_url('wp-login.php') to something like this site_url('/login/').

    login redirect you would need to use something like this.

    function rkk_login_redirect($redirect_to, $request, $user) {
        return (is_array($user->roles) && in_array('administrator', $user->roles)) ? admin_url() : site_url('/forums/');
    } 
    add_filter('login_redirect', 'rkk_login_redirect', 10, 3);

    This login redirect code redirect admins to the WordPress backend, but anything else to the forums.

    #167242
    Robkk
    Moderator

    Okay sorry for the late reply.

    This is how I tested it.

    Without reply threading

    Topic author gets notified like normal no problem. It shows the repliers name and everything fine.

    With Reply threading

    Topic author gets notified of a unthreaded reply like normal no problem. It shows the repliers name and everything fine.

    If the topic author threads under a reply. The reply author who commented that is being threaded does not get a notification, neither does the topic author.

    If a user replies to their own reply the topic author gets notified.

    if the topic author replies to an already threaded reply by another user, the topic author gets notified of the other user replying although it was the topic author. So although the user being replied to should get the notification, the user replying is.

    iF a user replies to an already threaded reply created by the topic author, the topic author gets notified that they have replied although it was the other user.

    If a user replies to an already threaded reply, sometimes the topic author may receive two notifications one with the user who replied and also one that says the topic author just replied also.

    All i can really say that these notifications are a mess…

    I am creating replies as a test user but for some reason the topic author is getting all of the notifications, even for threaded replies being posted under my test user’s reply even though in the code for the notifications it states that the test user should receive a notification.

    I created a ticket for this bug in the trac though.

    https://bbpress.trac.wordpress.org/ticket/2869

    artstellars.com
    Participant

    Hi robkk, you’re exactly right. Using extra characters as a user id would be a tough challenge. I’ve created a new topic by a Chinese user id in my forum so that you can see what’s going on by clicking on its id. http://artstellars.co.nz/forums/forum/art-stellars-forum/

    The url for the user profile is http://artstellars.co.nz/forums/users/username such as http://artstellars.co.nz/forums/users/admin/ or http://artstellars.co.nz/forums/users/anna/ but with the Chinese id it still redirect to http://artstellars.co.nz/forums/users/

    I’ve downloaded the pluggin you mentioned above but once it’s activated, the Art Stellars Forum even can’t be opened by Chinese username logon. Hope WordPress can fix such issues like Discuz or another BBS program that can support other characters and have more fancy options for a forum.

    Thanks.

    #167232
    GreatOldiesDJ
    Participant

    Hi,

    I am just setting up my first website with BuddyPress and bbPress. I have worked through most of my issues but I can’t find the answer to this one. The page background on my site seems to the the same color (nearly) as the Search bar above the Forums. The color is close enough that you might not know there was a Search Bar there at all. Is there a way to either change the color of the Search Bar or maybe add the words “Search Our Message Boards” to the Search Bar?

    Thanks.

    Oh yes … I am running the most current version of WordPress, BuddyPress, and bbPress and I am using the Kleo theme.

    #167218
    Robkk
    Moderator

    see if what is poated here may help.

    How to Stop Admin subscription emails…

    You can also try this plugin, it has code that might be in bbPress core in the future.

    https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/

    Jeff Milone
    Participant

    We’ve had reports from users that many are not receiving email notifications of replies to their topics. We are sending through Mandrill and noticed that all notification emails are being sent both “to” and “from” the same address: noreply@ourdomain.com

    Sceen shot: https://cloudup.com/csqJe4-TZcS

    We confirmed that this happens without Mandrill active as well. We don’t mind having the “from” address be noreply, but obviously the “to” address needs to be the user’s email address, so the email is delivered to them. Do you know why this is happening, and how we can fix it?

    bbPress Version 2.5.8
    WordPress Version 4.3.1

    Many thanks!
    -Jeff

    Robkk
    Moderator

    It is possible to add custom statuses with this plugin.

    https://wordpress.org/plugins/buddy-bbpress-support-topic/

    Here is an example gist file.

    https://gist.github.com/imath/9e69b8139ff6f7a4120a

    Here is example for Urgent.

    function your_custom_status( $allstatus = array() ) {
    	$allstatus['topic-working-on-it'] = array(
    		'sb-caption'   => __( 'Urgent', 'buddy-bbpress-support-topic' ),
    		'value'        => 3,
    		'prefix-title' => __( '[Urgent] ', 'buddy-bbpress-support-topic' ),
    		'admin_class'  => 'urgent',
    		'dashicon'     => array( 'class' => 'bpbbpst-dashicons-warning', 'content' => '"\f534"' ),
    	);
    	return $allstatus;
    }
    add_filter( 'bpbbpst_get_support_status', 'your_custom_status', 10, 1 );
    Robkk
    Moderator

    I am not going to lie but this chinese username thing is tough to find a fix for since I think most of the work does need to be done for WordPress itself.

    You can try going here and posting a topic aobut this issue to see if anyone has a good suggestion/workaround.

    https://zh-cn.forums.wordpress.org/

    Other than that I guess you might want to look in users keeping english characters in their usernames. I even found a bbPress chinese forum in the wild and they all seem to just be using english characters for their usernames some even numbers which is interesting, because using the users id instead of their username will definitely help you.

    cos.name/cn

    The forums topics using the id looks like they might be using this.

    https://wordpress.org/plugins/bbpress-permalinks-with-id/

    But since you seem to be getting the users to at least register with the characters now. Do you know what each user profile url is in the topic/reply post. Can you check it out in your browsers dev tools so I can see what the url is. I am expecting a url with some chinese characters and maybe some of these %%% in the url which would be leading to a 404.

    #167202
    Robkk
    Moderator

    You did try it like this right??

    if(is_bbpress() && $args->menu->slug == 'sub_header_menu')

    If it still doesn’t work you can try finding the menu location in your theme, which might most likely be in the functions.php file, but it could be different depending on the theme. You would spot by the register nav menu function like what is listed in this page.

    https://codex.wordpress.org/Function_Reference/register_nav_menus

    If you have a free theme I could check it out and get the arguments you need.

    #167198
    Robkk
    Moderator

    I guess you can try this code instead to see if it works any. I guess I can can also just check out to see if the custom script file name changed. I am using an older version of Divi 2.4 for testing so it could be a possibility.

    You can contact me here if you want me to check it out on your site later.
    Contact

    add_action( 'wp_print_scripts', 'rkk_reply_threading_divi' );
    
    function rkk_reply_threading_divi() {
    
        if( is_bbpress() && bbp_is_single_topic() ) {
            wp_dequeue_script( 'divi-custom-script' );
        }
    }
    #167190

    In reply to: Designing Forum

    Robkk
    Moderator

    There should be forum for each company name.

    Just create a new forum for each company.

    All threads specific to that company needs to be created there.

    You can create group forums with the help of buddyPress or bbPress private groups to enforce this. Other than that just tell users to post there.

    Now on searching city, state, region or holding company related forums/threads should come in results. I want to create menu where in he can click on city and find related company names available in that city.

    Not sure where the city, state, region, holding company data is kept. I am guessing since each company has a forum, that each company’s data could be the city, state, region. I guess create a forum taxonomy for each?

    Then make the bbPress forum search or whatever search you are using for the site to be able to search forum taxonomies?

    I want to create menu where in he can click on city and find related company names available in that city.

    I guess create a custom query?? bbPress has if_has_forums() to be able to do this I guess.

    https://codex.wordpress.org/Class_Reference/WP_Query

    I can’t really help any more since this is custom development.

    #167180
    jamnuova
    Participant

    What is the best way to get users to sign up to your site without letting automated spam bots in and to make things frontendy?

    I have searched and searched yet the only option I can find are those premium plugins (which have many vulnerabilities in them).

    what I want to to do is simple:

    Have a front end registration page with fields for login, password, why does this person want to join… and a custom captcha question… and then somewhere in the admin panel I want to be able to just approve or decline users based on what they put in the why do you want to join field.

    I also want to make this the only place for users to register from… else spammers will just use the normal wordpress sign up to get access.

    How can I go about doing all of this?

    Please help.

    Thank you.

    artstellars.com
    Participant

    Alright. I downloaded an plugin called “Chinese-username” and it works right now which is great! The code is:

    <?php
    /*
    Plugin Name: Chinese UserName
    Plugin URI: http://www.01on.com/?p=654
    Description: 允许用a-z0-9_.-@和汉字作为用户名
    Author: 白云山
    Version: 1.0
    Author URI: http://www.01on.com/
    */
    add_filter( ‘sanitize_user’, ‘ys_sanitize_user’,3,3);
    function ys_sanitize_user($username, $raw_username, $strict){
    $username = $raw_username;
    $username = strip_tags($username);
    // Kill octets
    $username = preg_replace(‘|%([a-fA-F0-9][a-fA-F0-9])|’, ”, $username);
    $username = preg_replace(‘/&.+?;/’, ”, $username); // Kill entities

    // If strict, reduce to ASCII and chinese for max portability.
    if ( $strict )
    $username = preg_replace(‘|[^a-z0-9 _.\-@\x80-\xFF]|i’, ”, $username);

    // Consolidate contiguous whitespace
    $username = preg_replace(‘|\s+|’, ‘ ‘, $username);

    return $username;
    }
    ?>

    The only problem I found is the Chinese username owner can’t update his info. by clicking on his username in the forum page. Whenever clicking on the hyperlink of the Chinese username, it just redirects to http://artstellars.co.nz/forums/users and displaying a message saying “Not Found – Sorry, but the page you were trying to view does not exist. It looks like this was the result of either a mishtyped address or an out-of-date link”.

    But while registering as an English username there’s no such trouble. Hope WordPress or bbpress can consider support Chinese username in the near future. Thanks.

    #167152
    Danny
    Participant

    I know there’s an Export option for Forums in WordPress’s default Export menu.

    But when I viewed the Import options under Tools > Import Forums, there was only bbPress1.

    Which brings me here to ask, how do you import a forum from a bbPress2 to another bbPress2 ?

    artstellars.com
    Participant

    Hi Robkk

    Many thanks for your help. Change the url and lost password page works right now! You’re the man!

    I’ve installed and activated the wordpress special characters in username pluggin as you recommended but unfortunately it doesn’t work. May be it’s only for russian, cyrillic, arabic as it describes? Any other way to fix it? Thanks.

Viewing 25 results - 6,626 through 6,650 (of 26,874 total)
Skip to toolbar