-
Author
-
May 10, 2014 at 06:18 #17411guy_fraserParticipant
In these forums, each topic has a status icon next to it, and when viewing a topic the topic creator can set the status to resolved / not support etc… How is that done?
Attachments:
You must be logged in to view attached files.May 10, 2014 at 06:26 #17413PedromlParticipantShould be part of bootstrap http://getbootstrap.com/examples/theme/
May 10, 2014 at 19:22 #17473guy_fraserParticipantYes, but what plugin is on the back-end that puts the UI in to the forums and manages ticket status, etc?
May 10, 2014 at 19:46 #17476guy_fraserParticipantAwesome win! I’d dredged through dozens of plugins and not found that one, glad to see it’s by imath – he’s one of the better developers out there 🙂
May 10, 2014 at 20:06 #17483guy_fraserParticipantYeah, I’d come across the getshopped one but their stuff looks mostly unmaintained – most of their plugins haven’t been touched since 2011 so I’m not keen on using them.
May 10, 2014 at 20:08 #17484guy_fraserParticipantI have a hunch that the setup used on this support site is based on this: http://extras.envato.com/wordpress-plugin/supportte-bbpress-support-forum-for-envato-marketplace-authors/
May 10, 2014 at 20:09 #17485PedromlParticipantThat’s the plugin that uses seventhqueen, but the other seems the best choice.
May 10, 2014 at 20:13 #17486PedromlParticipantRight click here > “View source code” > ctrl+f > “vip” 🙂
May 10, 2014 at 22:14 #17492AbeKeymasterHi guys, We are using the KLEO theme with the getshopped plugin with some small CSS adjustments and added functions. Here is our full custom CSS added to the child theme:
COPY CODE.bbpress-label { color: #fff; padding: 2px 4px; border-radius: 2px; margin-right: 5px; font-size: 11px; text-transform:uppercase; } .bbpress-label.resolved { background: #7fc379; } .bbpress-label.in-progress { background: #c0bbc0; } .bbpress-label.not-resolved { background: #f9ae64; } #bbpress-forums li.bbp-forum-freshness .bbp-topic-meta, #bbpress-forums li.bbp-topic-freshness .bbp-topic-meta { display: inline; } .home #bbpress-forums { margin-bottom: 0;} .aq_widget_display_forums .bbp-forum-title {font-size: 15px;line-height: 26px;} .aq_widget_display_forums .bbp-forum-title.current {font-weight: bold;} *, *:before, *:after { -moz-box-sizing: border-box; } *, *:before, *:after { -moz-box-sizing: border-box; } #bbps-topic-status input[type="submit"] { border-radius: 3px; border-style: solid; border-width: 1px; font-size: 12px; font-weight: normal; line-height: 1.5; margin: 3px 0; min-width: 80px; padding: 5px 10px; transition: all 0.4s ease-in-out 0s; color: #444444; background-color: #F7F7F7; } .not-logged-in-notice { padding: 10px; background: #F7F7F7; } #bbpress-forums .status-closed, #bbpress-forums .status-closed a {color: #777777;} #bbpress-forums .status-closed .bbpress-label.resolved + a:before { content: "\E83B";font-family: Fontello;margin-right: 10px; } #bbp-search-form input#bbp_search { width: 80%; float:left; } .sidebar-right .inner-content {padding-left: 15px;} .bbp-attachments ol { width:100%; } .bbp-attachments li { width: auto !important; } .bbp-attachments-count { display: none !important; }
And the custom functions added to kleo-child/functions.php are
COPY CODE/** * Modify status display in single topic * -------------------------------------------------------------------------------------------*/ remove_action('bbp_template_before_single_topic', 'bbps_add_support_forum_features'); add_action('bbp_template_before_single_topic', 'aq_add_support_forum_features'); function aq_add_support_forum_features(){ //only display all this stuff if the support forum option has been selected. if (bbps_is_support_forum(bbp_get_forum_id())){ $can_edit = bbps_get_update_capabilities(); $topic_id = bbp_get_topic_id(); $status = bbps_get_topic_status($topic_id); $forum_id = bbp_get_forum_id(); $user_id = get_current_user_id(); //get out the option to tell us who is allowed to view and update the drop down list. if ( $can_edit == true ) { ?> <div id="bbps_support_forum_options"> <?php bbps_generate_status_options($topic_id,$status); ?> </div> <?php } //has the user enabled the move topic feature? if( (get_option('_bbps_enable_topic_move') == 1) && (current_user_can('administrator') || current_user_can('bbp_moderator')) ) { ?> <div id ="bbps_support_forum_move"> <form id="bbps-topic-move" name="bbps_support_topic_move" action="" method="post"> <label for="bbp_forum_id">Move topic to: </label><?php bbp_dropdown(); ?> <input type="submit" value="Move" name="bbps_topic_move_submit" class="btn btn-default" /> <input type="hidden" value="bbps_move_topic" name="bbps_action"/> <input type="hidden" value="<?php echo $topic_id ?>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?>" name="bbp_old_forum_id" /> </form> </div> <?php } } } /** * Adds Status to topic title * -------------------------------------------------------------------------------------------*/ remove_action('bbp_theme_before_topic_title', 'bbps_modify_title'); add_action('bbp_theme_before_topic_title', 'aq_modify_before_title', 10, 2); function aq_modify_before_title($title, $topic_id = 0) { $topic_id = bbp_get_topic_id( $topic_id ); $replies = bbp_get_topic_reply_count($topic_id); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); // Let's not override default closed/sticky status if(bbp_is_topic_sticky()) { //echo '<span class="topic-sticky"> [Sticky] </span>'; } // Let's not override the default statuses elseif(!in_array($status_id, $statuses)) { if($replies >= 1) { echo '<span class="bbpress-label in-progress">In Progress</span>'; } else { echo '<span class="bbpress-label not-resolved">Not Resolved</span>'; } // Default Statuses } else { if ($status_id == 1) // Not Resolved echo '<span class="bbpress-label not-resolved">Not Resolved</span>'; if ($status_id == 2) // Not Resolved echo '<span class="bbpress-label resolved">Resolved</span>'; if ($status_id == 3) { // Not Support Question (mark as resolved) add_post_meta($topic_id, '_bbps_topic_status', 2); echo '<span class="bbpress-label resolved">Resolved</span>'; } } } /** * Display Topic Status * -------------------------------------------------------------------------------------------*/ function aq_display_topic_status($topic_id = 0) { $topic_id = $topic_id ? $topic_id : bbp_get_topic_id(); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); echo '<div class="aq-topic-status">'; if(bbp_is_topic_sticky()) { echo '<span class="sticky">Sticky</span>'; } elseif(in_array($status_id, $statuses)) { if ($status_id == 1) { echo '<span class="not-resolved">Not Resolved</span>'; } if ($status_id == 2) { echo '<span class="resolved">Resolved</span>'; } if ($status_id == 3) { echo '<span class="in-progress">In Progress</span>'; } } elseif(bbp_is_topic_closed()) { echo '<span class="sticky">Sticky</span>'; } else { echo '<span class="in-progress">In Progress</span>'; } echo '</div>'; }
Hope this helps.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.May 10, 2014 at 22:41 #17494PedromlParticipantPerfect!
I favorited this topic for future use.Thanks.
May 10, 2014 at 23:53 #17496guy_fraserParticipantLooks like the plugin by imath only works with the BP bundled forums (which are now deprecated in favour of the separate bbPress forum plugin, although in a recent interview a lead dev of BP mentioned that they might revive the BP forums module *sigh*).
There will be a new release of the imath plugin soon, 2.0, which is designed purely for the bbPress forum plugin, with improved features: http://imathi.eu/2013/08/19/buddy-bbpress-support-topic-2-0-beta/ (in French but google translate does a good job).
June 13, 2014 at 17:26 #19765SplendorParticipantCOPY CODE<div id ="bbps_support_forum_move"> <form id="bbps-topic-move" name="bbps_support_topic_move" action="" method="post"> <label for="bbp_forum_id">Move topic to: </label>< ?php bbp_dropdown(); ?> <input type="submit" value="Move" name="bbps_topic_move_submit" class="btn btn-default" /> <input type="hidden" value="bbps_move_topic" name="bbps_action"/> <input type="hidden" value="<?php echo $topic_id ?/>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?/>" name="bbp_old_forum_id" /> </form> </div> < ?php } } }
Something is of here??
June 20, 2014 at 17:03 #20395triffyParticipantThanks for the code. It seems some update recently broke the code, because I get the same error as @splendor.
Would be great if you could provide a fix! 🙂
Many thanks!June 20, 2014 at 17:18 #20397triffyParticipantSeems like there is some error in the php:
instead of
COPY CODE<input type="hidden" value="<?php echo $topic_id ?/>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?/>" name="bbp_old_forum_id" />
it should say
COPY CODE<input type="hidden" value="<?php echo $topic_id ?>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?>" name="bbp_old_forum_id" /> so the correct code here might be
<div id =”bbps_support_forum_move”>
<form id=”bbps-topic-move” name=”bbps_support_topic_move” action=”” method=”post”>
<label for=”bbp_forum_id”>Move topic to: </label>< ?php bbp_dropdown(); ?>
<input type=”submit” value=”Move” name=”bbps_topic_move_submit” class=”btn btn-default” />
<input type=”hidden” value=”bbps_move_topic” name=”bbps_action”/>
<input type=”hidden” value=”<?php echo $topic_id ?>” name=”bbps_topic_id” />
<input type=”hidden” value=”<?php echo $forum_id ?>” name=”bbp_old_forum_id” />
</form>
</div>< ?php
}
}
}`but then it still drops me an error on line 147. unexpected $end.
June 23, 2014 at 19:05 #20560triffyParticipantthank you, i found the mistakes myself.
the error emerge from additional “/” and spaces.
This version works for me:COPY CODE/** * Modify status display in single topic * -------------------------------------------------------------------------------------------*/ remove_action('bbp_template_before_single_topic', 'bbps_add_support_forum_features'); add_action('bbp_template_before_single_topic', 'aq_add_support_forum_features'); function aq_add_support_forum_features(){ //only display all this stuff if the support forum option has been selected. if (bbps_is_support_forum(bbp_get_forum_id())){ $can_edit = bbps_get_update_capabilities(); $topic_id = bbp_get_topic_id(); $status = bbps_get_topic_status($topic_id); $forum_id = bbp_get_forum_id(); $user_id = get_current_user_id(); //get out the option to tell us who is allowed to view and update the drop down list. if ( $can_edit == true ) { ?> <div id="bbps_support_forum_options"> < ?php bbps_generate_status_options($topic_id,$status); ?> </div> <?php } //has the user enabled the move topic feature? if( (get_option('_bbps_enable_topic_move') == 1) && (current_user_can('administrator') || current_user_can('bbp_moderator')) ) { ?> <div id ="bbps_support_forum_move"> <form id="bbps-topic-move" name="bbps_support_topic_move" action="" method="post"> <label for="bbp_forum_id">Move topic to: </label>< ?php bbp_dropdown(); ?> <input type="submit" value="Move" name="bbps_topic_move_submit" class="btn btn-default" /> <input type="hidden" value="bbps_move_topic" name="bbps_action"/> <input type="hidden" value="<?php echo $topic_id ?>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?>" name="bbp_old_forum_id" /> </form> </div> <?php } } } /** * Adds Status to topic title * -------------------------------------------------------------------------------------------*/ remove_action('bbp_theme_before_topic_title', 'bbps_modify_title'); add_action('bbp_theme_before_topic_title', 'aq_modify_before_title', 10, 2); function aq_modify_before_title($title, $topic_id = 0) { $topic_id = bbp_get_topic_id( $topic_id ); $replies = bbp_get_topic_reply_count($topic_id); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); // Let's not override default closed/sticky status if(bbp_is_topic_sticky()) { //echo '<span class="topic-sticky"> [Sticky] '; } // Let's not override the default statuses elseif(!in_array($status_id, $statuses)) { if($replies >= 1) { echo '<span class="bbpress-label in-progress">In Progress</span>'; } else { echo '<span class="bbpress-label not-resolved">Not Resolved</span>'; } // Default Statuses } else { if ($status_id == 1) // Not Resolved echo '<span class="bbpress-label not-resolved">Not Resolved</span>'; if ($status_id == 2) // Not Resolved echo '<span class="bbpress-label resolved">Resolved</span>'; if ($status_id == 3) { // Not Support Question (mark as resolved) add_post_meta($topic_id, '_bbps_topic_status', 2); echo '<span class="bbpress-label resolved">Resolved</span>'; } } } /** * Display Topic Status * -------------------------------------------------------------------------------------------*/ function aq_display_topic_status($topic_id = 0) { $topic_id = $topic_id ? $topic_id : bbp_get_topic_id(); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); echo '<div class="aq-topic-status">'; if(bbp_is_topic_sticky()) { echo '<span class="sticky">Sticky</span>'; } elseif(in_array($status_id, $statuses)) { if ($status_id == 1) { echo '<span class="not-resolved">Not Resolved</span>'; } if ($status_id == 2) { echo '<span class="resolved">Resolved</span>'; } if ($status_id == 3) { echo '<span class="in-progress">In Progress</span>'; } } elseif(bbp_is_topic_closed()) { echo '<span class="sticky">Sticky</span>'; } else { echo '<span class="in-progress">In Progress</span>'; } echo '</div>'; }
July 16, 2014 at 00:16 #22668marceldennisxpParticipantCan anyone confirm the function codes works? I’m getting errors when adding to child theme. Thanks
July 18, 2014 at 14:35 #22935bigratsParticipanti got this error message!
need help! how to fix the code , i want this kind support label so bad!!
thanks!
July 18, 2014 at 14:37 #22936bigratsParticipantsorry the message is :
COPY CODEParse error: syntax error, unexpected '/' in /home/haochimu/public_html/midio.club/wp-content/themes/kleo-child/functions.php on line 47
July 18, 2014 at 17:48 #22952AbeKeymasterYou have copied something wrong. make sure you don’t have errors in you file. Here is the code you should use https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status/#post-17492
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 18, 2014 at 20:34 #22963bigratsParticipantjust tried the code you gave me (#post-17492), still with no luck!
i also use php online debug,error on line 35
sorry to bother you, but i just spend so much time to do this!
Attachments:
You must be logged in to view attached files.July 18, 2014 at 22:29 #22969marceldennisxpParticipantI also need this and can confirm that adding the code to function.php gives errors. I get an error on line 59. It may be easier for everyone it Abe can upload the code and add it to the function.php file so it can be replaced. Thanks
July 21, 2014 at 18:36 #23096AbeKeymasterThe editor messed up some code. See now
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 21, 2014 at 19:04 #23104marceldennisxpParticipantI just copied the code and added it to the function.php but got an error on line 25. What was changed?
July 21, 2014 at 19:34 #23115AbeKeymasterWell I don’t know how you are copying it since I have successfully copied it and had no error. I must remind you that you need basic PHP knowledge to make custom changes and edit php code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 21, 2014 at 22:30 #23132marceldennisxpParticipantI just copied and paste the code in the function.php file. Since you checked it and it works for you I will get help on this since I really don’t know PHP. Thanks for your time and confirming it works as I really want to use this great mod 🙂
August 13, 2014 at 17:52 #25611sharmstrModeratorThank you for the code. Its working great. One thing I added was a check to see if its actually a support forum before adding the status before the title. My forums are a mix of support and general topics and I needed to remove the status from all the general forums.
I put this in the “aq_modify_before_title” function
`//Let’s not override default if its not a support forum
if (!bbps_is_support_forum(bbp_get_forum_id())){
//echo ‘<span> its a support fourm </span>’;
}’Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 14, 2014 at 15:13 #25682AbeKeymasterCool. Thanks for sharing 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.August 15, 2014 at 20:56 #25755marceldennisxpParticipantSorry for hijacking this thread or to anyone else in advance if this offends you. But I been using this amazing theme and was trying to configure the forums for my support for the website I’m creating but realized that I needed 9 plugins altogether to make this thing work with some plugin not being update for sometime by developers. I been searching for a support plugin for 4 months but didn’t find anything that great on codecanyon or wordpress that fitted my needs. I came across a premium wordpress plugin that you have to only pay for once ($27) that is a support ticket & knowledge base system called sonicreply by Andrew Hunter which has the best functionalities I’ve seen for a $27 plugin. I don’t work for this company but I did create an affiliate account for this plugin because I think it’s the best support plugin I’ve used with the best metric breakdown and analytic displays. This is the first product that I’ve been affiliated with which I think can benefit many others as well as myself. There is a 12min video that explains the plugins features. I posted 2 links below:
This link is the affiliate link if you wish to purchase the plugin after seeing it in action and agreeing with me. This is totally voluntary.
http://jvz8.com/c/252459/114742
or you can go to http://www.sonicreply.com
I installed the support plugin on the Kleo theme and the plugin only needed minor css changes.
@Abe if this thread offends you or anyone else please take it down.
Thanks MarcelAugust 17, 2014 at 07:48 #25831russellkhanParticipantHi, I can’t find the getshopped plugin you are reffering to.Could you post the link? Thanks
August 17, 2014 at 11:46 #25832sharmstrModeratorhttp://wordpress.org/plugins/bbpress-vip-support-plugin/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 19, 2014 at 17:19 #26048AbeKeymasterthanks for sharing @marceldennisxp
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.March 3, 2015 at 23:07 #48634mjyParticipantHey guys… in the process of implementing this as a support function within the site I’m building.
Like @sharmstr I’m only looking for certain forums to use this styling and function.
Btw @sharmstr that mod you’ve provided… is that just placed at the top of the “aq_modify_before_title” function?All code and plugin installed but it appears to be failing to initialise correctly.
The forums settings page is throwing errors in the topic status settings such as Warning: Illegal string offset ‘res’ in /wp-content/plugins/bbpress-vip-support-plugin/includes/bbps-core-options.php on line 54
type=”checkbox” value=”1″ /> ResolvedAs these settings are not then set the forum pages are also throwing errors.
Taking a look in the database there are a couple of options that are blank. e.g. _bbps_used_status.
I’m not strong on the admin coding so it will take me some time to work out… hoping someone has already hit this issue and can fast track me a fix?March 11, 2015 at 17:03 #49694RivadeMeyParticipantHi,
I have one more problem with the plugin. I have implement the code and it is all working fine, but the only problem i have is that i only have 1 forum selected as a support forum, but the labels are showing on all the topics. Even on the topics in other forums (which are not support forums)
Is there a solution for this?
I have implemented the code of @sharmstr (thanks!)
COPY CODE//Let’s not override default if its not a support forum if (!bbps_is_support_forum(bbp_get_forum_id())){ //echo ‘<span> its a support fourm </span>'; }
but then in the latest topics overview the labels are gone, only visible in the forum itself.
For the people who are interested, this is the complete code i have used:
COPY CODE/** * Modify status display in single topic * -------------------------------------------------------------------------------------------*/ remove_action('bbp_template_before_single_topic', 'bbps_add_support_forum_features'); add_action('bbp_template_before_single_topic', 'aq_add_support_forum_features'); function aq_add_support_forum_features(){ //only display all this stuff if the support forum option has been selected. if (bbps_is_support_forum(bbp_get_forum_id())){ $can_edit = bbps_get_update_capabilities(); $topic_id = bbp_get_topic_id(); $status = bbps_get_topic_status($topic_id); $forum_id = bbp_get_forum_id(); $user_id = get_current_user_id(); //get out the option to tell us who is allowed to view and update the drop down list. if ( $can_edit == true ) { ?> <div id="bbps_support_forum_options"> <?php bbps_generate_status_options($topic_id,$status); ?> </div> <?php } //has the user enabled the move topic feature? if( (get_option('_bbps_enable_topic_move') == 1) && (current_user_can('administrator') || current_user_can('bbp_moderator')) ) { ?> <div id ="bbps_support_forum_move"> <form id="bbps-topic-move" name="bbps_support_topic_move" action="" method="post"> <label for="bbp_forum_id">Move topic to: </label><?php bbp_dropdown(); ?> <input type="submit" value="Move" name="bbps_topic_move_submit" class="btn btn-default" /> <input type="hidden" value="bbps_move_topic" name="bbps_action"/> <input type="hidden" value="<?php echo $topic_id ?>" name="bbps_topic_id" /> <input type="hidden" value="<?php echo $forum_id ?>" name="bbp_old_forum_id" /> </form> </div> <?php } } } /** * Adds Status to topic title * -------------------------------------------------------------------------------------------*/ remove_action('bbp_theme_before_topic_title', 'bbps_modify_title'); add_action('bbp_theme_before_topic_title', 'aq_modify_before_title', 10, 2); function aq_modify_before_title($title, $topic_id = 0) { $topic_id = bbp_get_topic_id( $topic_id ); $replies = bbp_get_topic_reply_count($topic_id); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); // Let's not override default closed/sticky status if(bbp_is_topic_sticky()) { //echo '<span class="topic-sticky"> [Sticky] </span>'; } //Let’s not override default if its not a support forum if (!bbps_is_support_forum(bbp_get_forum_id())){ //echo ‘<span> its a support forum </span>'; } // Let's not override the default statuses elseif(!in_array($status_id, $statuses)) { if($replies >= 1) { echo '<span class="bbpress-label in-progress">In Behandeling</span>'; } else { echo '<span class="bbpress-label not-resolved">Nog niet opgelost</span>'; } // Default Statuses } else { if ($status_id == 1) // Not Resolved echo '<span class="bbpress-label not-resolved">Nog niet opgelost</span>'; if ($status_id == 2) // Not Resolved echo '<span class="bbpress-label resolved">Opgelost</span>'; if ($status_id == 3) { // Not Support Question (mark as resolved) add_post_meta($topic_id, '_bbps_topic_status', 2); echo '<span class="bbpress-label resolved">Opgelost</span>'; } } } /** * Display Topic Status * -------------------------------------------------------------------------------------------*/ function aq_display_topic_status($topic_id = 0) { $topic_id = $topic_id ? $topic_id : bbp_get_topic_id(); $statuses = array (1,2,3); $status_id = get_post_meta( $topic_id, '_bbps_topic_status', true ); echo '<div class="aq-topic-status">'; if(bbp_is_topic_sticky()) { echo '<span class="sticky">Sticky</span>'; } elseif(in_array($status_id, $statuses)) { if ($status_id == 1) { echo '<span class="not-resolved">Nog niet Opgelost</span>'; } if ($status_id == 2) { echo '<span class="resolved">Opgelost</span>'; } if ($status_id == 3) { echo '<span class="in-progress">In Behandeling</span>'; } } elseif(bbp_is_topic_closed()) { echo '<span class="sticky">Sticky</span>'; } else { echo '<span class="in-progress">In Behandeling</span>'; } echo '</div>'; }
March 13, 2015 at 18:47 #50050AbeKeymasterI don’t know .. that could come from the plugin that adds those labels
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.May 17, 2015 at 11:00 #59175valarmuruganParticipanthi
for me every thing is working fine, but could not see the drop down which helps to move forum status. request to provide your suggestion please find the attachement
Attachments:
You must be logged in to view attached files. -
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.