Import tube videos, livecam feeds, picture galleries and anything else into WordPress

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • just a punk
    So fuckin' bored
    • Jun 2003
    • 32393

    #196
    Originally posted by magneto664
    yoast don't save own data in custom fields.
    Where does it save the data then?
    Obey the Cowgod

    Comment

    • magneto664
      God Bless You
      • Aug 2014
      • 1470

      #197
      Originally posted by CyberSEO
      Where does it save the data then?
      I don't know is a correct but i find in
      table wp_postmeta under a:
      meta_key
      and value:
      _yoast_wpseo_title
      _yoast_wpseo_metadesc

      I think this is same place where saved is other custom fields keys

      tnx.
      magneto664 📧 gmail.com
      Cams.Zone 💘 Best CDN for Adult Content
      My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

      Comment

      • just a punk
        So fuckin' bored
        • Jun 2003
        • 32393

        #198
        Originally posted by magneto664
        I don't know is a correct but i find in
        table wp_postmeta under a:
        meta_key
        and value:
        _yoast_wpseo_title
        _yoast_wpseo_metadesc

        I think this is same place where saved is other custom fields keys

        tnx.
        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 Cowgod

        Comment

        • magneto664
          God Bless You
          • Aug 2014
          • 1470

          #199
          Originally posted by CyberSEO
          Yes, these are the custom fields so this code should work
          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.
          tnx
          magneto664 📧 gmail.com
          Cams.Zone 💘 Best CDN for Adult Content
          My Fav: 👍 Chaturbate 👍 Stripchat 👍 AdultFriendFinder

          Comment

          • RyuLion
            • Mar 2003
            • 32367

            #200
            Originally posted by CyberSEO
            The most important thing here to know is that WordPress resizes the images, not CyberSEO. To be honest, I don't know how good WordPress does handle the gif resizing nowadays.
            You have to code it in the CSS3. Great plugin!

            Adult Biz Consultant A tech head since 1995
            Affiliate Support: Chaturbate | CCBill Live

            Comment

            • MrT31
              Confirmed User
              • Aug 2012
              • 63

              #201
              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

              Code:
              $post['post_content'] =[fluid-player video=”customfieldurlvideo or xml value <video>″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
              or

              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]
              Can I put in in custom field instead of $post['post_content']


              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
              Last edited by MrT31; 06-04-2018, 04:53 AM. Reason: code
              Try Adxtrem High PAYOUT, great ad networks
              BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
              Myfreesex.cam

              Comment

              • just a punk
                So fuckin' bored
                • Jun 2003
                • 32393

                #202
                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 Cowgod

                Comment

                • MrT31
                  Confirmed User
                  • Aug 2012
                  • 63

                  #203
                  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

                  Code:
                  $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
                  by the fluid player 's short code

                  this one
                  Code:
                  [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”
                  or this one

                  Code:
                  [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]
                  the most important is to grab the url of the video and put in those short code



                  thanks again
                  Try Adxtrem High PAYOUT, great ad networks
                  BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                  Myfreesex.cam

                  Comment

                  • MrT31
                    Confirmed User
                    • Aug 2012
                    • 63

                    #204
                    ok , I just replace

                    Code:
                    $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
                    by

                    Code:
                    $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]
                    And apparently it works
                    Try Adxtrem High PAYOUT, great ad networks
                    BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                    Myfreesex.cam

                    Comment

                    • just a punk
                      So fuckin' bored
                      • Jun 2003
                      • 32393

                      #205
                      You can also use the the Fluid Player plugin for WordPress (https://wordpress.org/plugins/fluid-player/) and use these shortcodes:

                      Simple shortcode example:
                      Code:
                      [fluid-player video="foo.mp4" vast_file="vast.xml"  vtt_file="thumbs.vtt" vtt_sprite="thumbs.jpg" layout="default"]
                      Extended shortcode example:
                      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 Cowgod

                      Comment

                      • MrT31
                        Confirmed User
                        • Aug 2012
                        • 63

                        #206
                        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
                        Try Adxtrem High PAYOUT, great ad networks
                        BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                        Myfreesex.cam

                        Comment

                        • just a punk
                          So fuckin' bored
                          • Jun 2003
                          • 32393

                          #207
                          Originally posted by MrT31
                          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" .
                          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 – CyberSEO
                          Obey the Cowgod

                          Comment

                          • MrT31
                            Confirmed User
                            • Aug 2012
                            • 63

                            #208
                            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
                            Try Adxtrem High PAYOUT, great ad networks
                            BEST CAM PROGRAM XLOVECASH - 35% lifetime payment every Monday
                            Myfreesex.cam

                            Comment

                            • just a punk
                              So fuckin' bored
                              • Jun 2003
                              • 32393

                              #209
                              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 Cowgod

                              Comment

                              • Bladewire
                                StraightBro
                                • Aug 2003
                                • 56228

                                #210
                                ↑↑↑ Excellent programmer & great tech support


                                Skype: CallTomNow

                                Comment

                                Working...