bwade231
Forum Replies Created
-
I am as well having the same issue. Since the WP 3.4 update, shortcodes no longer work. Please help.
I have just had the same issue yesterday and found the solution today. http://rogerlear.co.uk/?page_id=249
Roger fixed this issue. what I did to implement his code in mine is simply look at the source code.
Add this to your styles:
.videoWrapper { position: relative; padding-bottom: 56.25%; /* video dimensions - width/height for 16:9 videos */ /* use 75% for 4:3 */ padding-top: 0px; height: 0; overflow: hidden; } video { position: absolute !important; top: 0; left: 0; width: 100% !important; height: 100% !important; } .videoWrapper .mediaplayer { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; } .videoWrapper object, .videoWrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100% !important; } .mediaplayer .vjs-controls { } .vjs-spinner { display: none !important; } .video-wrap600 { width: 600px; max-width: 100%; } .video-wrap480 { width: 480px; max-width: 100%; }Then add this inside your template (i.e. home page template):
<div class="videoWrapper"> <div id="mediaplayer"><?php echo jwplayer_tag_callback("[jwplayer config=\"Champion\" mediaid=\"3072\"]"); ?></div></div> <script type="text/javascript"> var options = { modes: [ { type: 'html5' }, { type: 'flash', src: '/jwplayer/player.swf' } ], levels: [ { file: 'http://rogerlear.co.uk/bbbclip-BL-480x270.mp4' }, { file: 'http://rogerlear.co.uk/bbbclip-BL-480x270.webm' } ], image: 'http://rogerlear.co.uk/bbbclip-BL-480x270.jpg', height: '100%', width: '100%' }; jwplayer("mediaplayer").setup(options); </script>That should get you there. Simply replace the files with your files and the image with your image on your server. You should be able to just add this code directly into your theme and it will work.
Note: This code is particular to adding into a page template within your theme. I am working trying to make the videos I add to posts do the same. I am not to confident with how to make the player 100% using this plugin. I will keep you posted if I find anything else out.
Forum: Plugins
In reply to: [Camera slideshow] [Plugin: Camera slideshow] js conflictI am having a similar issue. I have followed both post and get the same result. When I look at the compiled code it seems to be pulling the slider in but there are no slides displaying. Any help is appreciated.
Nevermind I found it. It is under the “Ratings” tab in the WordPress menu. Go to Pages under the tab and deselect the “pages” option.
What kind of development would this take and what kind of rate?
Where does this display at? in the back-end? Is there a way to attach it to profile in the fron-tend via custom link?
I do have another question for you. Are there any hooks or shortcodes that I can display just that user’s information on a user accounts page. Basically, I would need a page for the user to view all of their posts that they have entered. Is there a way to do that?
Good lord… I am sorry to ask such a stupid question especially when you have all details lined out so simply in the installation instructions. Thanks for the help!
It appears that it is only displaying 5 form fields in the Directory view. Can we display more or control which fields are shown?
Forum: Fixing WordPress
In reply to: Website Log in and WP Log inOk, after some research I think I found what I was looking for. It is called “Theme My Login Plugin” located here.
http://www.jfarthing.com/wordpress-plugins/theme-my-login-plugin
Forum: Fixing WordPress
In reply to: Website Log in and WP Log inI really appreciate all the help. I am going to look at these plugins and see if they help. Thanks Again!