Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 3,576 through 3,600 (of 11,584 total)
  • Author
    Search Results
  • #162403
    Robkk
    Moderator

    I’m not even sure how I would go about setting up another email service. Hmmm…

    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.

    thats probably not it but you can try…

    if you havent already you might need to deactivate all plugins but bbPress in your test site.

    and hopefully see if that fixes anything.

    Before Posting

    other than that contact siteground support if you didnt already and see if they know anything.

    you can lead them to the topic you posted in this topic and also the links @jjj posted in his reply to that topic and maybe they can find something in your host setup.

    #162390
    amckinnell
    Participant

    Hi Rob,

    Thanks for your help. Here are the answers to your questions, as best I can!

    what is your host? Siteground

    mysql version ? Database client version: libmysql – 5.0.96 (Is this is right answer?)

    php version ? 5.4 (it wouldn’t load properly when I tried to update to 5.5)

    wp version ? live site is 4.1.5 – test site is 4.2.2 – it happens in both places

    do you use an exteranl service to handle email? not to handle these emails. Only mailchimp for my newsletters and stuff. I do have wpMandrill installed, but it is deactivated since it didn’t work quite right for me and I haven’t had a chance to get back to it.

    any plugins that affect the email process? I have autochimp to update my newsletter list automatically when new members sign up

    what email service are you using> maybe see if the issue persists in another email service. – I’m not even sure how I would go about setting up another email service. Hmmm…

    I am also using buddypress and s2member and a bunch of other plugins, but those are the biggies.

    Thank you so much for your help! I really appreciate it since I am over my head on this one.

    Anne.

    #162388
    Robkk
    Moderator

    hmmm that is odd. i did not find a css issue, so it must be something else.

    as a test try this to see if the avatars render correctly in the area if there is correct code.

    function rkk_topic_av() {
    	    	echo bbp_get_topic_author_link( array( 'size' => '48' , 'type' => 'avatar'));
    }
    add_action('bbp_theme_before_topic_title','rkk_topic_av');

    then give me the results then we will look over it more.

    Mr-B
    Participant

    Hi all
    Everything is latest versions.
    I have a problem where if bbPress is not activated, the feeds for a subcategory work fine, but as soon as I activate bbPress it “takes over” and the news feed on the same URL displays bbpress topic feeds.
    I tried disabling plugins / running some of the fix tools but does not seem to make a difference. Also have tried twenty-fourteen, no difference. Anyone else ever see this?

    Examples:
    without bbPress enabled, the KB or “knowledgbase” feed shows correctly:
    ===================================
    http://engdex.ch/kb/feed/
    Engdex.ch » Knowledgebase
    English speakers in Switzerland • free business directory and more
    Public Holidays in Switzerland 2015
    29 May 2014 08:10

    In Switzerland in each of the 26 cantons the public holidays are established independently,
    …. etc …
    ===================================
    With bbPress ENABLED the same knowledgebase feed becomes a forum one:
    http://engdex.ch/kb/feed/
    Engdex.ch » All Posts
    Forum guidelines
    21 June 2014 13:56
    Engdex Forum guidelines.

    Welcome! The Engdex forums are a place for seemly discussion about all things Switzerland and
    … etc etc..
    ===================================

    #162258
    viragohelpcom
    Participant

    I cant figure this one out. Linux based users can post but windows users cant. When they try to post it acts like it did as it bring them to the screen the says reply to this post. It even has the post title above like it made it but there is no content listed like when a normal post works. Then if you look it isnt there in the forum. Whats really weird is when I had attachments enabled it would put the image they tried to put to the post in the media library but no post appears just like regular posting. Ive personally tested this with several different computers at different people houses so it is not IP based problem. Hosting account has connections wide open. I removed all other plug-ins but still same problem. Deleted bbpress and reinstalled.. still same problem. Site is viragohelp.com. Please help I am at a standstill until I can get this resolved. Thanks in advance to anyone who replies.

    #162233
    Robkk
    Moderator

    @amalsh

    I double checked your function , and there is a couple of mess ups in the code.

    <p>
    <span style="text-decoration: underline; color: //color should be here
    <a class="hashtag" rel="nofollow" href="http://localhost/wordpress/forums/search/?bbp_search=%23000080">#000080</a> //color hex should not be in here
    ;”> //should end with </span>
    <em>
    <strong>
    <span style="font-size: 12pt;font-family: arial,helvetica,sans-serif">test</span>
    </strong>
    </em>
    </p>

    In some cases copying and pasting text from another website into the tinymce visual editor may show the html still , so it is recommended to use the last function mentioned in this post.

    Enable Visual Editor

    This function works , if im missing something I might update it for users that usually use tinymce advanced with it so that every button should work properly.

    add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' );
    
    function ntwb_bbpress_custom_kses_allowed_tags() {
    	return array(
    
    		// Links
    		'a'          => array(
    			'class'    => true,
    			'href'     => true,
    			'title'    => true,
    			'rel'      => true,
    			'class'    => true,
    			'target'    => true,
    		),
    
    		// Quotes
    		'blockquote' => array(
    			'cite'     => true,
    		),
    		
    		// Div
    		'div' => array(
    			'class'     => true,
    		),
    		
    		// Span
    		'span'             => array(
    			'class'     => true,
    			'style'     => true,
    		),
    
    		// Paragraph
    		'p'          => array(
    			'dir'    => true,
    			'style'     => true,
    		),
    		
    		// Code
    		'code'       => array(),
    		'pre'        => array(
    			'class'  => true,
    		),
    
    		// Formatting
    		'em'         => array(),
    		'strong'     => array(),
    		'del'        => array(
    			'datetime' => true,
    		),
    
    		// Lists
    		'ul'         => array(),
    		'ol'         => array(
    			'start'    => true,
    		),
    		'li'         => array(),
    
    		// Images
    		'img'        => array(
    			'class'    => true,
    			'src'      => true,
    			'border'   => true,
    			'alt'      => true,
    			'height'   => true,
    			'width'    => true,
    		),
    
    		// Tables
    		'table'      => array(
    			'align'    => true,
    			'bgcolor'  => true,
    			'border'   => true,
    		),
    		'tbody'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'td'         => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'tfoot'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'th'         => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'thead'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'tr'         => array(
    			'align'    => true,
    			'valign'   => true,
    		)
    	);
    }

    This function only works before the post is published , it does not magically fix old posts that were already published. You probably would have to edit old posts then resubmit for it to fix , but I am not sure.

    #162211

    Topic: Forum Counts

    in forum Plugins
    Vignesh M
    Participant

    Hi there This my public page(http://test06.aachicargo.com/members/) I viewed all members on this page….. if someone enter onto my site to this page URL (http://test06.aachicargo.com/members/) means have to see who are all the members and let know each members how many topics,forums,replies created??

    For example….
    1. Jared Delprat
    Total Number of forums Published by user: 3
    Total Number of Topics Published by user: 5
    Total Number of Replies Published by user: 12

    2. Richard
    Total Number of forums Published by user: 8
    Total Number of Topics Published by user: 10
    Total Number of Replies Published by user: 24

    3. John
    Total Number of forums Published by user: 10
    Total Number of Topics Published by user: 13
    Total Number of Replies Published by user: 14

    so…………and so……
    This above example of method i want to view on that page..

    some forum users suggest me to used bbtopic count plugin. I also tried bbtopic count plugin but that plugin concept is when user enter logged onto his profile only view as all counts… but i don’t want that type…

    Please give me a solution..

    Advance Thanks!!!!!

    #162209
    Vignesh M
    Participant

    Hi @robkk i think u didn’t understand my questions see what i want is…This my public page(http://test06.aachicargo.com/members/) I viewed all members on this page….. if someone enter onto my site to this page URL (http://test06.aachicargo.com/members/) means have to see who are all the members and let know each members how many topics,forums,replies created??

    For example….
    1. Jared Delprat
    Total Number of forums Published by user: 3
    Total Number of Topics Published by user: 5
    Total Number of Replies Published by user: 12

    2. Richard
    Total Number of forums Published by user: 8
    Total Number of Topics Published by user: 10
    Total Number of Replies Published by user: 24

    3. John
    Total Number of forums Published by user: 10
    Total Number of Topics Published by user: 13
    Total Number of Replies Published by user: 14

    so…………and so……
    This above example of method i want to view on that page..

    some forum users suggest me to used bbtopic count plugin. I also tried bbtopic count plugin but that plugin concept is when user enter logged onto his profile only view as all counts… but i don’t want that type…

    did you understand? please give me a solution

    #162172

    In reply to: Topic Icons?

    Robkk
    Moderator

    @jerichox

    worked fine when i tested it out.

    The icon only should show to posts as new as 30 minutes from creation date the way you have it.

    #162168
    bennypowers
    Participant

    I’ve gone through the setup process as well as I can tell, but I get this error when replying to a test topic on the web.

    Catchable fatal error: Argument 2 passed to Falcon_Handler_Postmark::send_mail() must be an instance of Falcon_Message, string given, called in /home/gabrie37/public_html/jewishartistcenter.org/wp-content/plugins/Falcon-master/library/Falcon/Connector/bbPress.php on line 130 and defined in /home/gabrie37/public_html/jewishartistcenter.org/wp-content/plugins/Falcon-master/library/Falcon/Handler/Postmark.php on line 33

    the reply is posted, i can see it when i go back and refresh the page, but i don’t get any email.

    #162142
    tarnvogL
    Participant

    @robkk
    thank you!
    To give the usernames some custom css, I added a custom class into the loop-single-reply.php
    Here is the part of the code with the custom class (custom-forum-user)

    [...]	
    <?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
       <div class="custom-forum-user"> 
    	   <!--- <?php bbp_reply_author_link( array( 'sep' => '<br />',  'show_role' => true ) ); ?> -->
    		<?php bbp_reply_author_link( array( 'sep' => '<br />', 'size' => 150 ) ); ?>
       </div>  <!--- custom-forum-user -->
    
    		<?php if ( bbp_is_user_keymaster() ) : ?> 
    [...]

    But the problem still appears, even when I am not loading my custom loop-single-reply.php. So I think it is not an issue of that.

    I also deleted the user links to their forum profile in my functions.php. But even this (I tested it) is not the cause of the problem with the lower case letters. This is everything I changed regarding the forum user names.
    What do you think can I do to fix this issue?

    #162131
    Robkk
    Moderator

    @amalsh

    I’m having this issue: when I post in the forum (using the editor), HTML tags appear in the posts (topics and replies).

    sorry for the late reply.

    you are just using the tinymce/visual editor buttons right?? And this issue only shows for what roles??

    or are you copying text from a different website and pasting it into the visual editor content??

    i tried testing it out earlier it worked for me as a participant , i have to check more because i was probably messing with the capabilities of my users.


    @davelr1

    you can probably use strip_tags() if you are going that way.

    #162122
    Robkk
    Moderator

    @dc4x_admin

    I will test it out a bit more

    #162111
    PinkishHue
    Participant

    Sounds great, I look forward to testing it out. Thanks for sharing 🙂

    #162110
    tarnvogL
    Participant

    this CSS transforms every letter in a capital letter.
    Actually thats a strange thing, I don’t have the CSS class “a.bbp-author-name”.
    I made some small changes in the loop-single-reply.php, but even when I am not loading the modified .php file, the “a.bbp-author-name” class does not appear.

    Here is the link to the forum: http://community.riseinnature.com/forums/topic/testtopic-3/

    In this example, the “J” of julian and the “L” of tarnvogl are actually written in capital letters.

    Maybe it is a wordpress issue, because when I add a user manually in the backend, only lowercase letters are allowed. But if you try to register on the front end, it will accept names with capital/uppercase letters. Feel free to create an account with capital letters and try it for yourself.

    Thank you for helping me with this 🙂

    #162072
    Antipole
    Participant

    Robin… before I got your suggestion regarding rewrite rules, I had begun to suspect corruption of permissions in my forum database entires. I created a new test forum and it worked OK.

    So, for each empty forum I deleted it and created a new one. For each forum with topics, I created a new one, i.e. Forum A new, reassigned the topics from Forum A to Forum A new, deleted Forum A and then renamed Formum A new to Forum A.

    This has cleared my problem and I can now view the forum topics as Testuser2.

    How the problem arose, I do not know. There have been WordPress or bbPress updates recently and possibly something did not upgrade properly.

    There remain two issues:
    The keyword PRIVATE: is shown twice in the display of the forum contents.
    If the forum is empty, a blue box correctly says This forum is empty but then a yellow box says Oh bother! No topics were found here!

    In the latter case, I suspect a coding error whereby the empty forum is spotted but the code still tries to display the topics.

    Do I still need to reset my permalink as you suggest?

    Meanwhile I shall start re-instating my plugins etc.

    thanks for your support.

    #162018
    Antipole
    Participant

    Firstly, thank you for responding.

    I have disabled all plugins except BuddyPress and bbPress.
    I have switched to the theme Twentyfourteen.

    I still have a problem. Since simplifying as above, I have, signed in with admin rights, created a new topic in an otherwise empty private forum called ‘Domestic Water’. As that user I can read it etc.

    I then log out and back in as Testuser2 who has site role of Author and Forum Role of Participant. When I select the forum ‘Domestic Water’ from the list in the side bar I get a screen as shown here.

    Note that Private is repeated twice. The blue box is correct, saying there is one topic in the forum.
    But I then get a yellow box “Oh bother! No topics were found here!”

    Your further advice will be very much appreciated.

    #162017
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #162008

    In reply to: Footnotes

    Robin W
    Moderator

    The footnotes don’t work within the forums (even for me, as the admin).

    Without taking time to install this plugin and test, I cannot of course see what the above means .
    There are thousands and thousands of plugins and bbpress cannot be tested with all 🙂

    If they work together then they are compatible, if not then probably not ! There may well be a way to make then work together, but you’d need to find someone to carry out this work. You could try the footnotes plugin author.

    And, on a larger note: Does bbPress, by default, isolate itself from other plugins?

    Sorry but I don’t understand your question.

    #162004
    Robin W
    Moderator

    forums should be fully functional for logged in users, so your issue should not be there !

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #162000
    Hard Seat Sleeper
    Participant

    What’s the easiest way to edit my forum home page to display the most recently updated forum topics?

    #161987
    DealL
    Participant

    Hi!

    I am planning to create a new forum website using bbPress. I want to change / add / remove topic headings. Since, I am yet planning I will use latest versions of WordPress and bbPress

    eg;

    instead of : Topic, Voices, Replies, Freshness

    I want : Posts (Number of replies to the topic) Views (number of views) Posted By (Name /username of topic starter) Latest Reply (latest reply by + minutes ago)

    I even want to add a few more headings like catagories

    Thanks a lot for the help 🙂

    #161969
    fmckinnon
    Participant

    Hey Rob,
    Yes – thank you. Dan has been very helpful. At this point, I think it’s becoming more of a preference question … as I am struggling with what path to take.

    We definitely already have sitewide forums w/ vBulletin, so we could easily just keep WordPress as our blog and use site-wide forums w/ bbPress. The thing I feel like I’m missing there is the added sense of community that can be built via the “add friend” type thing you get w/ BuddyPress.

    Beyond that, my biggest question is the use of Groups in BuddyPress. My concern I expressed in the other thread was that you can get the discussion happening inside a group (via the comment/status system) that is NOT part of the forum, and vice-versa. So, discussion is not happening in the same place. The big idea we had was to bring it all together.

    I suppose the simplest idea would be to not enable groups, and use site-wide forums … but if not using Groups, I’m not sure what other big plus there is to BuddyPress.

    Again – I realize at this point, it’s all subjective and preference. I’m enlisting some beta-testers to hit our staging site from our existing forums to see what they like/dislike.

    #161967
    Hope
    Participant

    Actually I already added ‘style’ to ‘span’, I added the paragraph ‘p’ as you mentioned but still the same issue!

    Here’s the part of the HTML page that is treated in the function but still HTML tags appear in the post:

    <p>
    <span style="text-decoration: underline; color:
    <a class="hashtag" rel="nofollow" href="http://localhost/wordpress/forums/search/?bbp_search=%23000080">#000080</a>
    ;”>
    <em>
    <strong>
    <span style="font-size: 12pt;font-family: arial,helvetica,sans-serif">test</span>
    </strong>
    </em>
    </p>

    Again, have I missed something?

    Thanks for your help
    Hope

    Vignesh M
    Participant

    Hi there!!

    I would like to show the total post count for each user, both in their member profile without login also (below the username), and below their name whenever it appears in posts, comments, Forum Topics and Replies, activity streams, etc. Something like this:

    Vignesh 50 Posts
    10Forums
    I want to view in this page http://test06.aachicargo.com/members/
    This would be a way for everyone to easily identify the most frequent posters to the site. Anybody know how to do this? Please help Me..

    Advance Thanks

Viewing 25 results - 3,576 through 3,600 (of 11,584 total)
Skip to toolbar