Ryan Hellyer
Forum Replies Created
-
Forum: Reviews
In reply to: [Hellish Simplicity] Really minimalisticGlad to hear you appreciate it 🙂
Forum: Reviews
In reply to: [Hellish Simplicity] Solid theme … no fluff …As you said, it’s simple and minimalistic 🙂 In keeping with that concept, I’ve used as few templates as possible. The fallback when no single-post.php file is present is to use a single.php file, if that does not exist, it will fallback to using index.php, which is how my theme works.
So by editing the index.php file, you will be editing the single posts template too. If you want to target only the single posts, then simply copy the index.php and rename it single.php. Then anything you change in there will affect only the single posts pages. You can use this same approach for most types of templates that you may require.
Another approach is to use
<?php if ( is_single() ) {} ?>conditional tags, but that does require some more knowledge of PHP coding in order to implement it.Forum: Reviews
In reply to: [Hellish Simplicity] Gorgeous Readable ThemeGlad to hear you appreciate the theme. You can add a menu to your sidebar if you like, via the widgets interface.
Forum: Reviews
In reply to: [Disable Emojis (GDPR friendly)] Does what I needWhy would a smilies plugin disable emoji functionality? They seem like unrelated features.
Forum: Reviews
In reply to: [Unique Headers] perfect working and easy to useIt’s awesome to hear you appreciate the plugin 🙂
Our plugin is already multilingual friendly, so that program is irrelevant.
There could be a problem with our plugin causing your double post issue, but that seems unlikely since we haven’t heard of any problems with other plugins. IMHO, this is extremely likely to be a bug in WPML.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.Try this header.php. I added back in the custom header code from the original Twenty Twelve theme … http://pastebin.com/wNVxgfTM
If you haven’t done it already, you should also change the folder name and change the theme name at the top of the style.css file. This will avoid the theme breaking during updates, as WPyogi pointed out above. Otherwise all these changes will be wiped out during your next update of WordPress core.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.Just copy and paste the code into http://pastebin.com/.
I don’t offer support via email sorry. I like to leave all support questions here in the forum in case the information in them can be used by others.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.No drama. I could have probably worked it out from the mangled version though.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.Ack. I wish you had asked them to remove the code rather than doing it straight away. Now I can’t answer the question :/
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.I have an unrelated tip though …
It looks like you are editing the code live on the server. That is quite insane and definitely not recommended. Ever. If you break something, you probably have no way to go back without restoring from backup.
You should connect to the site via SFTP, download the files, then edit them, then upload them. That way if something goes wrong, you can always copy another version across.
An even fancier way is to deploy the files via version control system, but simply copying the files across is easier.
You should also install a local server on your personal computer. That way you can make all the edits locally, then when they’re ready just copy them all over at once. The local server is much faster, much easier to use, and it doesn’t matter if you break it.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.You are doing something wrong.
It’s impossible to know what from here though. I think I can only help you if you provide the theme sorry.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.I suspect you probably removed the built in header image too though. Otherwise my plugin would be working for you already.
Try just copy and pasting this into your own header.php file:
https://themes.svn.ww.wp.xz.cn/twentytwelve/1.6/header.phpIf that still doesn’t work, then try doing it with the functions.php and inc/custom-header.php files too:
https://themes.svn.ww.wp.xz.cn/twentytwelve/1.6/functions.php
https://themes.svn.ww.wp.xz.cn/twentytwelve/1.6/inc/custom-header.phpForum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.I think you were trying to link to a page in your web hosts control panel. That won’t work since I can’t see it. I just need a zip file with the theme in it.
Forum: Plugins
In reply to: [Unique Headers] Difficulty with Unique Headers on Twenty Twelve theme.The folder you created won’t matter. You may as well delete if you aren’t planning to use that plugin again though.
There is no need to modify your theme to add header images since Twenty Twelve already has that functionality built in.
I don’t recognise this code, so I assume it has something to do with the other plugin you installed.
<?php if(function_exists('show_media_header')){ show_media_header(); } ?>It may be easiest if you just post a link to your theme here so that I can take a look and let you know what is wrong.