pervect
Forum Replies Created
-
Forum: Plugins
In reply to: [Videopack] Moving to the new domain and KGVIDThank you @macmanx for the great Rumor control!
It’s worth to be placed as a separate post as the HTTPS issues become more and more popular! Your explanations make it clear to me what and how to do now and I’ve found plenty of the useful and important info.Forum: Plugins
In reply to: [Videopack] Moving to the new domain and KGVIDThank you @kylegilman for the fast reply. OK, now the point is clear! Please keep up the great work! Your plugin is a Must Have tool for any video related WP based site!
Forum: Plugins
In reply to: [Videopack] Moving to the new domain and KGVIDI read it here: https://semperplugins.com/wordpress-requires-sites-to-use-https. Also, now it is obvious that https is a very important SEO plus in terms of Google.
Anyway, my question is not about the site transfer to https, nor about the domain name change in the WordPress as it is meaning. I see no problem in that action.
I try to understand should I have to fix 1500 plus posts manually or that can be done in a more easy manner.
Forum: Plugins
In reply to: [Videopack] Moving to the new domain and KGVIDUPDATE: WordPress Will Require Users to Have HTTPS This Year. This means that at least one letter in the KGVID shortcode should be added: https://yoursite.com/ instead of https://yoursite.com/. So, there will be another good reason to check out this issue.
Forum: Plugins
In reply to: [Videopack] How to get the view count?It did not work:
Undefined variable: video_id
Forum: Plugins
In reply to: [Videopack] Make videos playable only for logged in membersI use the subtemplates for that. So, the single.php looks like that:
<?php get_header(); ?> //common WP Header.php call <?php if ( is_user_logged_in() ) { // Checking if the User is logged in get_template_part( 'content' ); // some subtemplate containing the_content(' '); string } else{ //if the user is NOT logged in get_template_part( 'subscribe' ); //some subtemplate containing call to register or log in } ?> <?php get_footer(); ?>// the standart WP Footer call
Anyway perhaps the
is_user_logged_in()
function is the key to solution.