Kristian Matthews
Forum Replies Created
-
+1 I’m seeing this same issue.
Forum: Plugins
In reply to: YouTube Direct PluginThat is correct. Unfortunately if you’re looking for something for other people to upload to your YouTube channel I was unable to find anything at the time of creating this plugin.
Forum: Plugins
In reply to: YouTube Direct PluginHi Lucas,
Unfortunately I no longer maintain this plugin, but you should ensure you have YouTube Direct setup correctly before using this plugin.
Forum: Plugins
In reply to: Dungeons & Dragons PluginOr would this be something more easily achieved through a different method, if so please let me know so that I can begin developing.
If it would be easier to create such a system from scratch I could try that too.
Forum: Plugins
In reply to: YouTube Direct PluginI’m afraid I can’t help with that greatly, but if you let me know what part you’re stuck on I may be able to point you in the general direction, but the YouTube Direct forums may be a better place to ask.
Forum: Plugins
In reply to: YouTube Direct PluginWhen you say installing YouTube Direct, do you mean my plugin or the actual YouTube Direct?
Forum: Plugins
In reply to: YouTube Direct PluginForum: Plugins
In reply to: YouTube Direct PluginForum: Plugins
In reply to: YouTube Direct PluginI’ll upload it within the next few days.
You should already have a YouTube Direct backend set up in order to use this plugin
It does need refining, but currently works fine for me, so you’ll have to provide feedback as necessary.
Forum: Plugins
In reply to: If add_menu_pageI used an include_once method, this worked better than before, although I’ve now got to top level menus that are identical.
Forum: Plugins
In reply to: If add_menu_pageIs it possible to have several plugins access a common file for functions etc)
Forum: Themes and Templates
In reply to: Remove 'Home' From MenuNevermind, I’ve removed the old code and replaced it with your code. Worked like a charm. Thank you so much.
Forum: Themes and Templates
In reply to: Remove 'Home' From MenuWhat do you mean ‘I shouldn’t be doing that’, I’ve duplicated the Twenty Ten theme to use it as a basis for my own (Which wont be distributed), it’s just because I’m very new to this.
So is there no way I can keep the other code and just use the new one I add with a custom name?
Forum: Themes and Templates
In reply to: Remove 'Home' From Menufunctions.php
function twentyten_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );
And what code do I use in the other theme files?
Forum: Themes and Templates
In reply to: Remove 'Home' From MenuDo I add it underneath the part that has similar code?