Adam Capriola
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Hide SEO Columns+1 for this. Filter no longer works for me either since upgrading to v3.0.
Cool, I’m glad the update worked!
That’s on you to format the output when using
<?php echo get_post_meta( $post->ID, 'views', true ); ?>
. You’ll want to do something like this:<?php $views = get_post_meta( $post->ID, 'views', true ); if ( empty( $views ) ) { echo 0; } else { echo $views; } ?>
Thank you for the review! 🙂
I’m having trouble pushing a new version out, but in the
plugin.php
file search for this line:if ( empty( $views ) ) return;
and change it to:
//if ( empty( $views ) ) return;
That should be all you need!
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] adding CPT caps with 1.x.xHey Justin, that latest branch solved this issue for me. Thanks for the great plugin!
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] & stripped from post titleAwesome! Thanks Joe. 🙂
Forum: Plugins
In reply to: [Perfect Images] Wrong directory structure being checked for retina filesTo follow up, this is 100% related to the https change.
WordPress 4.2 will insert images into content with https under the circumstances detailed above, which causes the invalid directory. I tried going into the HTML post editor and switching my image URL to http — and the retina version is now showing. If I change the location back to https and the image loses the retina treatment.
So some kind of change needs to be made in regards to how the plugin handles https images.
Forum: Plugins
In reply to: [WordPress Stats View Counter] Help With CodeYou can try putting this above comments_template:
<?php get_post_meta( get_the_ID(), 'views', true ); ?>
I don’t know where you want it positioned though. You’ll have to move it around until you get it where you want it.
Forum: Plugins
In reply to: [WordPress Stats View Counter] Help With CodeIf you don’t much very much about html or coding, you should probably find a developer to add the code for you. Your theme’s files likely need to be edited.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Best spot to filter tweetsI ended up getting encoded characters. Oh well! It was worth a try. Here’s the filter in case anyone else wants to mess with this:
/** * Texturize WP to Twitter tweets * */ add_filter( 'wpt_custom_truncate', 'ac_wpt_custom_truncate', 10, 4 ); function ac_wpt_custom_truncate( $post_tweet, $tweet, $post_ID, $retweet ) { return wptexturize( $post_tweet ); }
Forum: Plugins
In reply to: [WP-PostRatings] Defining RATINGS_IMG_EXTThat works. Thanks Lester!
Forum: Plugins
In reply to: [WordPress Stats View Counter] A lot of wp_options entries>Would it be difficult to integrate this and make it run scheduled?
Well, from the plugin description: “Delete Expired Transients schedules a daily task to delete any expired transients from the options table.”
So I guess it can be set up to remove them automatically. I won’t be integrating it into this plugin though.
Forum: Plugins
In reply to: [WordPress Stats View Counter] A lot of wp_options entriesEvery post should have a corresponding transient value (stored in _transient_view_count_post_id). That’s to be expected. This is how the plugin tells not to update the view count immediately on every page load (to limit requests to the WordPress Stats API).
WordPress doesn’t remove expired transients for whatever reason. You could google “wordpress delete expired transients” and look into options for removing them if you want them gone.
Instead of using transients, the plugin could be coded to store a value in the post meta that tells not to update the view count and then the value could get removed via wp_schedule_event. I’m not sure how the performance would be with that approach. Could be better or worse.
You probably need
global $post;
stated in the function beforehand.get_post_meta( $post->ID, 'views', true );
would be used in a theme .php file.[view-count]
could be used in a post/page or a theme file filter function.