Forum Replies Created
-
In reply to: Moving bbpress from localhost to online server
hmm – not keen to try accessing a link starting with darkforum…
that should work – I presume you have buddypress active ?
In reply to: bbp_insert_topic – Email notificationsgreat – glad you are fixed !
great – glad you are fixed !
In reply to: How can I customise topic paginationThanks !!
In reply to: How can I customise topic paginationwould be great if you posted your solution here to help others that might have the same issue
Product is free, support is free, but funnily it’s a weekend and public holiday, so apologies that I didn’t break away from spending some time with my family to answer your question. I get paid nothing to help people on here, and take time away from earning a living to do this.
I suspect that if you expect this level, then open source software is not for you, and I shall not trouble you further.
In reply to: Moving bbpress from localhost to online servertry
dashboard>settings>permalinks and just click save, this will reset permalinks
In reply to: Questions (new to bb/wordpress)bbp style pack lets you create buttons, change freshness styling, and put titles under posts
what plugin are you using to create that area?
In reply to: Login only works 2nd timeok think you need to do some testing.
suggest you start by seeing if the issue only occurs with bbpress login widget, or with a standard worpdress login – they are effectively the same as bbpress merely uses a wordpress login, so you shopukld see the error with both, but worth checking
if both create the issue, then follow the instructions in the https://bbpress.org/forums/topic/before-posting/ thread on troubleshooting and then come back
In reply to: Forum link stopped workingwhich exact version of php7?
In reply to: Changing Forum Titleas per the other thread which has how to remove, or use my style pack plugin
In reply to: Remove Private: label prefixprivate just restricts it to user with logins, so participants can see private topics
In reply to: Media (image) Topic Belowhappy to do this one last one
.post-content table, .comment-content table { clear: none; max-width: 70%; }
In reply to: Media (image) Topic Belowagain I need a link to look
In reply to: Post replies are going the full width of the pagenot a css problem, but a div one
the content should be contained like this
<div class="bbp-reply-content"> <p>dsfgdsfdf</p> </div>
but on your site you have
<div class="bbp-reply-content"> </div> </div> </li> <li></li> <p>There is a bill named by congress </p> etc.
so you are closing the content div and another div before your post content
not sure what you are doing – have you amended any templates?
or is your theme doing this – as a test try another theme to se if it persists
In reply to: Previous Viewed instead of Breadcrumbsand what do you want to go back to?
In reply to: Previous Viewed instead of Breadcrumbsyes it will if your page and forum slug match !
In reply to: Previous Viewed instead of Breadcrumbsno that doesn’t work, give me a moment !
In reply to: Previous Viewed instead of Breadcrumbsok, try
enable the root breadcrumb in
dashboard>settings>bbp style pack>breadcrumbs
so that you’ve disabled breadcrumb home and breadcrumb current
Then in custom css have
.bbp-breadcrumb-root::before { content: "Back to "; } .bbp-breadcrumb-forum { display : none ; }
In reply to: 404 Error as Page titleno problem, glad you are fixed !
In reply to: 404 Error as Page titleok, as a non logged in user, I can’t get 404 errors.
Can you give me a sequence that creates this.
In reply to: 404 Error as Page titleand presume that did nothing ?
In reply to: Reload page after logintry adding this to your theme’s functions file
add_filter( 'bbp_redirect_login', 'rew_ignore' ); function rew_ignore () { $url = '' ; return $url ; }