Swiftype looks interesting (I have been looking for the site like this). Will check ad let you know.
add this to styles.css: .ap-user-cover{ display:none; }
I did some research and was able to fix it I believe… It removes the errror and it is not by turning off one of the E-STRICT items in your php… From what I read it has to do with new PHP rules needing to add a new std class to instantiate an object… so it throws the warning… on the new PHP… old PHP you could code that way… so here is the fix that worked for me… Goto that line of code on 230 and replace it with this adding this code here: $wp_query->queried_object = new stdClass(); above line 230… which is this code: $wp_query->queried_object->post_title = ap_page_title(); * Remove some unwanted things from wp_head */ public function remove_head_items($WP) { global $wp_query; if ( is_anspress() ) { remove_action( 'wp_head', 'rsd_link' ); remove_action( 'wp_head', 'wlwmanifest_link' ); remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); remove_action( 'wp_head', 'rel_canonical' ); remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 ); remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 ); $wp_query->queried_object = new stdClass(); $wp_query->queried_object->post_title = ap_page_title(); } } It worked for me… Hope it helps
Try this: https://anspress.io/questions/question/change-default-cover-photos/
comments not work with the7 theme and I see this log: PHP Fatal error: Call to undefined function presscore_get_button_html() in /home/shivahos/domains/shivahost.net/public_html/wp-content/themes/dt-the7/functions.php on line 1141
A blank page is most of the times some php fatal error. I would take a wild guess that you have “out of memory” error. ENABLE WordPress debug and check.
Did you used [anspress] shortcode inside answer? Have you done any customization or overriding?
good job guys
Its not required to subscribe by default now. If any activity is made on question, question author will get notification for all. hence its not required to subscribe by default.
This will be fixed in upcoming release.