Title: awpu's Replies | WordPress.org

---

# awpu

  [  ](https://wordpress.org/support/users/awpu/)

 *   [Profile](https://wordpress.org/support/users/awpu/)
 *   [Topics Started](https://wordpress.org/support/users/awpu/topics/)
 *   [Replies Created](https://wordpress.org/support/users/awpu/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/awpu/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/awpu/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/awpu/engagements/)
 *   [Favorites](https://wordpress.org/support/users/awpu/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/awpu/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/awpu/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Views for Jetpack] REQUEST: Unique Post Views](https://wordpress.org/support/topic/request-unique-post-views/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/request-unique-post-views/#post-14229453)
 * Thank you for the response. Are non-unique visitors per page available by any
   chance?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Views for Jetpack] REQUEST: Unique Post Views](https://wordpress.org/support/topic/request-unique-post-views/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/request-unique-post-views/#post-14225276)
 * Follow up: I was reviewing Jetpack Statistics further and it seems what I’m actually
   requesting is “Visitors” who viewed the page. Not sure if this is available per
   post, but if it is I’d greatly appreciate having it available as a shortcode.
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OG — Better Share on Social Media] ‘og_og_image_value’ filter does not set og:image:secureurl](https://wordpress.org/support/topic/og_og_image_value-filter-does-not-set-ogimagesecureurl/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/og_og_image_value-filter-does-not-set-ogimagesecureurl/#post-12978075)
 * Thank you, that’s what I needed :).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OG — Better Share on Social Media] How to add image to each item?](https://wordpress.org/support/topic/how-to-add-image-to-each-item/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/how-to-add-image-to-each-item/#post-12635849)
 * Hi,
 * I was able to achieve what I needed by adding the following to my functions.php
   file:
 *     ```
       // Add enclosure tag to rss feed items
       add_action( 'rss2_item', 'rss_feed_add_featured_image_enclosure_to_item' );
       function rss_feed_add_featured_image_enclosure_to_item()
       {
       	global $post;
       	if ( function_exists( 'has_post_thumbnail' ) && has_post_thumbnail( $post->ID ) ) {
       		$attachment_id = get_post_thumbnail_id($post->ID);
       		$featured_image = wp_get_attachment_image_src( $attachment_id, 'post-thumbnail' );
       		$url = $featured_image[0];
       		$length = filesize(get_attached_file($attachment_id));
       		$type = get_post_mime_type($attachment_id);
       		echo '<enclosure url="' . $url . '" length="' . $length . '" type="' . $type . '" />';
       	}
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Links in fields](https://wordpress.org/support/topic/links-in-fields/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/links-in-fields/#post-12514127)
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The SEO Framework – Fast, Automated, Effortless.] Missing Sitemap.xml](https://wordpress.org/support/topic/missing-sitemap-xml/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/missing-sitemap-xml/#post-11650947)
 * Hmmm, it seems I can reach the sitemap if I add a trailing slash, i.e. /sitemap.
   xml/, so likely a server configuration issue. I’ll check with my host, unless
   you have any other ideas?
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] How to save Pods Avatar on Front End Profile](https://wordpress.org/support/topic/how-to-save-pods-avatar-on-front-end-profile/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/how-to-save-pods-avatar-on-front-end-profile/#post-11092829)
 * OK, figured this out if someone else needs it:
 *     ```
       if (key($_POST['local-avatar'])) {
           $pod = pods('user');
           $pod->save('local-avatar', key($_POST['local-avatar']), $current_user->ID);
       }
       ```
   
    -  This reply was modified 7 years, 7 months ago by [awpu](https://wordpress.org/support/users/awpu/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP SmartCrop] Possible to set specific aspect ratio](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/#post-11050726)
 * Thank you. Also FYI, I see this php warning:
 * Illegal offset type in isset or empty.
    wp-content/plugins/wp-smart crop/wp-smartcrop.
   php:460
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP SmartCrop] Possible to set specific aspect ratio](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/#post-11049275)
 * [@jdembowski](https://wordpress.org/support/users/jdembowski/) Thank you. I should
   be more careful.
 * [@gschoppe](https://wordpress.org/support/users/gschoppe/) Can you confirm if
   you go my email(s)?
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP SmartCrop] Possible to set specific aspect ratio](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/possible-to-set-specific-aspect-ratio/#post-11040513)
 * Thank you, though not getting anticipated results. I now have a lot of blank 
   space under my featured images. It’s a grid layout, with feature image above,
   and title below the image.
 * I was hoping to simply end up with the largest 2:1 image possible, already autosmart-
   cropped, therefore making the blank space unnecessary.
 * Should I be adding another css rule with .wpsmartcrop-image?
 * Thanks.
 * P.S. I am using Jetpack Photon, so I had to turn off the generate thumbnail option.
    -  This reply was modified 7 years, 7 months ago by [awpu](https://wordpress.org/support/users/awpu/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WPSSO Core - Complete Schema Markup and Meta Tags] Pricey Bait and Switch](https://wordpress.org/support/topic/pricey-bait-and-switch/)
 *  [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/pricey-bait-and-switch/#post-10981181)
 * OK, thank you for the clarification. If he requested the refund, then it’s not
   an issue.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WPSSO Core - Complete Schema Markup and Meta Tags] Pricey Bait and Switch](https://wordpress.org/support/topic/pricey-bait-and-switch/)
 *  [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/pricey-bait-and-switch/#post-10981117)
 * Wow, just wow. I was reading the reviews to compare SEO options, and am absolutely
   shocked by what I read here.
 * So, you went out of your way to hurt someone’s working site out of spite? They
   didn’t ask for a refund, but you decided to go ahead and cancel their already
   implemented purchase because you didn’t like their review? It would be totally
   foolish to risk doing business with you.
    -  This reply was modified 7 years, 8 months ago by [awpu](https://wordpress.org/support/users/awpu/).
    -  This reply was modified 7 years, 8 months ago by [awpu](https://wordpress.org/support/users/awpu/).
    -  This reply was modified 7 years, 8 months ago by [awpu](https://wordpress.org/support/users/awpu/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The SEO Framework – Fast, Automated, Effortless.] Article Extension Default Value](https://wordpress.org/support/topic/article-extension-default-value/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/article-extension-default-value/#post-10943160)
 * Great, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The SEO Framework – Fast, Automated, Effortless.] Article Extension Default Value](https://wordpress.org/support/topic/article-extension-default-value/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/article-extension-default-value/#post-10943012)
 * I tried this filter, but it’s not re-ordering?
 *     ```
       add_filter( 'the_seo_framework_articles_post_type_support', function( array $types = [] ) {
   
       	// Reorders "post" default selection. The first is auto-selected.
       	$types['post'] = [ 'BlogPosting', 'Article', 'NewsArticle' ];
   
       	return $types;
       } );
       ```
   
    -  This reply was modified 7 years, 8 months ago by [awpu](https://wordpress.org/support/users/awpu/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebberZone Top 10 — Popular Posts] How to use tptn_post_title](https://wordpress.org/support/topic/how-to-use-tptn_post_title/)
 *  Thread Starter [awpu](https://wordpress.org/support/users/awpu/)
 * (@awpu)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/how-to-use-tptn_post_title/#post-10801221)
 * Thank you, this worked:
 * function replace_hot_list_title_with_teaser($title, $result) {
    return get_post_meta(
   $result->ID, ‘teaser_title’, TRUE); } add_filter(‘tptn_post_title’, ‘replace_hot_list_title_with_teaser’,
   10, 2);

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/awpu/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/awpu/replies/page/2/?output_format=md)