jaredthequad
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Lightbox] Vimeo no fullscreen optionThe page shortcode does have a fullscreen button. But now it only plays for 3 seconds and restarts.
You can see it here. https://engagingnations.org/?page_id=246
Thanks, Jared
Forum: Plugins
In reply to: [WP Video Lightbox] Vimeo no fullscreen optionYeah no problem.
I put another video up. Still nothing.
Thank you so much for working so hard on this for me.
Forum: Plugins
In reply to: [WP Video Lightbox] Vimeo no fullscreen optionWell I wouldn’t be able to tell, the slider is with the theme.
I know when I swapped the video for a Youtube video it does have a fullscreen option.
Thanks, Jared
Forum: Plugins
In reply to: [WP Video Lightbox] Vimeo no fullscreen optionYes of course. Here ya go https://engagingnations.org/ just click the play button image.
Also thank you so much for the quick reply.
Forum: Plugins
In reply to: [Social Count Plus] Show single cumulative number?Ha no problem.
You mentioned there’s a way to manually add to the total number.
Would it be done in the code like this?
echo my_custom_scp_number_format( array_sum( get_scp_all() ) + ( ‘5000’ ));
Forum: Plugins
In reply to: [Social Count Plus] Show single cumulative number?Scratch that. I figured out how to add the comma!
But I’m still having an issue adding my custom mailchimp number to my total. Can you maybe point me to an old support post or anywhere with an example?
Thanks so much Claudio!
Forum: Plugins
In reply to: [Social Count Plus] Show single cumulative number?Thanks so much for your help.
I found this on your github which is similar to what you want me to do. But I can’t seem to find where to put the “social_count_plus_number_format” filter.
How can I round numbers?
It’s possible to round numbers using the social_count_plus_number_format filter.
Example of rounding 1500 to 1.5K or 1000000 to 1M:
function my_custom_scp_number_format( $total ) {
if ( $total > 1000000 ) {
return round( $total / 1000000, 1 ) . ‘M’;
} else if ( $total > 1000 ) {
return round( $total / 1000, 1 ) . ‘K’;
}return $total;
}add_filter( ‘social_count_plus_number_format’, ‘my_custom_scp_number_format’ );
Forum: Plugins
In reply to: [Social Count Plus] Show single cumulative number?That worked perfectly! Thanks so much.
I noticed that it’s not adding any commas to the numbers. Like 15000 instead of 15,ooo. Is there a way to add this?
Also, I have a fairly large email list and since there’s no Mailchimp way to add it. Can I add the number manually any way?
I greatly appreciate your quick and helpful responses.
Forum: Plugins
In reply to: [Social Count Plus] Show single cumulative number?I’m not sure exactly what shortcode to use to sum up all accounts into one number. I tried the following.
[scp code=”comments,facebook,twitter,youtube”]
But that didn’t work. Can you tell me what I’m doing wrong?
Thanks, Jared