I currently charge as cheap as 25$ / hour. Anything you want with AnsPress and WordPress, I can do. Email me: [email protected]
Please use WP Force SSL plugin.
You need to upload the image again, so they get https://… address
I don’t share my site because is a porn site lol But I made a lot of changes: I made a custom form to send a question with image/video. You can upload a picture from your computer o from an url. The form download the image and attach it to the question as a featured image. All is validated with jQuery. The main page show only the images with a ribbon that says if is solved. The questions page shows the featured image or iframe video of the supported sites. The user pages & notification dropdown shows the images of the questions. Users page are “blend” with userpro In the main page the user can filter the questions by solved, unsolved, images or videos The mails sending to the users with the plugin anspress mail, are send in html format with image. Add some divs in question page to insert ads I have a widget that show unsolved questions in images. I have my own stats widget with charts Made my own user menu to insert in the main menu A LOT of CSS Change the theme search.php to show questions and answers in the search. If the result is answers, get the featured image from the question, so all results have an image. Change the answer.php so now is more friendly with structured data of Google. Created a bar with next and prev links, asker user, avatar, date, suscribe option, and share buttons. And more and more things… . […]
Nice i love your site & im thinking about joining You even given me ideas about site designs, Im not really going to promote or share my site until the @mentioning function is released & stats widget is fixed
Using it with Relevanssi. With few custom snippets, it works marvellous! Can’t wish for more! (example)
This feature development is in pending status, we will resume soon.
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