Skip to:
Content
Pages
Categories
Search
Top
Bottom

Ayuda del Plugins

Published on February 17th, 2017 by egimen25

Hello, I have been playing with the bbpress plugins in locahost, all good except for the following:

1.- Overlap of the fields DEBATES and PUBLICATIONS in the page of forum
2.- How to modify the texts of the fomulario beginning of section of forum, Example:
      Remind me to change it by Remember my password
      Registration modified by Register account
      Password lost by Restore password.

Thank you for your help in correcting the solution.
 
regards

Ajaxify create new topic form

Published on February 17th, 2017 by tpsr51

I am trying to replace all the topics in a specific forum with the new topic form whenever I press on the Create New Topic button.
Then I tried to ajaxify it using the shortcode

You must be logged in to create new topics.

, but the form didn’t showed up…

In the functions.php I have added this:


wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/js/topicButton.js', array ( 'jquery' ), 1.1, true);
wp_localize_script( 'script', 'script', array(
	'ajaxurl' => admin_url( 'admin-ajax.php' )
));
..
..
add_action('wp_ajax_script', 'scriptfunc');
add_action('wp_ajax_nopriv_script', 'scriptfunc');
function scriptfunc() {
	echo do_shortcode("

You must be logged in to create new topics.

"); die(); }

The ajax file

(function($) {
	
		function find_forum_id() {
			var forumidval = document.getElementsByTagName("article")[0].id;
			forumidval = forumidval.replace(/\D/g,'');
			return parseInt( forumidval );
		}
	
		$(document).on( 'click', '.bbp-new-topic-button', function( event ) {
			event.preventDefault();
			
			forumid = find_forum_id();
			
			$.ajax({
				url: ajaxurl,
				type: 'post',
				data: {
					action: 'scriptfunc',
					forumid: forumid
				},
				beforeSend: function() {
					$('.bbp-topics').remove();
				},
				success: function( html ) {
					$('article').append( html );
				}
			})
		
		});
 })(jQuery);

How To change Forum Role

Published on February 17th, 2017 by Apparao Hawanna

In my project I want to assign different user role through Registration Form…

Roles Like as vets, trainers, groomers, pet owners etc

Please Help me…..

created new forum, how to add login option

Published on February 16th, 2017 by hemmel

Hi,

I just transferred my phpbb forum to bbpress. The conversion went well, but I can’t figure out how to add the login option.

Site is here:

Trouble Every Day

I added Widget Logic and added the login and search widgets into the subsidiary, but nothing is showing up.

Any help would be much appreciated!

SSL-problem with avatars

Published on February 16th, 2017 by eenergy

After switching our site to an SSL-certificate, the avatars are not loaded over the secure connection. This only affects the avatars. These are displayed, but via http://
Is there a setting for this?

Editing text above forum list

Published on February 16th, 2017 by caseynmiles

I just took over a WP site that uses bbpress for the forums. I cannot figure out how to edit the text right above the list of forums that starts “All forums are reserved for…”

Here’s a link to the page:
cwshrc.org/resources/forums

Suggestions?

Login widget: Log In Dont´t work links edit profile, favorites and subscritions

Published on February 16th, 2017 by jcuti

Hello! You have created a forum with the bbpress pluguin and with the template WP Knowledge Base. I add the pluguin Login widget: Log In but the edit profile links, favorites and subscriptions do not work. The url is index.php / forums / user / admin / edit /.

Do you know what may be happening?

thank you very much

bbPress sidebar not working

Published on February 16th, 2017 by mpnuu

I’m new with the WordPress and building my first webpage. I have installed bbPress and bbPress WP Tweaks plugin and created Forum page. Forum appears on forum page, but login sidebar widget does not. bbPress sidebar area is showing on Widgets settings and I have added login widget to it. Still sidebar is not showing on Forum page. If I add login widget to main sidebar widget area, then login widget will show on every page. Why bbPress sidebar widget area is not working? Is this a bug? I have tried this with many WordPress themes with no luck.

I’m currently using WordPress 4.7.2 with Twenty Twelve theme and bbPress 2.5.12-6148.
My website is not yet public.

How to display bbpress like other forum scripts?

Published on February 16th, 2017 by expat

How to display bbpress like other forum scripts?

ie in hierachical display ?

Top forum 1
-next level
–second level
Top forum 2
-next level
–second level
Top forum 3
-next level
–second level

but as links under the Top level ones,

Url link ‘Insert/edit’ dialogue box

Published on February 15th, 2017 by russ8523

Url link ‘Insert/edit’ dialogue box is cropped too small/close – link entry boxes are too small and the submit buttons etc, are cropped off edge of dialogue box. doing F12 inspect items, I can find settings that correct this, but I can’t get them to stick! I’ve copied/pasted into Child-Theme CSS and bbpress CSS to no avail.

4.7.2 Multisite – forum in sub-dir site.

Would be very grateful for any advice.

Skip to toolbar