Title: Minor glitches
Last modified: August 31, 2016

---

# Minor glitches

 *  Resolved [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/)
 * Hy Asgaros. Good forum plugin but i have some minor request
 * 1. [http://i.imgur.com/fISpT1A.png](http://i.imgur.com/fISpT1A.png) how to make
   to look like this ?
 * 2. shortcode for latest post ? my theme don’t work with clasic widgets in homepage
 * 3. this is my site [http://failtrafic.ro/](http://failtrafic.ro/) How to link
   autor of a forum post/reply to author page [http://failtrafic.ro/author/iuda/](http://failtrafic.ro/author/iuda/)
 * 4.Colour of admin in forum is red and the rest is grey. How to make edithors 
   colour apear in another colour ? edithors can moderate the forum ?
 * 5.Romanian translation is possible ?
 * 6. private mesage for future updates ?
 * Thank you for your work.
 * [https://wordpress.org/plugins/asgaros-forum/](https://wordpress.org/plugins/asgaros-forum/)

Viewing 11 replies - 1 through 11 (of 11 total)

 *  Plugin Author [Asgaros](https://wordpress.org/support/users/asgaros/)
 * (@asgaros)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089735)
 * Hey luda!
 * **1:**
    I will check this out.
 * **2:**
    You have to extend your themes _functions.php_ file. You can find an 
   example here: [https://wordpress.org/support/topic/recent-forum-posts-widget?replies=4](https://wordpress.org/support/topic/recent-forum-posts-widget?replies=4)
 * **3:**
    There is a hook which allows you to add your own information after the
   author name of a post. You have to extend your themes _functions.php_ file as
   well for it. Try this for example:
 *     ```
       add_action('asgarosforum_after_post_author', 'my_function', 10, 1);
   
       function my_function($author_id) {
       	$user_info = get_userdata($author_id);
       	echo '<br /><a href="http://failtrafic.ro/author/'.$user_info->user_login.'/">Profile</a>';
       }
       ```
   
 * **4:**
    What do you mean with editors? Topic/thread creators?
 * **5:**
    You can help to create a romanian translation for Asgaros Forum on this
   site: [https://translate.wordpress.org/locale/ro/default/wp-plugins/asgaros-forum](https://translate.wordpress.org/locale/ro/default/wp-plugins/asgaros-forum)
   Please contact me in the here if you want to be a Project Translation Editor (
   PTE) for Romanian.
 * **6:**
    This is definitely NOT planned because it has nothing to do with a forum
   plugin. 🙂
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089744)
 * 1. ok, withi mention to delete reply button at the top, is usless 🙂
 * 2. i will try
 * 3. works great
 * 4. at my site, edithors and administrators have role to moderate. authors, contributors
   don;t have this role.
 * 5. yes, i will try
 * 8.ok. would confirm the rule that the more it’s loaded with both a plugin will
   be weaker.
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089752)
 * 4 Problem [http://i.imgur.com/4Bbf24Q.png](http://i.imgur.com/4Bbf24Q.png) I 
   don’t want to apear “Recent forum posts”
 *  Plugin Author [Asgaros](https://wordpress.org/support/users/asgaros/)
 * (@asgaros)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089753)
 * You can set an empty title attribute:
    `[widget type="AsgarosForumRecentPosts_Widget"
   title=" "]`
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089761)
 * 4. same problem [http://i.imgur.com/zAlsr6L.png](http://i.imgur.com/zAlsr6L.png)
 *  Plugin Author [Asgaros](https://wordpress.org/support/users/asgaros/)
 * (@asgaros)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089773)
 * **4:**
    Normally moderators are highlighted with a green color and administrators
   with a red color. Moderators have no access to the forum options in the administration
   area yet. Maybe I will change this.
 * **title issue:**
    I think you have to hide it with CSS. Can you put some div 
   around the widget-call?
 * For example:
 * `<div class="asgarosforum-widget">[widget ......]</div>`
 * This would allow you to hide the title for this widget via CSS:
    `.asgarosforum-
   widget .widget-title { display: none; }`
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089775)
 * 4. this works
 *     ```
       .sidebar .wpb_wrapper .widget-title {
           display: none;
       }
       ```
   
 * I forgot to ask, , how many replys will show in this widget ?
 * Later Edit: links in widget dosen’t work. [http://failtrafic.ro/?view=thread&id=1#postid-1](http://failtrafic.ro/?view=thread&id=1#postid-1)
 * The corect link is this [http://failtrafic.ro/forum/?view=thread&id=1#postid-1](http://failtrafic.ro/forum/?view=thread&id=1#postid-1)
 * 3. problem. this author [http://failtrafic.ro/author/peter-pan/](http://failtrafic.ro/author/peter-pan/)
   with “-” in user name. the profile forum produce this link [http://failtrafic.ro/author/Peter%20Pan/](http://failtrafic.ro/author/Peter%20Pan/)
 *  Plugin Author [Asgaros](https://wordpress.org/support/users/asgaros/)
 * (@asgaros)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089785)
 * **3:**
    Maybe you can try this:
 *     ```
       add_action('asgarosforum_after_post_author', 'my_function', 10, 1);
   
       function my_function($author_id) {
       	$user_info = get_userdata($author_id);
       	echo '<br /><a href="http://failtrafic.ro/author/'.$user_info->user_nicename.'/">Profile</a>';
       }
       ```
   
 * **4:**
    Oh, i forgot this. In the widget you have to define on which page your
   forum is located. The same with the amount of replys …
 * May I ask why you cant use the normal widget on your side? The normal text widget
   is working too?
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089791)
 * 4. Yes, normal widget works well.
 *     ```
       add_shortcode( 'widget', 'my_widget_shortcode' );
       	function my_widget_shortcode( $atts ) {
   
       	// Configure defaults and extract the attributes into variables
       	extract( shortcode_atts(
       		array(
       			'type'  => '',
       			'title' => '',
       		),
       		$atts
       	));
   
       	$args = array(
       		'before_widget' => '<div class="box widget">',
       		'after_widget'  => '</div>',
       		'before_title'  => '<div class="widget-title">',
       		'after_title'   => '</div>',
       	);
   
       	ob_start();
       	the_widget( $type, $atts, $args );
       	$output = ob_get_clean();
   
       	return $output;
       }
       ```
   
 * where to edit ? this is the corect way [http://failtrafic.ro/forum/](http://failtrafic.ro/forum/)
 *  Thread Starter [Iuda](https://wordpress.org/support/users/iuda/)
 * (@iuda)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089895)
 * a solution ?
 *  Plugin Author [Asgaros](https://wordpress.org/support/users/asgaros/)
 * (@asgaros)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089899)
 * You hast have to add two additional parameters:
 * `[widget type="AsgarosForumRecentPosts_Widget" title=" " number="2" target="1281"]`
 * number: amount of replys
    target: the ID of your forum page

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Minor glitches’ is closed to new replies.

 * ![](https://ps.w.org/asgaros-forum/assets/icon-128x128.png?rev=1546717)
 * [Asgaros Forum](https://wordpress.org/plugins/asgaros-forum/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/asgaros-forum/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/asgaros-forum/)
 * [Active Topics](https://wordpress.org/support/plugin/asgaros-forum/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/asgaros-forum/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/asgaros-forum/reviews/)

 * 11 replies
 * 2 participants
 * Last reply from: [Asgaros](https://wordpress.org/support/users/asgaros/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/minor-glitches/#post-7089899)
 * Status: resolved