WPML & AnsPress on roadmap?

You can translate AnsPress using .po and .mo

Can i run anspress indepently in every individual pages of my site

Currently you can achieve this by using category. You can use AnsPress shortcode to show category specific question in pages. Read here for shortcode usages information. http://anspress.io/questions/question/dedicated-category-page/

How to change logo in Answerbox

// find this in header.php line 34 <a class="site-title navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" title="<?php bloginfo( 'name' ); ?>"> <i class="i-logo"></i> </a> // now replac it with: <a class="site-title navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" title="<?php bloginfo( 'name' ); ?>"> <img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" /> </a>

“Equation editor” | Latex – new feature

As latex is not commonly used, so we cannot add it to core. But if you want it, you can send us a customization request from link in footer. Thanks

CSS Code

User firebug in Firefox to quickly add styles. Here you go: //ask button #anspress .ap-btn-ask{ background: #333; } //List title #anspress .ap-questions-title a { color: #333; font-size: 16px; } // search from #ap-search-form .ap-form-control { height: 30px; margin: 0; vertical-align: top; } // answer count #anspress .ap-questions-count { background: none repeat scroll 0 0 rgba(0, 0, 0, 0); border: 2px solid #61c17d; color: #333; height: 50px; line-height: 110%; width: 50px; }

Inherit Styles

Generally it adapts Wp theme. as you can see this site, there are no special styles added for AnsPress, its adapting our theme. You you may need some slight adjustments sometime.