adamh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with Post Editor after upgrading to 2.8.xThere are quite a few similar topics here, some resolved:
https://www.ads-software.com/search/post+editor+white+text?forums=1
Forum: Themes and Templates
In reply to: Layout difference in previous pagesit’s because you’re using a relative url for the image. When you go to another page, the url is then relative to that page – you need to add the wordpress url in:
<img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/default/images/<?php echo $cat; ?>.png" alt="<?php echo $cat; ?>" class="cat-icon" />
Forum: Fixing WordPress
In reply to: Cannot publish LONG pages! – (Word Count Limit)I imagine it’s a problem with php’s memory limit on the server – hence why it affects different sites at different levels. The easiest way to change this is by editing your php.ini file, but some hosts won’t allow this so you’ll probably need to contact them.
The default limit was 8MB before php 5.2, 16MB in 5.2 and 128MB afterwards.
Forum: Fixing WordPress
In reply to: Adding custom pagesYep, sure. A custom template is just a php page with access to the wordpress loop, vars etc
Forum: Fixing WordPress
In reply to: 2.8.1 Upgrade Breaks SiteNo worries, I think it was Michael I originally learnt that from!
Forum: Fixing WordPress
In reply to: Fatal Error – wp-settings.php, line 268Firstly, I’d backup your db (try phpmyadmin). Then get a fresh copy of wordpress and upload it to your ftp, over the old copy. You might find it’s not a problem
Forum: Fixing WordPress
In reply to: 2.8.1 Upgrade Breaks SiteIs there a .maintenance file in the wordpress root folder? If there is, rename or remove it and it should get rid of the message.
Forum: Fixing WordPress
In reply to: Adding TAB Characters…Ok. In ‘10 incredibly cool wordpress shortcodes‘ there’s an example of a [raw] shortcode that skips the wordpress auto-formatting. I have some issues with how they’ve written it, and I’m not sure you could combine it with another shortcode (ie syntax highlighter) but worth trying.
If it doesn’t work, let me know and i’ll see what i can come up with over the weekend.
Forum: Fixing WordPress
In reply to: Adding custom pagesYup.
You know WordPress has it’s own built-in search?
Forum: Fixing WordPress
In reply to: Comments not being postedIt doesn’t have to say that comments need approval – not all themes/owners do
Forum: Fixing WordPress
In reply to: Adding custom pagesYou need to create the page as a custom template and then create a new page in wordpress and assign the template to it.
https://codex.www.ads-software.com/Pages#Creating_Your_Own_Page_Templates
Forum: Fixing WordPress
In reply to: Problem with the single.php headerThe php manual is a good start
Forum: Fixing WordPress
In reply to: Weird message after trying to log into admin areaIt’s because you’re outputting something to the browser before wordpress has finished sending headers.
How did you implement the favicon? Normally, you’d just put the favicon file in the root folder.
Forum: Fixing WordPress
In reply to: Adding TAB Characters…I had the same problem, so I wrote a plugin which uses syntax highlighter but pulls in the code from files rather than including it in the post. If that suits you, it’s available here at https://www.ads-software.com/extend/plugins/external-files/
Feedback appreciated!
Forum: Fixing WordPress
In reply to: Comments not being postedIt sounds like your comments are not being approved. Are the sites active? Have you contacted the site owners?