Hi,
first, thank you for a great free product. Where is it best to connect with the core team regarding some suggestions/bugs? Here?
I have some regarding UX/UI and translations as well (currently translating the Czech version, v4.0.3 beta).
Best,
Ladislav
Is there any existing hooks or do you have specific recommendations/suggestions on how to do this if we want to add some custom meta data to each question? Some of the data I may want to display as well with the question.
ALL links in reputation page (from profile) go to 404.
Example url:
/questions/shortlink/?id=361&type=post
or
/questions/shortlink/?id=10&type=comment
Thanks
I’m having problems conle translations, I wanted to complete one in Italian but every time I try to save the changes tells me a problem, using locally translate. If you use an external program changes are saved, but as soon as the load on the site under the plugin directory are completely ignored
I went to create a new question on a large data set with anspress 4. It doesn’t work and just hangs like this:
https://www.dropbox.com/s/lsor2dsvygjjomu/Screenshot%202017-01-30%2017.05.45.png?dl=0
Looking at the mysql.slow_log this seems to be the culprit. It looks like the code that is creating the question for some reason needs to look up the new wp_posts.ID and its doing it off of the post_content field and post_type which seems really inefficient.
SELECT ID FROM wp_posts WHERE post_content = ‘go rosa’ AND post_type = ‘question’ LIMIT 1
The question looks like it technically gets correctly created but the SELECT after the creation hangs and so to the end user it looks like it failed.
Hi,
I think there is a problem with the display of the image category which gets blurred.
My image is 1140px wide and 350px high (and I even completed the image definition so). The img src code is as follows:
<img class=”attachment-900×350 size-900×350“ src=”https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé.jpg“ alt=”” srcset=”https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé.jpg 1140w, https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé-300×92.jpg 300w, https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé-768×236.jpg 768w, https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé-1024×314.jpg 1024w, https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé-150×46.jpg 150w, https://allwewish.org/wp-content/uploads/2017/01/Je-voeu-Dire3f4-JPGSupé-500×154.jpg 500w“ sizes=”(max-width: 900px) 100vw, 900px“ width=”900“ height=”276“>
And I think that category from anspress is resizing it somehow from the original size to 900×300 and then display it with the correct dimensions making it blurred.
The code shown hereabove is after adapting plugin/category-for-anspress/theme/category.php
from:
<?php if( ap_category_have_image( $question_category->term_id ) ): ?>
<div class=”ap-category-feat” style=”height: 300px;”>
<?php ap_category_image( $question_category->term_id, 300 ); ?>
</div>
<?php endif; ?>
to:
<?php if( ap_category_have_image( $question_category->term_id ) ): ?>
<div class=”ap-category-feat” style=”height: 350px;”>
<?php ap_category_image( $question_category->term_id, 350 ); ?>
</div>
<?php endif; ?>
I also desactivated optimisation tool photon from jetpack to doublecheck (it is supposed to act only on posts and pages) but the results is still as hereabove… and blurred.