Title: ibcreative's Replies | WordPress.org

---

# ibcreative

  [  ](https://wordpress.org/support/users/ibcreative/)

 *   [Profile](https://wordpress.org/support/users/ibcreative/)
 *   [Topics Started](https://wordpress.org/support/users/ibcreative/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ibcreative/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ibcreative/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ibcreative/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ibcreative/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ibcreative/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Images - One-click Image Uploads from Unsplash, Openverse, Pixabay, Pexels, and Giphy] Can’t integrate Images](https://wordpress.org/support/topic/cant-integrate-images/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/cant-integrate-images/#post-9091214)
 * I was having trouble with the plugin too, I managed to get it to work by setting
   PHP 7.0 as the current version on my host and, of course, activating the GD extension.
 * Hope it helps someone
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Embedding YouTube videos into an event?](https://wordpress.org/support/topic/embedding-youtube-videos-into-an-event/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/embedding-youtube-videos-into-an-event/#post-3219019)
 * Thank you agelonwl, you were right about that.
 * So i got the solution i was looking for, maybe someone needs something like this
   so here´s the code (be sure to set the custom att `#_ATT{#youTube}` first ):
 *     ```
       <?php
       $youtubeurl = $event->output('#_ATT{youTube}');
       if (youtubeurl!= "0")
       {
       global $wp_embed;
       $post_embed = $wp_embed->run_shortcode('[embed width="320" height="240"]'.$youtubeurl.'[/embed]');
       echo $post_embed;
       }
       ?>
       ```
   
 * This script checks if there´s anything stored on the custom att, namely a youtube
   url in this case, and if so then proceeds to embed the video.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Embedding YouTube videos into an event?](https://wordpress.org/support/topic/embedding-youtube-videos-into-an-event/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/embedding-youtube-videos-into-an-event/#post-3219012)
 * Yeah, it´s not working for me either. So the next thing i´m trying is to set 
   a new attribute `#_ATT{#youTube}` and hopefully check if its not empty, if not
   empty, show a div and load the video in it.
 * The thing is, i haven´t figured out how to do that check yes? Any thoughts on
   that?
 * Thank You.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Video] Adding Featured Video Functionality To Custom post Types](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years ago](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/#post-2438485)
 * well i think i may have found the solution, i just appended the wmode to the 
   link in the line:
 * `echo '<iframe width="'.$width.'" height="'.$height.'" src="http://www.youtube.
   com/embed/'.$id.'?wmode=transparent" frameborder="0" allowfullscreen></iframe
   >';`
 * BUT, the trick is that for some reason i had to make the change in the built 
   in WordPress plugin editor, it didn’t work otherwise…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Video] Adding Featured Video Functionality To Custom post Types](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years ago](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/#post-2438483)
 * No problem, please let me know if you find anything else regarding this functionality.
   Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Video] Adding Featured Video Functionality To Custom post Types](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/)
 *  [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years ago](https://wordpress.org/support/topic/adding-featured-video-functionality-to-custom-post-types/#post-2438481)
 * Hi, i was working this too and found that your solution is right but incomplete.
   It only manages to show the form on the custom post admin view but it doesn’t
   actually save the data.
 * I got it working by adding: `if(isset($_GET['customposttypename'])){
    $post_id
   = $_GET['customposttypename']; } to the fv_meta_html function in the plugin file
   just below if(isset($_GET['post'])){ $post_id = $_GET['post']; } and before the
   else part.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Using WP-Realoaded from a static page](https://wordpress.org/support/topic/plugin-wp-table-reloaded-using-wp-realoaded-from-a-static-page/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-using-wp-realoaded-from-a-static-page/#post-2680293)
 * Oh yeah! That was it, you’re brilliant. Thank you very much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Issue with pagination and sorting](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/#post-2648780)
 * Well, it’s working! Thank you Tobias, great plugin, great support!
 * The problem was some code in functions.php which was supposed to ensure that 
   jquery wouldn’t load more than once. I guess somehow it was messing the DOM or
   something. The theme was actually loading jquery once, but i guess it was gone
   by the time the plugin needed it…is that possible?
 * anyway….the code is:
 *     ```
       function modify_jquery() {
       	if (!is_admin()) {
       		wp_deregister_script('jquery');
   
       	}
       }
       add_action('init', 'modify_jquery');
       ```
   
 * so, STAY AWAY!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Issue with pagination and sorting](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/#post-2648779)
 * Hmmm…i spoke too soon, that datatables error is showing only when i test the 
   site in my WAMP server. However, when i upload the theme and run it live i get:`
   $("#wp-table-reloaded-id-1-no-1").dataTable is not a function http://carneslavelenita.
   com/blog/?page_id=15 Line 391` in firebug. and i thought i was coming closer 
   to a solution lol.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Issue with pagination and sorting](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/#post-2648778)
 * Hi Tobias, i made a little progress today. I found out that even if i did have
   the `<?php wp_head(); ?>` in place, the call to the footer `<?php get_footer()?
   >` was too far up the index.php file and that made a huge difference. Now i see
   that tabletools is loading fine except i’m getting this error: **Warning: TableTools
   requires DataTables 1.5 or greater – [http://www.datatables.net/download](http://www.datatables.net/download)**.
   Any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Issue with pagination and sorting](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/#post-2648776)
 * Oh i forgot to mention that datatables have been enabled the whole time, but 
   not loading for some reason. So i hardcoded the call into the theme’s footer.
   php (`<script src="<?php bloginfo('url'); ?>/wp-content/plugins/wp-table-reloaded/
   js/jquery.datatables.min.js"></script>`) but it’s still not working. CSS however
   was loaging just fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Table Reloaded] [Plugin: WP-Table Reloaded] Issue with pagination and sorting](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-issue-with-pagination-and-sorting/#post-2648775)
 * Thank you for taking the time to reply!
 * Really? Oh man i feel dumb. But the truth is that i tried to make sure not to
   load jquery twice, and i cant seem to find why that is happening or any other
   errors like missing files (except some .gifs).
 * Could please be more specific regarding the missing files? And, is there any 
   tool you could recommend to track down the errors? I’m inspecting with firebug
   but it is not showing any of these errors.
 * Thank you so much, again.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Protect Full Posts](https://wordpress.org/support/topic/protect-full-posts/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/protect-full-posts/#post-696293)
 * Outstanding!, thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Protect Full Posts](https://wordpress.org/support/topic/protect-full-posts/)
 *  Thread Starter [ibcreative](https://wordpress.org/support/users/ibcreative/)
 * (@ibcreative)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/protect-full-posts/#post-696251)
 * Thanks moshu, that was fast!. Bad news though.

Viewing 14 replies - 1 through 14 (of 14 total)