Search Results for 'codes'
-
Search Results
-
Problem 1:
Using builtin importer, whole system is being imported by phpbb3. Anonymous users who does not have any accounts are allowed for posting but they are showing up as anonymous, in the system.
I have collected theusernames_of_the_visitors
fromposts_from_current_users
and created those users, using a query:INSERT INTO wp_current_visitors (using_the_login) SELECT DISTINCT usernames_of_the_visitors FROM posts_from_current_users
Step 2:
I am creating multiple tables (in this case:3), some of the code is:SELECT ID FROM wp_current_visitors INSERT INTO current_live_posts(author_current_posts) WHERE current_live_posts(post_time_and_date) = posts_from_current_users(posted_time) AND posts_from_current_users(usernames_of_the_visitors) = wp_current_visitors(using_the_login)
You can see this is not the correct way contain syntax errors. First I have to correct it. Second, I have to find a way to tell the mySQL that ID is connected with ‘using_the_login’ (see the first line). Am I right?
Please help in this regard?
Queries after up-gradation:
SELECT ID FROM wp_current_visitors SELECT post_time FROM posts_from_current_users = post_time_and_date SELECT post_username FROM posts_from_current_users = using_the_login
The are working in the correct way. But, I don’t know where to insert the WHERE information correctly.Only possible solution in my mind is to create sub-queries.
Problem 2:
I am installing bbpress on my own(for the first time on a client website, as an evaluation task). I am creating a simple forum, with necessary plugins for login and flow control. But, an important requirement, I am unable to configure is that client wants to create a new page for each directory page. And whenever a new page is added, he wants to add a forum page, automatically. Like, if the directory page is Directory page of militarybases – Cheyenne mountain Air Force base Colorado Springs Colorado. When, he made the page using wordpress, it’s forum page like website/forum/cheyenne-mountain-air-force-base-colorado-springs-co automatically created.Is this possible? If yes, how will achieve this? Please don’t tell codes other than javascript and php. Please only provide the full solution, in case of others.
I noticed that when you go to the root forum it displays all the forums to the user. Not a desired effect. I am using shortcodes and spreading my forums on different pages and some are only available to certain user roles. BUT if someone goes to the root forum they see it all.
How would I prevent this from happening? Is there a way to maybe hide the root forum or possibly some other way to go about this.
Hi,
I created a forum, his id is 3569159-2 and it contains one topic.in this page of my website http://radiotounsi.com/?page_id=4862
I tried to display this forum by using the shortcode [bbp-single-forum id=$3569159-2] but nothing is displayed, but other bbpress shortcodes work just fine like [bbp-forum-index] and [bbp-login]
I switched the theme to twenty sixteen for testing purpose, same problemTopic: Misc characters in emails
I have tried searching, and haven’t found this issue. I may not be using proper terms.
The email notifications are being sent just fine. However, they all are proceeded by a bunch of characters, i.e. similar to the following (plus there are strange codes within the email itself)
=?UTF-8?Q?ly=20To:=20Safety=20in=20Chir?==?UTF-8?Q?iqui?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printableThe subject lines are fine. However, there are also lines of the notification showing extraneous codes and line breaks in strange places, including middle of a word, like the following:
A new reply has been posted by a user. Please login to read full p=
osting and respond.
IMPORTANT: You cannot reply to forum postings via email. You must be logged=
in to reply.=20Lastly, the end of the excerpts show codes too, such as =E2=80=A6
Using latest version of WP and plugin.
Topic: Plugin not translated
Wordpress version: 4.5.3
bbPress version: 2.5.10
theme: Zippy Courses
site: http://escuela.palabrasalavida.com/forums/forum/el-yoga-de-las-palabras/Hi,
Pleased I’m stuck with this. I have my WordPress installed in es_ES, I have translated the Zippy Courses theme without problems and now I am trying to translate the bbpress pluging by copying the es_ES.mo file into the languages folder and it doesn’t work. The plugin is not getting translated.
I have tried to do it using the plugin “Codestyling localization” and I get this message:
Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.
Any hints?
Thanks for your help!
Topic: I am Newbie
Hey community!
I just joined BBPress a day ago, and completely alien to it. I basically want to understand how can you increase font size for the forums as its pretty small. Also if you are telling me to do with CSS. Please tell me where can I find CSS and how can I do it? Where to paste codes, I am in urgent help, please support!
Heres my community https://www.evilgamers.gqI am working on a theme and need to deque all bbpress scripts and enque my own if I am on forum pages. This is what I used to start with
if( !is_admin() ){ /** * Replace bbpress style with our own * @internal */ function _thz_action_bbpress_style() { wp_dequeue_style( 'bbp-default' ); if (is_bbpress()){ wp_enqueue_style( THEME_NAME. '-bbpress' ); } } if (function_exists('is_bbpress')){ add_action( 'wp_enqueue_scripts', '_thz_action_bbpress_style' ); } }
issue with this is that
is_bbpress()
is not recognized on pages that use any bbpress shortcodes like[bbp-forum-index]
Can someone please provide a working conditional that runs only on forum pages and not throughout the whole site. Thnx!