When registered user answered once he/she could not answer second time it asking again please login/register to ask. Also some one comment not answer their comment also appering at the bottom of the page. Could you help me thank you

If you go to the overview page of a given tag (eg: http://localhost:8080/questions/question_tag/php) you get a Not Found page.

Hello.
Whenever I register when I click `ask` button it says please register or login. What should I do? Could you help me? Or please tell me where I have to change code.
Best Regards

Hi

Beside the incorrect number of “more” tags, the dropdown list contained too many (all) tags as wel.
I have fixed this.
Please find the modified code here:
https://www.dropbox.com/s/g1n2tnpnh4xst64/tags-for-anspress.php?dl=0
Modifications are on lines 495 -> 509

Regards,

Michiel

Hi,

If I type in the tags input field, I get a very limited place to type the tag name.
I think this is due to the following width limitation:

<input type="text" placeholder="" size="7" style="width: 3em !important;">

Is there a reason for limiting the space to 3em?

When will a proper import process be implemented to migrate from Q2A to Anspress. Last year it was said “2 days” but that turned into several months. Please, I need to migrate all of my sites to Anspress because this is the better platform available and my users have been screaming for more/better features, all of which you have

Tried logging in several times as I did before with my Google+ account, which I initially registered here, but can’t due to the API key not authorized for here

Also, where did the Twitter login go to? Facebook is blocked else I would have used that to login.

How can I hide this please see the video – http://youtu.be/4aZY5_QHk8M

Hello.
When I want to add categories widget at the top inside of wordpress widget section. It showing it without any styling. Am I have to change stylesheet manually or is there something wrong?

Hello.
I want to add sidebar manually at the right side because sidebar widget is not working. Currently I’m editing `base.php` inside of default theme.

<?php dynamic_sidebar( 'ap-top' ); ?>
<div style='width:100%;height:30px;background:#333;'>

</div>
<div id="ap-lists" class="clearfix" style='width:80%; float:left;'>
	<?php ap_questions_tab(get_permalink()); ?>
	<?php if ( $questions->have_posts() ) : ?>
		<div class="question-list">
	<?php
		
		/* Start the Loop */
		while ( $questions->have_posts() ) : $questions->the_post();
			global $post;
			include(ap_get_theme_location('content-list.php'));
		endwhile;
	?>
		</div>
	<?php 
		ap_pagination();
	?>
	<?php
		else : 
			include(ap_get_theme_location('content-none.php'));
		endif; 
	?>	
</div>

<div style='width:20%;height:100px;background:#444;float:right;'>
	`Can I add here sidebar widget ?`
	
</div>

Thank you very much.