Forum Replies Created
-
In reply to: Photo Upload
both the plugins should work
In reply to: How to Uninstall and remove role capabilitiesDoes it still show the Additional Capabilities in your user profile still ??
In reply to: Display uppercase Letters in Usernamesit 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.
In reply to: bbpress forum in androidyou will need to hire a developer for this.
one that has experience with WordPress , bbPress , and creating Android applications.
In reply to: Help.it is displaying like this because bbPress thinks your forums is a blog posts because of some code that should be only for blog posts.
create a bbpress.php file
if you need any more help with this reply back
In reply to: How to Uninstall and remove role capabilitieswhat plugin are you using for managing roles.
In reply to: force revision logsuse this CSS to hide the checkbox for users to turn off logging their specific topic or rpely.
label[for="bbp_log_reply_edit"], label[for="bbp_log_topic_edit"], input#bbp_log_reply_edit, input#bbp_log_topic_edit { display: none !important; }
In reply to: Linux users can post but windows users cantGo through the troubleshooting in here.
Also know to disable caching for logged in users.
Since this is an odd issue I am probably going to ask you a bunch of questions to help find the problem if the above steps do not work.
In reply to: Display uppercase Letters in Usernamesit might be another plugin causing the issue.
Maybe during registration?? not sure though.
WordPress on your side displays all users in the “all users” section to be lowercase even when they have uppercase and lowercase in their usernames??
In reply to: How to change the post order?add this to your child theme functions.php or install the plugin below.
function bbp_reverse_reply_order( $query = array() ) { $query['order']='DESC'; return $query; } add_fiter('bbp_has_replies_query','bbp_reverse_reply_order');
In reply to: Photo Uploaduse this for photo uploads into posts
https://wordpress.org/plugins/gd-bbpress-attachments/
use basic user avatars for just avatars
In reply to: How to Uninstall and remove role capabilitiesThis might help.
https://wordpress.org/plugins/bbpress-role-deleter/
other than that follow the uninstall process in tools > forums then reset forums
In reply to: Where are my RSS Feeds?you can just put simple HTML in the text widget to link to the feeds , it would basically do the same thing.
just add this into your text widget.
<ul> <li><a href="http://www.theworshipcommunity.com/staging/forums/feed">All Recent Posts</a></li> <li><a href="http://www.theworshipcommunity.com/staging/topics/feed" title="All Recent Topics">All Recent Topics</a></li> </ul>
In reply to: Display uppercase Letters in Usernamesoh sorry i thought you meant make it all capital letters.
There might be some PHP causing the issue that i cannot see
i see that you have a child theme of twentyfourteen and by default the theme doesn’t have this.
In reply to: Where are my RSS Feeds?its not a widget its just links in the sidebar.php file
And most of whats on this site in the sidebar is custom.
The links that you need
For forums/all recent topics
http://www.theworshipcommunity.com/staging/forums/feedFor topics/all recent posts
http://www.theworshipcommunity.com/staging/topics/feedIn reply to: The visual editori think that tinymce was also getting buggy until the big version 4 update in WordPress 3.9.
In reply to: HTML tags appear in the forum postswell looking at this and seeing
class="hashtag"
<a class="hashtag" rel="nofollow" href="http://localhost/wordpress/forums/search/?bbp_search=%23000080">#000080</a> //color hex should not be in here ;”>
the issue is probably from this plugin if you are using it.
deactivate that and see if tinymce works better after that.
In reply to: Display uppercase Letters in UsernamesDoes adding !important help??
#bbpress-forums div.bbp-user-role { font-size: 1rem; color: rgba(105, 105, 105, 1); font-family: Lato, Arial, Helvetica; text-transform: uppercase !important; }
In reply to: Forum notification emails – turning off and onYou might need to hire a developer to do start where the other developer left off.
i did find this , but you need to manually unsubscribe all the users you do not want. Im not sure if it would work with with your custom development for topic subscriptions already but you can try it.
https://github.com/easydigitaldownloads/bbPress-Topic-Subscribers
In reply to: Html entities in my rss feed titlesemail me and tell me how you set up mailchimp with bbPRess
In reply to: HTML tags appear in the forum postsI 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.
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.
In reply to: Adding search bars to topicsis there any other code in your functions.php in your child theme??
usually there is a
<?php
on the first line if you created a functions.php in your child theme. then you can put your custom functions in that.and to use the functionality plugin you install , activate , then go to plugins > edit functions
then place any code snippet you get from sites and place it into there after the plugin information.In reply to: Adding search bars to topicsyou did put it in your child themes functions.php file or a functionality plugin like this right??..
https://wordpress.org/plugins/functionality/
and how did it break your site??
In reply to: Adding search bars to topicsits just spam don’t worry about it.