Forum Replies Created
-
In reply to: Topics and replies awaiting moderation
Thanks!
I implemented this in my code.In reply to: Topics and replies awaiting moderationComments are without moderation.
The problem is happening intermittently, a user sends a topic or reply and this action may or may not wait for moderation, is there anything in the code that I can adjust?In reply to: Topics and replies awaiting moderationSome.
Eg.:
A user submits a topic/reply, this content is automatically approved, but if this same user submits a topic/reply again, this requires approval.
…or no.In reply to: Topic editor turn shortcode in HTMLThanks for your help, but I don’t think you understand my problem, sorry for my bad English.
See the real problem:
In reply to: Topic editor turn shortcode in HTMLYes, I’m inserting the shortcode, but when editing the topic, bbpress converts the shortcode to HTML, see the images, I don’t know why that happens.
In reply to: Topic editor turn shortcode in HTMLHi Robin W.
This solution allow Model Viewer Tag, but bbpress editor keeps converting my shortcode to html, how to solve this?Thanks.
In reply to: Topic editor turn shortcode in HTMLEg:
On insert topic:
On Edit topic:
In reply to: Single reply redirect to topicSorry!
In your “functions.php” add this line:add_action( 'wpss_before_head', 'wpss_single_reply_redirect' );
=)
In reply to: Single reply redirect to topicMy solution:
In your “head.php” before <html> tag:
do_action('wpss_before_head');
In your function.php:
function wpss_single_reply_redirect() { global $wp; $get_request = explode( '/', $wp->request ); $reply_id = end( $get_request ); if ( in_array( 'reply', $get_request ) ): if ( in_array( 'edit', $get_request ) ): return; endif; wp_redirect( bbp_get_reply_url( $reply_id ), 301 ); exit; endif; }
In reply to: Newbb (xoops) convert to bbpressThis week i’will update the plugin to put a user interface in admin page.
Another adjusts be necessary to detect XOOPS data, in Michal site, the site url field is different from what was programmed in the plugin, these adjustments are necessary so that you do not need a programmer for you to migrate your site.To start the migration you need to install WordPress in the same base of your site xoops, change the table prefix. Check if in the plugin panel it will detect the URL of your site xoops.
In reply to: Newbb (xoops) convert to bbpressHi Michal.
I speak with you by email, now I’m in my job, tonight i reply you. Sorry for my horrible english =DThanks.
In reply to: Newbb (xoops) convert to bbpressThis plugin is already functional, I’m working on a user-friendly interface, currently only works with some programming settings.
This site: https://www.guiadocftv.com.br/
It was migrated successfully using my plugin. At the moment I’m running out of time to finish it, as I’m involved in other WordPress projects, it’s how I make my living.This plugin is under GPL license, anyone from this forum can help in its finalization. Any doubts I am available.
In reply to: Newbb (xoops) convert to bbpressI’m worging on WP plugin to convert this:
In reply to: Single reply redirect to topicNo solution for this problem yet =(
In reply to: Single reply redirect to topicHi, Vinod Dalvi. Sorry for delay.
Actually, when click in link for single reply in search results, the single reply don’t show the parent topic in single reply template, i want redirect single reply template to topic parent.
In reply to: Single reply redirect to topicHi Vinod.
In search results, when the result is a “reply” post type, the link show only a reply.
I want click in the reply and this redirect to parent topic. Sorry for my bad english, i’m from Brazil =)In reply to: bbPress in wordpress search resultsThanks! Work fine.