Import tube videos, livecam feeds, picture galleries and anything else into WordPress
Collapse
X
-
-
magneto664 📧 gmail.com
Cams.Zone 💘 Best CDN for Adult Content
My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinderComment
-
Yes, these are the custom fields so this code should work:
Code:$post['custom_fields']['_yoast_wpseo_title'] = 'blah blah blah'; $post['custom_fields']['_yoast_wpseo_metadesc'] = 'blah blah blah';
Obey the CowgodComment
-
thanks, it was weird because it is not visible in custom fields - apparently yoast blocks the display of these fields natively in wordpres and displays them in its options.
Please - answer my questions on the email and on your forum. I will be grateful for the tips to solve the problems.
tnxmagneto664 📧 gmail.com
Cams.Zone 💘 Best CDN for Adult Content
My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinderComment
-
-
Hello
Two questions please .
I use the the preset Smart Script tube with kvs pro . Work like a charm but I want to try
with short chode of fluid player , the basic and extended .
1/ can I do
orCode:$post['post_content'] =[fluid-player video=”customfieldurlvideo or xml value <video>″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
Can I put in in custom field instead of $post['post_content']Code:$post['post_content'] = [fluid-player-extended vast_file="wanttoberichxml" layout="default" auto-play="autoPlay" logo="/mygreatlogopng" logo-position="top right" logo-opacity=".8" ad-text="adText" ad-cta-text="adCTAText" html-on-pause-block-width="300" html-on-pause-block-height="300" responsive="true"] [fluid-player-multi-res-video] [ {"label": "720", "url": "customfieldurlvideo or xml value <video>"}, {"label": "480", "url": "customfieldurlvideo or xml value <video>"} ] [/fluid-player-multi-res-video] [fluid-player-html-block] <div> <img src="/pubbannerpng" /> </div> [/fluid-player-html-block] [/fluid-player-extended]
2/
Is it possible to grab some info in a XML e.g "paysitetitle" to put it in wordpress custom taxonomy "studio" by e.g
or in custom taxonomy of a custom post type please ?
thanks a lot
Comment
-
I can't answer, because din't the the working actual "fluid player". Please post the real life example here. Also, does your WP theme supports it or you have some plugin installed, or all the code must be inserted into the post body by CyberSEO?Obey the CowgodComment
-
I Use fluidplayer as a plugin
i cannot put url , put it can be found in plugin category in wordpress
Some on my wordpress theme need to grab the player in a custom field (e.g video_code)
and other in the php content as usual.
by example
with a normal smarttubescript xml format
with the preset Smart Script tube with kvs pro
Code:screen_url->screen_url screen->screen clip_url->clip_url flv->flv mp4->mp4 duration->duration paysite->paysite_title
Code:if (isset($post['custom_fields']['mp4']) && strlen($post['custom_fields']['mp4'])) { $post['custom_fields']['flv'] = $post['custom_fields']['mp4']; unset($post['custom_fields']['mp4']); } $post['guid'] = $post['custom_fields']['clip_url'] . $post['custom_fields']['flv']; if (!cseo_post_exists($post)) { $post['custom_fields']['duration'] = date('i:s', $post['custom_fields']['duration']); $screen = $post['custom_fields']['screen']; if (is_array($screen)) { $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen[rand(0, count($screen) - 1)]; } else { $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen; } cseo_must_be_binary($post['guid']); cseo_must_be_binary($post['custom_fields']['thumb']); $post['post_excerpt'] = trim($post['post_excerpt']); $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']'; unset($post['custom_fields']['screen_url']); unset($post['custom_fields']['screen']); unset($post['custom_fields']['clip_url']); unset($post['custom_fields']['flv']); } else { $post = false; }
I would to replace
by the fluid player 's short codeCode:$post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
this one
or this oneCode:[fluid-player video=”[U]url of the video grabbed in the xml[/U] ″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
the most important is to grab the url of the video and put in those short codeCode:[fluid-player-extended vast_file="wanttoberichxml" layout="default" auto-play="autoPlay" logo="/mygreatlogopng" logo-position="top right" logo-opacity=".8" ad-text="adText" ad-cta-text="adCTAText" html-on-pause-block-width="300" html-on-pause-block-height="300" responsive="true"] [fluid-player-multi-res-video] [ {"label": "720", "url": "[U]url of the video grabbed in the xml [/U]"}, {"label": "480", "url": "[U]url of the video grabbed in the xml[/U] "} ] [/fluid-player-multi-res-video] [fluid-player-html-block] <div> <img src="/pubbannerpng" /> </div> [/fluid-player-html-block] [/fluid-player-extended]
thanks again
Comment
-
ok , I just replace
byCode:$post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
And apparently it worksCode:$post['post_content'] or $post['custom_fields']['mycustomfield']= [fluid-player-extended vast_file="wanttoberichxml" layout="default" auto-play="autoPlay" logo="/mygreatlogopng" logo-position="top right" logo-opacity=".8" ad-text="adText" ad-cta-text="adCTAText" html-on-pause-block-width="300" html-on-pause-block-height="300" responsive="true"] [fluid-player-multi-res-video] [ {"label": "720", "url": ' . $post['guid'] . '}, {"label": "480", "url": ' . $post['guid'] . '} ] [/fluid-player-multi-res-video] [fluid-player-html-block] <div> <img src="/pubbannerpng" /> </div> [/fluid-player-html-block] [/fluid-player-extended]
Comment
-
You can also use the the Fluid Player plugin for WordPress (https://wordpress.org/plugins/fluid-player/) and use these shortcodes:
Simple shortcode example:
Extended shortcode example:Code:[fluid-player video="foo.mp4" vast_file="vast.xml" vtt_file="thumbs.vtt" vtt_sprite="thumbs.jpg" layout="default"]
Code:[fluid-player-extended vast_file="vast.xml" layout="default" auto-play="autoPlay" allow-download="true" playback-speed-control="true" logo="https://www.fluidplayer.com/images/yourlogo.png" logo-position="top right" logo-opacity=".8" logo-hyperlink="https://www.fluidplayer.com/" ad-text="adText" ad-cta-text="adCTAText" html-on-pause-block-width="100" html-on-pause-block-height="100" responsive="true"] [fluid-player-multi-res-video] [ {"label": "720", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_720.mp4"}, {"label": "480", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_480.mp4"} ] [/fluid-player-multi-res-video] [fluid-player-html-block] <div> <img src="https://www.fluidplayer.com/images/yourbanner.png" /> </div> [/fluid-player-html-block] [/fluid-player-extended]Obey the CowgodComment
-
yes , that' s what i've done.
Download and install the fluid plugin
and copy/paste the code like i've post below.
I can grab the video url and put in the short code with ' . $post['guid'] . ' and it works
by the way do you know if it's possible to grab a field of an smart tube xml line to put in in custom post field. by example <performer></performer> to put it in my custom post field that i've created "actresses" .
thanks again
Comment
-
Sure.
1) Enter the feed settings page.
2) Find the "Custom fields" box and put there the following line:
performer->actresses
3) Save the settings
Find more information about this feature here: Content Syndicator – CyberSEOObey the CowgodComment
-
thanks
In fact I wanted to say custom taxonomy not custom field sorry
.
I created in my wordpress theme function.php a custom taxonomy "actresses" and "studio".
And I would like to grab to the xml the <performer></performer> and <website></website> to my custom taxonomy actresses and studio
if it's possible .
thanks again
Comment
-
Unfortunately custom taxonomies are not supported in the current version. But I'm going to implement them in one of the next updates.Obey the CowgodComment


Comment