Search Results for 'codes'
-
Search Results
-
Topic: Problem with shortcodes
Am using:
Twentythirteen wordpress theme
bbPress – Version 2.5.12
With bbPress I have created a number of forums
But – when I put the following short code into a page:
[bbp-forum-index]it shows nothing …
Please – what am I doing wrong?
Topic: You Forgot a Few Things
Two to be precise.
#1. Registration: I take it you need to set up a page and to add a shortcode.
#2. Lost Password. Again I understand you need to set up a page and add a shortcode.You need to tell people, instead of acting as though they automatically knew this. And in these instructions to the page on installation. In addition, make sure to include the softcodes needed.
Don’t make setting up the plugin any more frustrating than it has to be.
Hi all
Fairly new to WordPress and the use of plugins (and the complications of interacting with themes) so please bare with me!
I am using the them Accelerate Pro theme, Version 2.5.10 of bbpress on a managed WordPress 4.6.1 site provided through godaddy. I have installed bbpress but I have come across two problems.
Firstly I do not seem to get the bbpress sidebar in widgets after installation? I have been trying to work round this by utilising Widget Logic options and codes (from a community help page) but is there anyway of getting this sidebar on my theme which would be a lot easier!
Secondly (and more importantly!) – the display of the fields on the registration page (I have create using shortcodes) gives the full width for the username and email fields but the rest (First Name (required), Last Name (required), Company/Organisation (required), Confirm Email (required), Password (required), Confirm Password (required) only display across about 1/8th of the page and look horribly bunched up. I suspect this is a problem across bbpress on my site but it is most noticeable here.
The url of the page is:Other pages created are:
andI have not done much in the way of setting up forums and topics as I wanted to get it displaying correctly first.
Help! You advice and guidance is most welcomed to ease my frustration!
Kind regard
Ricky
Hi all
Fairly new to WordPress and the use of plugins (and the complications of interacting with themes) so please bare with me!
I am using the them Accelerate Pro theme, Version 2.5.10 of bbPress on a managed WordPress 4.6.1 site provided through godaddy. I have installed bbPress but I have come across two problems.
Firstly I do not seem to get the bbPress sidebar in widgets after installation? I have been trying to work round this by utilising Widget Logic options and codes (from a community help page) but is there anyway of getting this sidebar on my theme which would be a lot easier!
Secondly (and more importantly!) – the display of the fields on the registration page (I have create using shortcodes) gives the full width for the username and email fields but the rest (First Name (required), Last Name (required), Company/Organisation (required), Confirm Email (required), Password (required), Confirm Password (required) only display across about 1/8th of the page and look horribly bunched up. I suspect this is a problem across bbPress on my site but it is most noticeable here.
The url of the page is:Other pages created are:
http://ruralengland.org/forum/
andI have not done much in the way of setting up forums and topics as I wanted to get it displaying correctly first.
Help! You advice and guidance is most welcomed to ease my frustration!
Kind regards
Ricky
Hello,
there is a problem with bbpress, that prevents SEO Plugins to do there job.The problem exists only for the forum index page. Also if you use a standard page an paste the [bbp-forum-index] shortcode.
* That page is not handled anymore as a page, so it gets a noindex tag by the SEO plugins.
* It’s also not possible to add a custom title, description or other meta tags.The bbpress forum index is completely ignoring all of that settings.
The result is a noindex forum index without a reasonable title and description.Example:
Forum indexScreenshot of the ignored settings:
I talked with the codes a the German WPseo plugin.
They told me, that bbpress is using so crude things for that index and doesn’t use wordpress standards.I also found here in the forum and on Google, that Yoast and All in one SEO Pack have the same problems with bbpress.
Is there a way to get that fixed?
A forum index with nofollow makes no sense at all.
thanks
JochenI have tried so many codes on my child theme css to add custom codes. I can’t seem to get it done.
my website is: theceoafrica.com
theme: tdMacro themeCan anyone PLEASE help me figure out how to:
1. To remove the blue link colour after mouse click on each menu item
2. To add a white border on current/active menu item
3. Please i also need to adjust the width of my website. It doesn’t fit into the window.I would really appreciate your help. Thank You.
I want to switch the Top Five Topics widget on my site to a Topics With No Replies widget.
I think I’ve found the code referring to the Top Five Topics widget in functions.php – this looks like it:
function rk_top_five_view() {
bbp_register_view( ‘top-five’, __( ‘5 Most Popular Topics’ ), array(
‘meta_key’ => ‘_bbp_reply_count’,
‘posts_per_page’ => ‘5’ ,
‘ max_num_pages’ => ‘1’,
‘orderby’ => ‘meta_value_num’ ),
false );
}add_action( ‘bbp_register_views’, ‘rk_top_five_view’ );
And I think this is the relevant code on the page where the widget is displayed:
[bbp-single-view id="top-five"]According to https://codex.bbpress.org/features/shortcodes/ the code for No Replies is:
[bbp-single-view id=’no-replies’]So I’m guessing that on the page I just need to replace top-five code with no-replies…?
But what about the code in functions.php?
I found this on github:
bbp_register_view(
‘no-replies’,
__( ‘Topics with no replies’, ‘bbpress’ ),
apply_filters( ‘bbp_register_view_no_replies’, array(
‘meta_key’ => ‘_bbp_reply_count’,
‘meta_value’ => 1,
‘meta_compare’ => ‘<‘,
‘orderby’ => ”
)
) );
}Is this what I need? Or should it start with function like the current code I posted at the top?
Please excuse me if I’m missing something obvious here – I’m just the website owner, not a developer.
Thanks in advance 🙂
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.