Search Results for '"wordpress"'
-
Search Results
-
Hi,
I’ve had an issue with my site http://www.explainervideocost.com , it was working fine when it was running on WordPress 4.5.2, After upgrading to WordPress 4.5.3 my site is not functioning how it should on the front-end.
I urgently need a fix, so if you have any ideas of how I can fix this, that’d be much appreciated.
Thanks,
-SteveHi all
this is my (new) website: http://psychiatryadvice.comWhen someone attempts to submit a new topic the following message occurs:
ERROR: Your topic cannot be created at this time.
Under settings>discussion I do not have any words in the blacklist or comment moderation. I also disabled the most recent plugin I installed (btw creating new topics was no problem after I initially installed this plugin).
Any advice how to fix this please?
Thanks!Wordpress v 4.5.3
bbpress v 2.5.9-6017Greetings all ye WordPress gurus,
This is pertaining to the site http://www.dentistrytoday.info ( made in drupal 6.34 )Drupal 6.34 is now outdated. Support for Drupal 6 has been withdrawn and furthermore drupal development is expensive.
So I have decided to migrate the forums from drupal to some other CMS. I also want to move away from Drupal since I find Drupal development is expensive.
To migrate the site from drupal to some other CMS I have some queries.
My queries to this esteemed forum.
1. Which CMS is the best for a discussion forum?
2. I want to migrate to a CMS which is easy to use, mobile friendly, responsive and easy to modify and refine.
3. Plenty of developers must be available for the forums for that particular CMS so that maintaining, refining and upgrading the forums can be done at a reasonable cost.
4. The CMS must get updated automatically. Will the phbBB forum get updated automatically? I am told that wordpress sites get updated automatically. Will the forums made in wordpress get updated automatically?
5. We want conduct all activities on the forum that are usually done on educational sites like webinars, email newsletters, email newsletters with case presentations, blogs etc.
6. If we migrate it to wordpress forums what kind of security precautions shoud I take, pre and post migration. I am told that wordpress sites are more vulnerable to hacking than Drupal sites.
7. Besides the forums must be secure and if possible I want to have the registration form without a captcha challenge.
8. My staff must be able to take offline and online backups of the site easily.
9. Can wordpress forum can support forums of bigger sizes (80,000 forum articles and 30,000 users). Also which plugins will be better for users and forums so that their updation does not affect the live site once it is launched.Hope to see a lot of responses and many thanks in advance for the same.
Regards,
Dr. Veerendra DarakhI am running bbpress(Version 2.5.9) + buddypress(Version 2.5.3) on wordpress version > 4.5.1.
In bbpress there are users with Forum Role as Participant and site role as Participant. I have observed that any participant can delete tags created by any other participant. For example if participant-A creates a topic-A with tag-a, when participant-B replies to Topic-A, then participant-B can see tag-a created by participant-A in tag input field and if participant-B removes it from the input field and submits the reply then tag-a is deleted from Topic-A. I this behaviour normal. I . Any help will be great as I have been trying but could not find any reference to this use case.Topic: Bbpress Background Image
Hello,
I was wondering is there any way to change the background image of only bbpress pages? This is because if I change the background image of my theme through the customizer, then my home page, about page, blog posts page, etc. will all have that background image, which doesn’t look very good.
I am currently running wordpress version: 4.5.3, bbpress version: 2.5.9, and my website is http://www.purposeshare.com/forums, which is using the sydney child theme.
Thanks,
DavidWordPress Version: 4.5.3
bbPress Version: 2.5.9
Website Link: http://www.sva.bc.ca/newforums/Hello,
After setting up bbPress I “imported” forum posts manually from an older system, setting the “Published On” date to match the date of each original topic/reply. I then found that bbPress’s “freshness” ignored this date and used the date/time I had manually added these posts.
So I installed the bbPress last post plugin ( https://en-gb.wordpress.org/plugins/bbp-last-post/ ) and modified it a little. The following code is what is currently being used, and is almost what I want:
<?php //this function changes the bbp freshness data (time since) into a last post date for forums function change_freshness_forum ($forum_id = 0 ) { // Verify forum and get last active meta $forum_id = bbp_get_forum_id( $forum_id ); $reply_id = bbp_get_forum_last_reply_id( $forum_id ); if ( !empty( $reply_id ) ) { $last_active_date = get_the_date( '', $reply_id ); } else { $topic_id = bbp_get_forum_last_topic_id( $forum_id ); if ( !empty( $topic_id ) ) { $last_active_date = get_the_date('', $topic_id ); } } if ( !empty( $reply_id ) ) { $last_active_time = get_the_time( '', $reply_id ); } else { if ( !empty( $topic_id ) ) { $last_active_time = get_the_time('', $topic_id ); } } $last_active_date = bbp_convert_date( $last_active_date ) ; $last_active_time = bbp_convert_date( $last_active_time ) ; $date_format = get_option( 'date_format' ); $time_format = get_option( 'time_format' ); $date= date_i18n( "{$date_format}", $last_active_date ); $time=date_i18n( "{$time_format}", $last_active_time ); $active_time = sprintf( _x( '%1$s at %2$s', 'date at time', 'bbp-last-post' ), $date, $time ); return $active_time ; } add_filter( 'bbp_get_forum_last_active', 'change_freshness_forum', 10, 2 ); //this function changes the bbp freshness data (time since) into a last post date for topics function change_freshness_topic ($last_active, $topic_id) { $topic_id = bbp_get_topic_id( $topic_id ); // Try to get the most accurate freshness date possible if ( empty( $last_active_date ) ) { $reply_id = bbp_get_topic_last_reply_id( $topic_id ); if ( !empty( $reply_id ) ) { $last_active_date = get_the_date( '', $reply_id ); } else { $last_active_date = get_the_date( '', $topic_id ); } } // Try to get the most accurate freshness time possible if ( empty( $last_active_time ) ) { $reply_id = bbp_get_topic_last_reply_id( $topic_id ); if ( !empty( $reply_id ) ) { $last_active_time = get_the_time( '', $reply_id ); } else { $last_active_time = get_the_time( '', $topic_id ); } } $last_active_date = bbp_convert_date( $last_active_date ) ; $last_active_time = bbp_convert_date( $last_active_time ) ; $date_format = get_option( 'date_format' ); $time_format = get_option( 'time_format' ); $date= date_i18n( "{$date_format}", $last_active_date ); $time=date_i18n( "{$time_format}", $last_active_time ); $active_time = sprintf( _x( '%1$s at %2$s', 'date at time', 'bbp-last-post' ), $date, $time ); return $active_time ; } add_filter( 'bbp_get_topic_last_active', 'change_freshness_topic', 10, 2 ); //This function changes the heading "Freshness" to the name created in Settings>bbp last post function change_translate_text( $translated_text ) { $text = 'Freshness' ; if ( $translated_text == $text ) { global $rlp_options; $translated_text = $rlp_options['heading_label']; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );The only problem now is that from the forum index view, the “Last Post” column will show the date of the most recent reply, even if there is a newer topic.
Is there a way to compare the dates and make sure the Last Post column displays the most recent topic or reply, whichever is newer?
Thanks!
Hi,
When searching through the forum and not being logged in, a message appears at the bottom saying you must be logged in to post a reply……
Is there any way you can send me the code, so that there is a direct link to the forum login from this message or next to the message.bbPress version is up to date. and wordpress version is a unique one created by web dev company.
Thanks in advance for your help