Search Results for '+.+default+.+'
-
Search Results
-
A common error after installation of BuddyPress from within the WordPress admin panel is to not set pretty permalinks. If you fail to do this then all of the links in the header will return 404 errors.
To fix this problem, enter the WordPress admin panel > Settings > Permalinks – set to any configuration other than the default configuration. The mod_rewrite must be enabled on your server for pretty permalinks to work.
Topic: Problem translating
Hi, I am trying to translate the frontend section of my forum, but I can only translate parts of it. Here’s a screenshot :

As you can see, I can translate the top sentence, but I cannot translate the form part. I even tried to manually edit the php files without success (reverted to default files after).
I am using Loco Translate for editing my translations and my wordpress language is correctly set because I can translate some parts. I also can see the sentences in the Loco Editor but event after changing them, they do not change in the frontend.
I hope I have given enough informations.
Thanks
Topic: Http 500 error
Hi
Bit of a beginner here so forgive me if I’m asking something which should be obvious!
I have installed BBpress on my wordpress site but when I click on the forums tab on the wordpress dashboard it seems the link is broken. It takes me to a “HTTP 500 error” default screen. I can click on “New forum” but not “All forums”. Similarly when you click on any of the forum links on the homepage, even those links appear broken as you don’t land on that forum. Even then, I get the same HTTP error. Any ideas?
Is there a way to add a list of topics users are subscribed to on a page so they can manage it?
I created a custom profile editor so they don’t go into the wordpress backend when users click on their forum gravatar seemed to be default on my installation. Or is there a front end profile editor I can use like in this forum (I can’t seem to find a plugin or anything for it)
Topic: only admin profile visible?
my permalinks are set to month & name. my .htaccess has only the default WP rewrite rules. I have bbPress 2.5.12, jetpack 4.7, and woocommerce 2.6.14.
When i visit mysite/forums/topic/* I get my topic.
When i visit mysite/forums/user/admin I get the admin profile.
When i visit mysite/forums/user/anyone-else I get the site homepage.This works wether I am logged in or out. I have no security plugins or cache plugins.
Please: Why is this happening and how do I fix it?
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 [bbp-topic-form], 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("[bbp-topic-form]"); 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);