Is there please some function for limit anonymous questions per day?
for example: you can ask from Monday to Friday, only 10 questions a day?
Thanks for your time
The anspress.io homepage says “download latest” and “Version 4.1.5, Updated 3 days ago.” but when you click the download button it actually downloads the WP.org version that is currently still at 4.1.4
Just want to note this inconsistency.
- Users page gives 404 error. Of course there is a page set with the shortcode already. see here https://thetheology.org/users
- Breadcrumbs are broken, see here https://thetheology.org/forums/salvation
- Category title does not show. Instead it shows the name of the base page. see here https://thetheology.org/forums/salvation
- Multiple tags or categories do not show well. They are jumbled up. See multiple categories here https://thetheology.org/forum/god-doesnt-get-what-he-wants-from-his-creation
- need to know how to remove icons, they are pointless for certain sites
How to increase length of search bar in mobile version?
As the search bar is half hidden in mobile version of my site ? Please help me to make it in full widths and ask button under search bar same as anspress support
https://forumbap.com/uploads/default/original/1X/5daef3e18fc0414661f737cc1817360b7c7bd9ff.png
Not sure what caused it, but all the icons in Anspress on my website are gone. Now all I get are tiny boxes.
https://www.dropbox.com/s/yqd4xy6nk0k0ydj/Screenshot%202017-12-10%2013.59.47.png?dl=0
I would upload the image, but every time I do that, then click on submit, nothing happens, just a spinning thingie on the button.
if a user posts his query? does it notify all the registered users through email? i tried but only admin is notified how can i enable notify all? any plugin or any tweak?
thanks in advance..
Hi Rahul,
I have been testing a new version 4.1.5 and it feels like this plugin is premium quality! Thanks for your work and time.
Issue: If a non existing (new) TAG is added all the existing tags will be added automatically (but it does not show on the front end), the error “Maximum values allowed in field Tags is 5” is displayed. I have tested this on my site and the demo site.
Please let me know than you push a fix.
Best regards
Hello @Rahul,
I download new version 4.1.5 from https://github.com/anspress/anspress. here are two error report:
1# It will show error at backend, please check the screenshot:
http://prntscr.com/hllf11
2#I can not activate the buddypress add-on, there is no response after push “Enable add on”
Thanks.
Alex
@Rahul,
This line is hardcoded in answers.php
<?php echo _n( ‘Answer’, ‘Answers’, $count, ‘anspress-question-answer’ ); ?>
This prevents it from being translated, so for now I’ve hardcoded it (v 4.1.5)
Thanks
Hi all!
By default, “question” and “answer” post types are excluded from search (set to “true” in includes/post-types.php) and I’m trying to override the exclude_from_search argument. From what I understood, I just need to register again the post type in my functions.php and change the argument to what I want. So I tried this but it doesn’t seem to work:
function update_question_init() {
$args = array(
‘exclude_from_search’ => false,
);register_post_type( ‘question’, $args );
}add_action( ‘init’, ‘update_question_init’ );
I also tried to delay the init by using add_action( ‘init’, ‘update_question_init’, 1000 ); but no luck either…
Any idea on what I’m doing wrong?