mames40
Forum Replies Created
-
Hi,
Thanks for your response. Here is the url to my webpage:http://glencoehighclassof86.com/home/.The form is near the bottom under fees payable.
The field that is causing the problem is Number of Children 13 years and under for Saturday BBQ Only. It takes a number and is multiplied by 13.50. If I enter 1 I get 1300.005. If I enter 2 I get the correct answer 27. If I enter 3 I get 4000.005.Also I was wonder if the total could show dollar amount for the total. I only saw currency field for input but I am inputing quantity * price.
Thanks so much. Margaret
Forum: Plugins
In reply to: [Netcam / Webcam Live Stream] netcam not updating only viewing single imageHi,
I found the problem. Thank you for your response. MargaretForum: Fixing WordPress
In reply to: How do I add my hello word javascript to my template fileI saw an implementation using functions.php but I don’t understand how the javascript gets loaded into a particular template using that approach. :(.
Forum: Fixing WordPress
In reply to: How do I add my hello word javascript to my template filechanged ‘if( is_page(‘webcam’)) {‘ to
‘if( is_page_template( ‘webcam.php’ )){ ‘ but still doesn’t load :(.Please help. Margaret
That solved my problem. And fixed a problem with another plugin. Thank you so much for looking into this. Margaret
Hi,
JQuery is not in my theme. My theme is fairly basic. It has a header.php:‘<!doctype html>
<!–[if lt IE 7]> <html class=”ie6 oldie”> <![endif]–>
<!–[if IE 7]> <html class=”ie7 oldie”> <![endif]–>
<!–[if IE 8]> <html class=”ie8 oldie”> <![endif]–>
<!–[if gt IE 8]><!–>
<html class=””>
<!–<![endif]–>
<head>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title>Savor Test</title>
<link href=”css/boilerplate.css” rel=”stylesheet” type=”text/css”>
<link href=”<?php bloginfo(‘stylesheet_url’); ?>” rel=”stylesheet” type=”text/css”>
<meta name=”description” content=”Savor”/>
<meta name=”keywords” content=”Savor” />
<!–
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/Do the following if you’re using your customized build of modernizr (http://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the “no-js” class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
–>
<script src=”css/respond.min.js”></script>
<!–[if lt IE 9]>
<script src=”//html5shiv.googlecode.com/svn/trunk/html5.js”></script>
<![endif]–>
</head>
<body>
<div class=”container”>
<div align=”center”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘header-menu’ ) ); ?>’An index.php file with the following code:
‘<?php
/*
Template Name: index
*/
?>
<?php get_header(); ?>
<div id=”main”>
<div id=”content”>
<?php if (have_posts() ) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages‘,’after’ => ‘</p>’, ‘next_cr_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’,'<p>’,'</p>’); ?>
</div>
</div>
<?php get_footer(); ?>’And a footer file footer.php:
‘ <?php wp_footer();?>
</div>
</body>
</html>
And a functions file functions.php:
<?php function register_my_menu() {
register_nav_menu(‘header-menu’,__( ‘Header Menu’ ));
}
add_action( ‘init’, ‘register_my_menu’ );
?>’The style sheet is really basic:
‘/*
Theme Name: savor-test
Theme URI: http://savor-test.com/wp-content/themes/savor-test
Author: Margaret Ames
Author URI: http://amazinglyaffordablewebdesign.com
Description: This is the main style sheet that styles pages for savor-test.
Version: 1.0
License: None
License URI: None
Tags:
Text Domain: savor-test
*/@charset “utf-8”;
/* Simple fluid media
Note: Fluid media requires that you remove the media’s height and width attributes from the HTML
http://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
width:100%;
}/*
Dreamweaver Fluid Grid Properties
———————————-
dw-num-cols-mobile: 5;
dw-num-cols-tablet: 8;
dw-num-cols-desktop: 10;
dw-gutter-percentage: 25;Inspiration from “Responsive Web Design” by Ethan Marcotte
http://www.alistapart.com/articles/responsive-web-designand Golden Grid System by Joni Korpi
http://goldengridsystem.com/
*//* Mobile Layout: 480px and below. */
.gridContainer {
margin-left: auto;
margin-right: auto;
width: 87.36%;
padding-left: 1.82%;
padding-right: 1.82%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
.gridContainer {
width: 90.675%;
padding-left: 1.1625%;
padding-right: 1.1625%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
}/* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
.gridContainer {
width: 88.2%;
max-width: 1232px;
padding-left: 0.9%;
padding-right: 0.9%;
margin: auto;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
}’Nothing else. :(. Thanks, Margaret
I removed respond.min.js and the slider still doesn’t work. I don’t have any other javascript in my site. I need other suggestions. Please help.
Forum: Plugins
In reply to: [Mongoose Page Plugin] Facebook Page Plugin Shortcode URLThank you for your help. It worked! Margaret
Anyone try using the pickle audio player in wordpress? http://www.pickleplayer.com They don’t have a plugin so you have to set up the player manually. Wondered if anyone has tried it? Does it work in wordpress?
I haven’t seen any server side solutions for plugins for wordpress.
Have you been able to get it to work on all major browsers?
Hi,
The plugin uses both Flash and javascript.Hi,
I ran the debugger on the page that I created that has no javascript that I have introduced and still get the same error. :(.Thanks for your help. I posted a question on the authors page but I have not heard back from him.
Margaret
I got mine from the repository:http://wordpress.org/plugins/compact-wp-audio-player/.
Tried changing browser modes to ie9 from ie10 still the same javascript error.Hi,
I was running the javascript debugger and received the following error while running internet explorer 10‘soundManager’ is undefined
I deleted the version of the plugin I had and downloaded v1.6 again of the compact player and reactivated. Still the same error.
Please advise.
It must be my css because I created a template and just used the style sheet with the body of the html document being short code.
Still didn’t work.