helencoupland
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Helsinki] header image on mobileHas anyone else found this issue?? I would really appreciate a fix as I’m keen to launch the site!
Forum: Themes and Templates
In reply to: [Coeur] Mobile Menu Not Displaying, Error in CSSI’m using coeur on this site https://hackneysingers.org.uk/ and would like to show a mobile menu as it doesn’t currently have one. I don’t want to update the whole theme as I modified it quite a lot. Can anyone help me with which bits of code to add/ modify?
Would it be just the header.php and blog.css files?Forum: Fixing WordPress
In reply to: Email signup to download music trackMM Forms is the answer – I worked it out myself.
It’s very good and easy to use!
This is my site
Forum: Fixing WordPress
In reply to: Using a different header on the homepageThat works fine… Thank you!
Forum: Fixing WordPress
In reply to: Using a different header on the homepageSorry no.. I used the code below, but I keep getting this error:
Parse error: syntax error, unexpected ‘<‘ in /home/heloucou/public_html/niraj/wp-content/themes/modularity-lite/header.php on line 39
<?php if(is_home() ) { //do special header stuff <div id="masthead"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/images/eastern_soul_header_home.gif" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1> </div> <?php include (TEMPLATEPATH . '/nav.php'); ?> } else { //do regular header stuff <div id="masthead"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/images/eastern_soul_header.gif" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1> </div> <?php include (TEMPLATEPATH . '/nav.php'); ?> } ?>
Forum: Fixing WordPress
In reply to: Using a different header on the homepageThanks for the help… My header.php file looks like this though (I started from a complicated theme and disabled a lot of stuff).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <title><?php wp_title( '-', true, 'right' ); echo wp_specialchars( get_bloginfo('name'), 1 ); ?></title> <meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <meta name="description" content="<?php bloginfo('description') ?>" /> <?php if(is_search()) { ?> <meta name="robots" content="noindex, nofollow" /> <?php }?> <!-- Styles --> <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/screen.css" type="text/css" media="screen, projection" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/print.css" type="text/css" media="print" /> <!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/ie.css" type="text/css" media="screen, projection" /><![endif]--> <!--[if lte IE 7]><link type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/ie-nav.css" rel="stylesheet" media="all" /><![endif]--> <?php //Load Variables $css = get_option('T_background_css'); ?> <?php if ($css == 'Enabled') {?> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/library/functions/style.php" type="text/css" media="screen, projection" /> <?php } ?> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php if(function_exists('show_media_header')){ show_media_header(); } ?> <body> <div id="top"> <!-- Begin Masthead --> <div id="masthead"> <h1><a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_url'); ?>/images/eastern_soul_header.gif" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1> </div> <?php include (TEMPLATEPATH . '/nav.php'); ?> <div class="clear"></div> </div> <div class="container"> <div class="container-inner">
Forum: Fixing WordPress
In reply to: How to Remove “Comments are Closed” in my site?I managed to remove the “comments are closed” box from pages on my site which I was developing on a test domain https://www.heloucou.com
I exported the content to another domain https://www.exclusivef1experiences.co.uk/wordpress but can’t seem to remove the message, even though it appears all the theme files are identical on the two sites.
I’ve spend HOURS trying to work out why. Any ideas?
The theme is piano black.
Forum: Plugins
In reply to: Slideshow gallery not showingI worked it out already…
This seems to work:
[slideshow custom=1]
instead of [slideshow]
I’m not sure why?!