Search Results for 'code'
-
Search Results
-
Topic: Problem with Shortcodes
Hi there,
I have been using wordpress for the last year. In October I took over the completion of a site for a company I am working for. I set up a forum on the website using bbpress. All has worked fine until recently. Yesterday my boss pointed out an error on the forums page. See error here
I began trying to fix it by remaking the page, using different shortcodes and changing/refreshing settings. All my other shortcodes that I’m using on my website are working fine, and when I use a shortcode for a different plugin in the same place on this page, it works fine. The shortcode I have been using is [bbp-forum-index]. I don’t know what caused it to stop working, as I have not installed any new plugins since before it has stopped working.
WordPress 4.9.6 running Sydney theme.
Topic: Widgets
Hi, I’d like to make a custom widget with the default bbpress forum list widget as a code starting point. Where would I locate these, and where should I place them once I make it? Should i turn it into a personal plugin so i can use it on other sites if I wish?
It’s just that the default one is meant for a side bar, and I want one for under my header on my main page.
When I perform a search, I get duplicate search results.
One set of results have no sidebar (full page width) and immediately below that I get a duplicate set of search results with the sidebar widgets. I am using a bbpress.php file in my child theme. It appears to be using that.
Here is my bbpress.php file:
<?php /* Template Name: Page: bbpress.php */ global $data; get_header(); ?> <div class="page-wrap"> <?php get_template_part( 'framework/inc/slider' ); ?> <div id="page-body" class="page-body"> <div class="container"> <div id="page-title"> <hgroup> <h2>Fax Software</h2> <h1>Community Forums</h1> </hgroup> </div> <?php if ( function_exists('yoast_breadcrumb') ) {yoast_breadcrumb('<p id="breadcrumbs">','</p>');} ?> <?php echo do_shortcode( '[bbp-search]' ) ?> <div class="row"> <div class="span9"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>><?php the_content(); wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?> </article><?php if(!$data['check_disablecomments']) { comments_template(); } endwhile; endif; ?> </div> <?php get_sidebar('forums'); ?> </div> </div> </div> <?php get_footer(); ?>I do not currently have a loop-search.php file in my child theme.
I have added a acf galley field to the user profile page using the acf plugin by setting it to show on the user profile page.
The field is showing when I click ‘edit’ to edit the profile but the it isn’t working, when I try to add images they don’t show.
Do I need to add custom code for it to work? What is the issue here?This code works fine:
https://www.reach22.com/r22/forums/topic/tree-/?action=bbp_subscribe&object_id=2009&object_type=post&_wpnonce=c78cb75b54whereas the equivalent shortcode:
https://www.reach22.com/r22/sessions/heathland/?action=bbp_subscribe&object_id=2009&_wpnonce=c78cb75b54&object_type=post
gives a 403 errorGrateful if anyone could give me a steer on how to resolve this?
Thanks
Hi!
I am trying to make any topics and replies submitted on the front end have a default category (I have extended the custom post type of bbPress to support categories). This works for everything submitted on the back end, but not everything submitted on the front end. I have played around with this a lot, and have not made any progress.
I am using WordPress 4.9.5, bbPress 2.5.14 and the site I am working on (locked so this link probably won’t do any good) is https://gateway.aishasalem.com
// adding possibilities to have categories for custom post types public function gt_custom_post_type_categories() { register_taxonomy_for_object_type( 'category', 'topic' ); register_taxonomy_for_object_type( 'category', 'reply' ); } add_action( 'init', 'gt_custom_post_type_categories', 11 );And this code to assign the categories as default when a post is saved / published. It works on the back end, but only partially on the front end.
// setting default post catagory when saving public function gt_set_default_category( $post_id, $post, $update ) { // Slugs of the custom post types $slugs = array('topic', 'reply'); // current post type $current_post_type = $post->post_type; // If this post isn't a custom posty type, don't update if ( !in_array($current_post_type, $slugs) ) { return; } // Sets the default category depending on the current post type switch ($current_post_type) { case 'topic': $default_category = 'livingroom-topics'; break; case 'reply': $default_category = 'livingroom-replies'; // does not hook in on the fron end break; default: return; } // sets the default category $default_term = get_term_by('slug', $default_category, 'category'); wp_set_object_terms(get_the_ID(), $default_term->term_id, 'category'); } add_action( 'save_post', 'gt_set_default_category', 9, 3 );I have tried hooking into ‘bbp_new_reply’ but this doesn’t seem to help (maybe I am doing it wrong). Do you have any advice of how to do this? Where to hook into? If it should be a filter and a function of a different form (if so, please give as much info as possible, I am new to php wordpress and especially filters)?
Thank you so much!!
Topic: User Role Modification
Hello,
I have a bbPress site. I want to change some role permission.
1. Participant Role will be able to delete their post and topic.
2. Annonymous user can delete their post and reply.
For number 1. I tried to follow this post but i am very confused. I added this code to theme childfunction.phpadd_filter ('bbp_get_topic_trash_link', 'topic_dont_delete'); add_filter ('bbp_get_reply_trash_link', 'reply_dont_delete'); function topic_dont_delete( $args = '') { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'sep' => ' | ', 'trash_text' => esc_html__( 'Trash', 'bbpress' ), 'restore_text' => esc_html__( 'Restore', 'bbpress' ), 'delete_text' => esc_html__( 'Delete', 'bbpress' ) ), 'get_topic_trash_link' ); $actions = array(); $topic = bbp_get_topic( bbp_get_topic_id( (int) $r['id'] ) ); if ( empty( $topic ) || !current_user_can( 'delete_topic', $topic->ID ) ) { return; } if ( bbp_is_topic_trash( $topic->ID ) ) { $actions['untrash'] = '<a title="' . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_topic_trash', 'sub_action' => 'untrash', 'topic_id' => $topic->ID ) ), 'untrash-' . $topic->post_type . '_' . $topic->ID ) ) . '" class="bbp-topic-restore-link">' . $r['restore_text'] . '</a>'; } elseif ( EMPTY_TRASH_DAYS ) { $actions['trash'] = '<a title="' . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_topic_trash', 'sub_action' => 'trash', 'topic_id' => $topic->ID ) ), 'trash-' . $topic->post_type . '_' . $topic->ID ) ) . '" class="bbp-topic-trash-link">' . $r['trash_text'] . '</a>'; } if ( bbp_is_topic_trash( $topic->ID ) || !EMPTY_TRASH_DAYS ) { if ( bbp_is_user_keymaster()) { $actions['delete'] = '<a title="' . esc_attr__( 'Delete this item permanently', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_topic_trash', 'sub_action' => 'delete', 'topic_id' => $topic->ID ) ), 'delete-' . $topic->post_type . '_' . $topic->ID ) ) . '" onclick="return confirm(\'' . esc_js( __( 'Are you sure you want to delete that permanently?', 'bbpress' ) ) . '\' );" class="bbp-topic-delete-link">' . $r['delete_text'] . '</a>'; } } // Process the admin links $retval = $r['link_before'] . implode( $r['sep'], $actions ) . $r['link_after']; return $retval ; } function reply_dont_delete( $args = '' ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'sep' => ' | ', 'trash_text' => esc_html__( 'Trash', 'bbpress' ), 'restore_text' => esc_html__( 'Restore', 'bbpress' ), 'delete_text' => esc_html__( 'Delete', 'bbpress' ) ), 'get_reply_trash_link' ); $actions = array(); $reply = bbp_get_reply( bbp_get_reply_id( (int) $r['id'] ) ); if ( empty( $reply ) || !current_user_can( 'delete_reply', $reply->ID ) ) { return; } if ( bbp_is_reply_trash( $reply->ID ) ) { $actions['untrash'] = '<a title="' . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'untrash', 'reply_id' => $reply->ID ) ), 'untrash-' . $reply->post_type . '_' . $reply->ID ) ) . '" class="bbp-reply-restore-link">' . $r['restore_text'] . '</a>'; } elseif ( EMPTY_TRASH_DAYS ) { $actions['trash'] = '<a title="' . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'trash', 'reply_id' => $reply->ID ) ), 'trash-' . $reply->post_type . '_' . $reply->ID ) ) . '" class="bbp-reply-trash-link">' . $r['trash_text'] . '</a>'; } if ( bbp_is_reply_trash( $reply->ID ) || !EMPTY_TRASH_DAYS ) { if ( bbp_is_user_keymaster()) { $actions['delete'] = '<a title="' . esc_attr__( 'Delete this item permanently', 'bbpress' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'delete', 'reply_id' => $reply->ID ) ), 'delete-' . $reply->post_type . '_' . $reply->ID ) ) . '" onclick="return confirm(\'' . esc_js( __( 'Are you sure you want to delete that permanently?', 'bbpress' ) ) . '\' );" class="bbp-reply-delete-link">' . $r['delete_text'] . '</a>'; } } // Process the admin links $retval = $r['link_before'] . implode( $r['sep'], $actions ) . $r['link_after']; return $retval ; }But as I understood that, it was trashing post not deleting them. What I have missed? This code didnot worked for me. May be I have missed some steps.
And for 2, I don’t know if its possible or not. Searched a lot but haven’t found any solution yet. My understanding is annonymous is not a role, nore a user. So how we can achieve that?
Thank You
Topic: Error import user to mybb
Hello,
I use Forum Migrator, but when i try to import user.
Appear this error:Errore sul database di WordPress: [Unknown column 'users.msn' in 'field list'] SELECT convert(users.uid USING "utf8mb4") AS uid,convert(users.password USING "utf8mb4") AS password,convert(users.salt USING "utf8mb4") AS salt,convert(users.username USING "utf8mb4") AS username,convert(users.email USING "utf8mb4") AS email,convert(users.website USING "utf8mb4") AS website,convert(users.regdate USING "utf8mb4") AS regdate,convert(users.usertitle USING "utf8mb4") AS usertitle,convert(users.aim USING "utf8mb4") AS aim,convert(users.yahoo USING "utf8mb4") AS yahoo,convert(users.icq USING "utf8mb4") AS icq,convert(users.msn USING "utf8mb4") AS msn,convert(users.signature USING "utf8mb4") AS signature FROM mybb_users AS users LIMIT 0, 100it’s just 130 user! Not big deal
I created a Single forum page with short code: [bbp-single-forum id=12]
from the single forum page I navigate to one of the topics. when I click on the single forum page link it redirects me to the single forum but not to the page I created. I disabled the forums links in the bread crumbs. Is there a way to edit the link for the single forum so that I could point it the page I created.
step 1: Home Page › Student Forum
step 2: Home Page › Student Forum › Features of Site Wide ForumFrom here when I click on the student forum it redirects me to the student forum and not the page I created with the student forum short code in it.
wordpress version: WordPress 4.9.5
bbpress version: Version 2.5.14
I have been trying to identify location and code to change in order to fix padding problem in the body of content/replies forum. Lack of padding makes the first letter of content to be hidden by arrowhead shape /line separating post message from author/date column.
How could I totally eliminate such vertical grey line/border, and edit/change padding so post text does not appear attached to left?