EmuZone
Forum Replies Created
-
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!Using dashboard css function which works better!
On my mobile device the dashboard the adminmenu navigation is falling behind the andmin bar, Mobile Only!
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!Hiding admin menu item’s was the problem, Thanks alot!
How could I add my admin.css stylesheet to MP6 and have MP6 to place the stylesheet link it in admin area?
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationWhat the feed exactly, how would I go about to accomplish this.
Like a video posts plugin of sum kind and integrating more Video Services.If you like to give it a shot and help me, with more if or join my website or leave me a email! This is very cleaver stuff!
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!Theirs allot of problems with MP6 menu on my site, I’ll leave MP6 enabled for a day or two.
Add new, and account menu falls behind admin bar. Theirs also a few more minor problems.
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!London, United Kingdom – England.
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!I know I’ve removed the .css so not to disrupt any of my user so leave me a best time for you to check the files (eg) 7pm to 8pm daily or something!
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Problem with the thumbnails, and videoTo answer king master first question, one of these plugins might help, there all great:
Video Thumbnails: This is by far the best when it comes to this plugin.
Automatically retrieve video thumbnails for your posts and display them in your theme. Currently supports YouTube, Vimeo, Facebook, Blip.tv, Justin.tv, Dailymotion, Metacafe, Wistia, Youku, Funny or Die, and MPORA.Video Embed & Thumbnail Generator: Generates thumbnails, HTML5-compliant videos, and embed codes for locally hosted videos. Requires FFMPEG for thumbnails and encodes.
Auto Post Thumbnail: Automatically generate the Post Thumbnail (Featured Thumbnail) from the first image in post (or any custom post type) only if Post Thumbnail is not set manually.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationCould this Plugin be edited to import post from other sites like, Google videos,Yahoo videos, Bing videos, Vevo, Vimeo, Dailymotion, and basically any other popular video website, or even any other websites?
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationThanks for the help, good luck with this Pugin it’s one of the best WordPress has to offer!
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!Till I’ve Emailed Your Login Details!
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!Here the link to my website https://www.codecentral.org
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationAdd Of_Get Options Framework Function to any WordPress Theme
Place this code into your themes functions.php.
/*———————————————————————————–*/
/* Framework
/*———————————————————————————–*/if ( !function_exists( ‘of_get_option’ ) ) { function of_get_option($name, $default = false) { $optionsframework_settings = get_option(‘optionsframework’); // Gets the Unique Option ID $option_name = $optionsframework_settings['id']; if ( get_option($option_name) ) { $options = get_option($option_name); } if ( isset($options[$name]) ) { return $options[$name]; } else { return $default; } } }
Place the code below into your themes single.php.
Replace the ID’s With the correct Meta ID or Custom Field or (ect).
Place the code where you would like your embedded content to appear.Example: 1
<?php $disable = of_get_option( ‘disable_features’ ); $video_url = get_post_meta(get_the_ID(), ‘sf_video_url’, true); $embeded_code = get_post_meta(get_the_ID(), ‘sf_embed_code’, true); ?>
Example: 2
Automatic YouTube YouTube Video Posts
<?php $disable = of_get_option( 'disable_features' ); $video_url = get_post_meta($post->ID,'_tern_wp_youtube_video',true); $embeded_code = get_post_meta($post->ID,'_tern_wp_youtube_video',true); ?><?php if($video_url !='' || $embeded_code != '') { ?><?php tern_wp_youtube_video(); ?><?php } ?>
Forum: Plugins
In reply to: [MP6] Admin bar menu items pushed behind admin bar background!jQuery.fn.jquery;
“1.9.1”Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationYou don’t understand either, Automatic YouTube Video uses its own meta and can’t be added to detube default in the way you have stated. All you can do is edit your current meta call your theme uses to grab the Automatic YouTube Video and render it where ever you place it.
This is my meta call which I edited to call Automatic YouTube Video meta and render the video where I placed this code.
<?php $disable = of_get_option( 'disable_features' ); $video_url = get_post_meta($post->ID,'_tern_wp_youtube_video',true); $embeded_code = get_post_meta($post->ID,'_tern_wp_youtube_video',true); ?><?php if($video_url !='' || $embeded_code != '') { ?><?php tern_wp_youtube_video(); ?><?php } ?>
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationSimple
See this code it will be similar to your meta call fuction found in single.php or where ever your regular embeds and automatic youtube video embeds appear. Edit it your own call query accordingly and change the call ID to _tern_wp_youtube_video’,true. Your meta query requires a disable embed feature for disabling embeds. Create new call quire for the new querie _tern_wp_youtube_video’,true
<?php $disable = of_get_option( 'disable_features' ); $video_url = get_post_meta($post->ID,'_tern_wp_youtube_video',true); $embeded_code = get_post_meta($post->ID,'_tern_wp_youtube_video',true); ?><?php if($video_url !='' || $embeded_code != '') { ?><?php tern_wp_youtube_video(); ?><?php } ?>