wiresplus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2014 image size questionHello Simon,
on the page you want to have full width, go edit, then over to the right it says page template and it will be default. choose ‘Full Width Template’.
Voila!
BTW, link to your site would helpForum: Fixing WordPress
In reply to: Extra price fieldsuse sales tax function? That would work well if the surcharge was the same. If you have several different surcharges, set up shipping class for each product, and set shipping tax by class.
Forum: Fixing WordPress
In reply to: how to recover this siteHey Hey! it’s back up and running. what did you do?
Forum: Fixing WordPress
In reply to: how to recover this siteDo you have FTP access to your site?
look for wp-blog-header.php in your public_html or root folder. Is it there?Forum: Fixing WordPress
In reply to: how to recover this siteWhat happened? What changed to kill it?
Forum: Fixing WordPress
In reply to: Want image to only appear on one page not all.check the image file Chris – it’s just a blank or transparent 250 x 508 png at the moment.
What you need to do is use conditional tags.
How good are you at modifying the php files? beginner – moderate – expert?
I’d put the php conditional tags in your theme’s page template, with a condition to display only if it’s the front page. Or, create a custom sidebar widget with the image in it.
Forum: Hacks
In reply to: How do I redirect to another page after a short delayHey hey!
Fixed it: This is the code-
<?php if(is_page( 432 )){ ?>
<meta http-equiv=”refresh” content=”7;url=/?p=4″ />
<?php } ?>This nicely dumps the meta refresh into the page header if it is page 432.
Answer cobbled from several sources, most useful was Stack OverflowThanks to all!
Forum: Hacks
In reply to: How do I redirect to another page after a short delayThanks. It doesn’t work. It simply returns an entirely white screen with no website 🙁
Forum: Hacks
In reply to: How do I redirect to another page after a short delayHere’s header.php, down to head/>
`<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id=”main”>
*
* @package WordPress
* @subpackage Twenty_Thirteen
* @since Twenty Thirteen 1.0
*/
?><!DOCTYPE html>
<!–[if IE 7]>
<html class=”ie ie7″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if IE 8]>
<html class=”ie ie8″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if !(IE 7) | !(IE 8) ]><!–>
<html <?php language_attributes(); ?>>
<!–<![endif]–>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width”>
<title><?php wp_title( ‘||’, true, ‘right’ ); ?></title>
<link rel=”profile” href=”http://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<link rel=”icon” type=”image/png” href=”favicon.png” /><!–[if lt IE 9]>
<script src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
<![endif]–>
<?php wp_head(); ?></head>`
Sorry, but where should I put the $wp_Query?
Forum: Hacks
In reply to: How do I redirect to another page after a short delayForum: Hacks
In reply to: How do I redirect to another page after a short delayI tried this too, but this just breaks the page and I get a blank screen.
<META HTTP-EQUIV="refresh" CONTENT="<?php if(is_page(432)){7;URL=http://kjscreations.co.nz/}?>">Forum: Themes and Templates
In reply to: [Expound] Child theme exampleNo, I was only chipping in to help. I don’t need a thread 🙂
Forum: Themes and Templates
In reply to: [Expound] Child theme exampleOh, I was only testing. sandbox.wiresplus.co.nz. It’s empty as yet, but the theme is working.
Forum: Themes and Templates
In reply to: [Expound] Child theme exampleAnd yes, I have made a child theme folder in wp-content/themes.
Forum: Themes and Templates
In reply to: [Expound] Child theme exampleWell, you’d think so, but expound won’t take it and it says “this theme is broken, you need to install expound first”
So yes, normally you would want it up a level, but for an as yet unknown reason expound wants it without.
The child CSS reads:/* Theme Name: Expound Child Template: expound */ @import url('expound/style.css'); /* =Theme customization starts here -------------------------------------------------------------- */(it works for me on WP3.8)