Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 7,351 through 7,375 (of 26,874 total)
  • Author
    Search Results
  • #162449

    In reply to: Searching by user

    Robkk
    Moderator

    i could do it for you , it is pretty easy.

    email me.

    Contact

    #162437
    Robkk
    Moderator

    Thanks @robkk, my bigger interest is having the reply-to author populate in the text box. That would be awesome so the notifications can be triggered. I am leery about posting jobs on there, I get a ton of spam when I have done so in the past.

    Yeah it would be awesome , all i can do is reccommend extending the feature of @mentions when bbPress adds its own.

    As for the spam maybe i shouldn’t reccommend that site anymore?? But you know what i meant though you can go to any freelance website you can find that has users experienced with WordPRess and bbPress.

    #162434
    Robkk
    Moderator

    @juggledad

    @robkk: Just to clarify something, the OR function_exists(‘is_bbpress’) was added (with some other code, to get around a bug that bbpress doesn’t seem to want to acknowledge or fix. see https://bbpress.trac.wordpress.org/ticket/2723

    Thanks for pointing that out, i did not know about that bug.

    Okay with this bug in bbPress you cannot use the WP conditional is_single() to affect all of the bbPress pages, since for some reason there is a bug for single user pages.Thanks for creating the trac ticket, I tested out and see that yes it does not work on user pages. Over the next few days/week i will check it out and see I can come up with a fix.

    But this bug is easily avoidable by creating a bbpress.php for your theme and just using the_content() instead of bfa_post_bodycopy() and removing OR function_exists('is_bbpress') from the bfa_post_bodycopy() function. The bbpress.php file also helps remove other post meta that might not be useful for bbPress forums instead of using CSS to hide them.

    The OR function_exists('is_bbpress') you can keep in bfa_get_options.php though as i do not see any problems with that.

    If there is something you can find on your end to fix the issue with your theme and bbPress then please drop an answer on this topic, because i haven’t looked and learned your theme 100% yet. Removing the function exists and creating a bbpress.php is the quickest solution to the problem that I could find.


    @kitfreeman

    This excerpt issue that you are seeing affects all of these areas

    category pages
    tag pages
    author pages
    archive pages
    search result pages
    and the home page

    which is where all the excerpt theme settings modify.

    Robkk
    Moderator

    sorry Friday through Sunday you can expect slow support responses.

    it should be like that by default , participants shouldnt be allowed to mark topics spam, they can edit but for whatever time you have allowed in settings> forums.

    you can answer these questions to help me help you.

    has this issue always been there when you first installed bbPress?
    did you import any forums and this issues has started?
    did you install any plugins that modify s the capabilities of users?
    is your default WordPress role for registration a subscriber in settings>general?

    Robkk
    Moderator

    @fmckinnon

    you do not have to be subscribed to the topic for it to be unread and show if i remember correctly, and its just the area the plugin developer put it.

    that plugin should display a list of topics that are unread in the subscriptions area.

    it should kind of similar to these screenshots here, it looks really different because the developer was using a custom theme.

    https://wordpress.org/plugins/bbpress-mark-as-read/screenshots/

    if there is a way to use custom user meta in wp-query then i could just give you a snippet to add a custom view for bbPress that would list all the unread topics in one place , and you just place a shortcode in a page and all.

    viewing unead forums is not part of both of these two plugins i think but you could mark a forum read in both to clear any unread topics in it.

    unread replies go to first unread post shows which topics that are unread replies using that little [>] icon.

    #162429
    Galador
    Participant

    I tried to google a fix and nothing has worked yet. I definitely think it has to do with my theme and I’d just edit that if I knew how. I just started wordpress about two hours ago… Can I have some advise on how to fix my replies from cutting off?

    roleplaycentral.org is the url

    #162426
    Robin W
    Moderator

    1. Use mu plugin https://wordpress.org/plugins/bbp-style-pack/ to alter
    2. This is a css issue which I am not the person to fix !

    #162422
    kylestubbins
    Participant

    I am a little confused on how and when updates are included in the released versions.

    Specifically, I am working on converting / importing a forum, but have run into errors, such as the sync table not being created. I do a Google search and find this –> https://bbpress.trac.wordpress.org/ticket/2650 which states that the problem has been corrected. Great!

    The problem is, the code shown here –> https://bbpress.trac.wordpress.org/changeset/5525 is not included with bbPress version 2.5.7, which is the latest release as of this writing. Lines 1023 through 1038 do not exist (just as an example as they are only comments… I picked this as it was easy to spot and just for reference).

    In fact, there are a bunch of things that are said to be fixed in the Trac (Thanks, Stephen), but they do not appear to be included with the official release of bbPress.

    Am I missing something?

    (Just a comment, but it would be nice to have version info in the headers of files as I cannot tell which version of converter.php is included with 2.5.7 without doing a diff on them and figuring it out from GIT.)

    #162417
    Robin W
    Moderator

    No, do you have any idea why i can’t see topics below Forum names?

    What you are seeing is the list of forums, you then click a forum to see the topics for that forum.

    if you want each forum to have then topics below it, then use shortcodes within a page

    [bbp-single-forum id=$forum_id]
    [bbp-single-forum id=$forum_id]
    [bbp-single-forum id=$forum_id]

    see

    https://codex.bbpress.org/shortcodes/

    or use the shortcodes from

    https://wordpress.org/plugins/bbp-style-pack/ in a page

    Also i was wondering how i can order Forums by some hierarchy?

    If not using the shortcodes above, then use dashboard>forums>all forums and edit a forum. On the right hand side you’ll see ‘parent’ and ‘order’ boxes that let you build a hierarchy

    #162411
    Chad R. Schulz
    Participant

    I know this is an old post. However, I’ve been screwing around with various javascript suggestions from other forums and came up with a solution that works (no problems yet discovered). I’m not exactly a code ninja, so if anyone can help to streamline the code let me know.

    Just insert the following lines into a custom javascript for your theme (if you need guidance on this there’s a lot of help available all over wordpress.org and other forums).

    jQuery(function($) {
    	var forum_input = $( '#bbpress-forums textarea' );
    	var forum_button = $( '#bbpress-forums .submit' );
    	var forum_limit = 50;
    	var forum_class = $( '<div class="forum_limit_info"><span>' + forum_limit + 
    	    '</span> characters needed</div>' ).insertAfter( forum_input );
    	forum_button.hide();
    	forum_class.show();
    	
    	forum_input.bind( 'keyup', function() {
    		var forum_length = $(this).val().length;
    		var chars_left = forum_limit - forum_length;
    
    		$( '.forum_limit_info span' ).html( chars_left );
    
    		if (forum_input)
    			( chars_left > 0 ) ? forum_class.show() : forum_class.hide();
    		
    		if (forum_button)
    			( chars_left > 0 ) ? forum_button.hide() : forum_button.show();
    	});
    });

    Basically this function hides the submit button and displays a countdown text counter until the minimum length is reached and then the button appears and the counter disappears.

    There are ways of hard-coding a minimum into php but I believe you have to edit core files and then insert these modified php files into a child theme. I couldn’t figured out how to insert a simple php function that would do what I wanted in a clean and simple way. So javascript it is.

    The forum_limit setting can be anything you want it to be, just change it. And you can customize your topics and replies minimums separately, if needed, with separate javascript functions using textarea#bbp_reply_content, textarea#bbp_topic_content instead of #bbpress-forums textarea.

    For my CSS stylings I chose to put a :before message on the left and the character count on the right using these:

    .forum_limit_info {
      text-align: right;
      font-size: 13px;
      color: red;
      line-height: 1.2;
      margin: 5px 5px 0px;
    }
    
    .forum_limit_info:before {
      float: left;
      content: '(Minimum Length: 50)';
      color: blue;
    }

    CSS Styling is theme dependent and can basically be however you want/need it to be–very flexible.

    I also created a similar javascript function for my site’s commenting system. Here’s that code as well:

    jQuery(function($) {
    	var comment_input = $( '#commentform textarea' );
    	var comment_button = $( '#entry-comment-submit' );
    	var comment_limit = 25;
    	var comment_class = $( '<div class="comment_limit_info"><span>' + comment_limit + 
    	    '</span> characters needed</div>' ).insertAfter( comment_input );
    	comment_button.hide();
    	comment_class.show();
    	
    	comment_input.bind( 'keyup', function() {
    		var comment_length = $(this).val().length;
    		var chars_left = comment_limit - comment_length;
    
    		$( '.comment_limit_info span' ).html( chars_left );
    
    		if (comment_input)
    			( chars_left > 0 ) ? comment_class.show() : comment_class.hide();
    		
    		if (comment_button)
    			( chars_left > 0 ) ? comment_button.hide() : comment_button.show();
    	});
    });

    Good luck to all,

    Chad

    #162408
    amckinnell
    Participant

    Hi Rob,

    i mean like does the issue show up in gmail?? why not try in ymail or outlook to see if the emails are just buggy in one place.

    Oh! I understand your question now (I thought you meant for sending the mail, which I think wordpress does). No, all my users can see it, so it’s happening in all email providers.

    if you havent already you might need to deactivate all plugins but bbPress in your test site.and hopefully see if that fixes anything.

    Okay. I’ll give that a shot. I think I tested that before, but I’m not sure now. I’ll try contacting siteground support about it again as well.

    Thanks for your help.

    Anne.

    #162407
    juggledad
    Participant

    @robkk: Just to clarify something, the OR function_exists('is_bbpress') was added (with some other code, to get around a bug that bbpress doesn’t seem to want to acknowledge or fix. see https://bbpress.trac.wordpress.org/ticket/2723

    #162399
    Robin W
    Moderator

    Great – glad you’re fixed !

    fro anyone looking at this

    https://wordpress.org/plugins/bbpress-login-register-links-on-forum-topic-pages/

    #162397
    Robkk
    Moderator

    @tarnvogl

    oh yeah forgot about that.

    I understand at that point on your end though.

    I am trustworthy though 🙂

    if you want you can hire a developer to try to find the issue and fix this for you.

    post a job at http://jobs.wordpress.net/

    and sorry i do not really like using stuff like teamviewer

    #162394
    Robkk
    Moderator

    the recent comments widget is just displaying any comment from your facebook page most likey,
    not that is has any comments on a particular topic from bbPress, but that you just shared a topic as a “status update” and people are commenting on that “status update”.


    @herculaas
    if you want this kind of functionality , which would be pretty difficult to create you should hire a developer and post a job at http://jobs.wordpress.net/

    #162385
    PinkishHue
    Participant

    You should be able to control this in Yoast SEO by changing the meta title settings, or it may be something you have to do in your theme / a custom plugin.

    See info here re: using Yoast and the different settings:
    http://kb.yoast.com/article/146-yoast-wordpress-seo-titles-metas-template-variables

    It looks like you want to make sure the meta title is set to just use this Yoast variable:

    %%title%%

    #162384
    Robkk
    Moderator

    well when im thinking about it this site is multisite and it doesnt show the issue you are having.

    if you want you can create me an admin account and send the login details to my email.

    I will tell you when i enter into your site

    im just going to look over not mess with anything

    look over your plugins and settings and maybe theme files and see if i can find something that might be causing an issue.

    i will then tell you when i think i found an issue though email , let you or ask to give me permission to do something.

    if it doesnt try again , if it does then you can delete the admin account for me and this topic is resolved.

    Contact

    #162381
    Robkk
    Moderator

    this is not really a problem , and its not bbPress

    WordPress handles the registration and in a default installation of WordPress your login page is yoursite.com/wp-login.php

    bbPress just has a custom registration form.

    You can use this plugin for a custom new registration email.

    https://wordpress.org/plugins/welcome-email-editor/

    #162371
    Robkk
    Moderator

    im sure when bbPress devs implement the @mentions scripts into bbPress they will have a way for it to work with the visual editor , well depending on their stance to implement the visual editor by default too.

    if you really want the @mentions script from BuddyPress to work in the visual editor in bbPress you might need to hire a developer.

    post a job at http://jobs.wordpress.net/

    #162362
    Herculaas
    Participant

    I am using a plugin that automatically imports Facebook comments as post comment. When I share a bbPress topic on my Facebook page it does import the Facebook comments (I can see them in the recent comments section in WordPress) but they’re not showing up in bbPress.

    Is there any way to fix this?

    #162361
    Ner0o
    Participant

    Hi everyone,

    I’ve recently setup my own forum. In the past I have been using Dokuwiki as a forum, but it had to many restrictions. Now that I’m using BBwordpress I’m having to following problem.

    I don’t want people having to register as user, but I do want them leaving their names. Is there a Plugin available that forces people to give their name before opening a topic, or leaving a commend?

    I appreciate your help guys!

    #162336
    Japracool
    Participant

    How do you rewrite forum post title like in this forum?

    In here, you got…
    Topic:[Your Topic Title] – BuddyPress.org

    Simple and clean!

    On my forum, I got…
    Forum | Lowongan Kerja | JDA Community[Tanjung Duren] Dibutuhkan Segera Customer Service | JDA Community

    It’s so messy and it’s too long.

    I used Yoast WordPress SEO btw… Can anyone help me with this? Thanks before.

    #162333
    Hunniemaid
    Participant

    I recently installed the bbpress plugin on my WordPress website. The theme I am currently using is built on the Genesis Framework. The avatar image shows up on single post. However, where ever the small avatar image is to be displayed it doesn’t.

    I have my show avatar settings enabled. I would grealty appreciate it if someone could take a look http://hunniemaid.com/forums/ and give me some insight on what the issue may be. Thanks in advamce.

    #162314
    Robkk
    Moderator

    it might be a multisite thing where it forces users to have lowercase letters as their usernames, so this might be intentional in WordPress.

    If you want your display name to be unique edit your profile and add a nickname and change your display name with the dropdown in your profile.

    you can see how my display name changed after i changed the nickname and display name in my profile on here.

    #162312
    Robkk
    Moderator

    @sultanuddin

    you will need to hire a developer for this.

    one that has experience with WordPress , bbPress , and creating Android applications.

Viewing 25 results - 7,351 through 7,375 (of 26,874 total)
Skip to toolbar