AnsPress 4.1.0

9.56K viewsUpdates4.1.0 latest review upgrade
0

Upgraded to 4.1.0 to see what the changes are. Looks fantastic, apart from some minor “changes” ?

  • ASK page now works as a page in it’s own right. This is great, but you lose the slug (in my case, “community”) so (example) https://www.phenomlab.com/community/ask now becomes https://www.phenomlab.com/ask. Not that big a deal, but doesn’t look great from the cosmetic perspective
  • Add-Ons seem to be broken in terms of layout – looks as though JS or CSS is not being loaded properly. I thought that this may be a caching issue, but it isn’t. Nothing logged in the developer console either. Actually, it does appear “functional”, but not really intuitive.
  • Questions now appear like “post views” – is this intentional ? It’s broken my layout slightly ?
1

Fixed lots of code on my site – Rahul is correct. I do have a custom wp-single.php file that I wrote for the theme I use, as it enables Parallax. So, I needed to make a small change

Essentially, look for a populated value – if it doesn’t exist, use the below hard coded image (just a test). If it does, then use the image specified in the post.

if (the_post_thumbnail_url(full) == NULL) {
$imageurl = “https://www.phenomlab.com/wp-content/uploads/2017/10/forensic.jpg”;
} else {
$imageurl = the_post_thumbnail_url(full);
}

That cures the missing image !

commented on answer

Nice. Featured image is on my list. I will notify you when its get added.

You are viewing 1 out of 10 answers, click here to view all answers.