Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

kitcorsa

Privileged
  • Joined

  • Last visited

Everything posted by kitcorsa

  1. I noticed in my local area that the RNLI have a live webcam feed that is used for numerous things on the internet. Also after searching i found 2 other local webcams in m area that anyone can view. I was thinking about setting one up my self from my office as we have a nice view of the sea front and beach (different to the RNLI) that weather waters and surfers might be interesting in viewing etc. does any one know how to go about setting up a webcam that is viewable online through a website and shared with other sites?? ALSO does anyone know if it would also be possible to run banners on this webcam... ie photos of the local area to help promote local galleries etc and my own photography etc??
  2. Multiple Stores is available on the list of features for community.... but is that what im looking for?? http://www.magentocommerce.com/product/overview-compare#compare
  3. Do you know if I need to use the self hosted magento or will it work on magento go that they host?? Never use magento but i have been using zen-cart for over 6 years now, are they simular.
  4. Im looking to create a new website for myself to sell online. The product range I have is very extensive and varied, ie from dog food to womens fascial cleansers (ps dont get them mixed up lol) What im looking to do is create a website for each product range, ie a pet site and a beauty site, with each site haivng its own domain. each site will then be connected to one bank account user a trading name via sagepay or paypal (as i know how to do this and know then can accept from multiple domians) the parts im struggling with is that I would like all the site to be controlled from one central back end ie one login screen and one order screen for all the websites. Is this possible?? multiple domains with multiple catalogs. If so couple people point me in the direction of the ecommerse software that would do this, ie zen-cart, os commerse, wordpress ecommerce, magento etc Thanks
  5. I was wondering if there was a plugin for zencart or a 3rd part site that if i gave a list CSV of all the postcode of my order to, it would show a google style map with pointers of all the orders, so I can see where all my hot areas are and the not so hot areas. this would help with geo targeting my google adwords and media advertising.
  6. seen this on a couple of sites and was wondering how to do it... whats i have seen on a couple of sites is a plugin javascript that displays information when a user rolls over a image... for example see http://www.my-bathrooms.co.uk/categories/Boilers/Combi-Boilers/ and roll over an image. wonder if anyone know what time is called so i can find a plugin or the java to hack into my site, thanks
  7. right before I start please be aware im not a noob and i can normally fix most issues but this is bugging me. My eCommerce site (zencart) is running on my own VPS with a 2048 bit ssl encryption for all secure section of the site (ie checkout login etc) all certified by commado, all varified etc and working.... from what i can see. I have had a phone call from a number of customers saying my site is insecure and the pad lock is showing open on chrome and on mobile get an unsecure popup... what i check my site myself on my phone (android), friends iphone and black berrys i get no issues. I have checked on ie, ff and chrome on 3 computers all have no issues...... also checked my site using 3rd part ssl checker http://www.sslshopper.com/ssl-checker.html and http://www.digicert.com/help/ and https://www.ssllabs.com/ssltest/ etc and all say no issues. so why have i been recieving calls from people with issues?? does any one have any ideas on why people would get this issue... i have to assume that the user have the correct date set on there computer or phone as these are normally automatically set.... so that would remove that issue. Any one know any other checks i can do or where else to look, or if there is a security audit i can perform to check any further??
  8. found an error with it, where if peopl get a measurment of 100.1 or somthing it fails. here is the fix http://jsfiddle.net/aAfQp/13/
  9. think this should do it :-D http://jsfiddle.net/aAfQp/12/
  10. looks like a good plugin
  11. Something like this (in pseudocode) after the room loop completes: if(area<=100) price=cost1*area; else price=(cost1*100)+(cost2*(area-100)); In the sample code above it keeps a running total of the cost for each room in the loop. For tiered pricing I would only need keep a running total of the room areas and apply the tier pricing only after the total area is determined?
  12. Is it possible to add a second price so that the first say 100sqm is price one per square meter (as it does now) but then ever square meter after is the second price. Can anyone help please.
  13. yeah even built with that junior says said it is... says it isn't
  14. figured it out!!! disable function noit working, changed the <textarea id="email" disabled></textarea> to readonly and works! <textarea id="email" readonly></textarea>
  15. <?php /* Template Name: Quote */ ?> <?php //response generation function $response = ""; //function to generate response function my_contact_form_generate_response($type, $message){ global $response; if($type == "success") $response = "<div class='success'>{$message}</div>"; else $response = "<div class='error'>{$message}</div>"; } //response messages $not_human = "Human verification incorrect."; $missing_content = "Please supply all information."; $email_invalid = "Email Address Invalid."; $message_unsent = "Message was not sent. Try Again."; $message_sent = "Thanks! Your message has been sent."; //user posted variables $name = $_POST['message_name']; $email = $_POST['message_email']; $address = $_POST['message_text']; $quote = $_POST['message_quote']; $human = $_POST['message_human']; $message = " Supplied information Name: $name Address: $address Email address: $email Quote: $quote "; //php mailer variables $to = get_option('admin_email'); $subject = "Quote from ".get_bloginfo('name'); $headers = 'From: '. $email . "\r\n" . 'Reply-To: ' . $email . "\r\n"; if(!$human == 0){ if($human != 2) my_contact_form_generate_response("error", $not_human); //not human! else { //validate email if(!filter_var($email, FILTER_VALIDATE_EMAIL)) my_contact_form_generate_response("error", $email_invalid); else //email is valid { //validate presence of name and message if(empty($name) || empty($message)){ my_contact_form_generate_response("error", $missing_content); } else //ready to go! { $sent = wp_mail($to, $subject, strip_tags($message), $headers); if($sent) my_contact_form_generate_response("success", $message_sent); //message sent! else my_contact_form_generate_response("error", $message_unsent); //message wasn't sent } } } } else if ($_POST['submitted']) my_contact_form_generate_response("error", $missing_content); ?> <?php get_header(); ?> <?php if ( has_post_thumbnail()) : ?> <div id="home-container"> <?php the_post_thumbnail(); ?> </div> <?php endif; ?> <!--content--> <div id="content_container"> <div id="content"> <div id="left-col"> <!--Start of Quote--> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <div id="rooms"></div> <button id="add">Add room</button><br> <input type="text" id="cost" disabled><br /> <textarea id="message_quote" disabled><?php echo esc_textarea($_POST['message_quote']); ?></textarea> <script> var price = 2; // Price per sq metre $("#add").bind('click', function () { $('#rooms').append('<div class="room"><input class="name" type="text" placeholder="Room Name"><input class="x" type="text" placeholder="Room Width (m)"><input class="y" type="text" placeholder="Room Lenght (m)"></div>'); $('#rooms .x, .y').on('change', function () { var cost = 0; var quote = ''; $('.room').each(function () { var x = $(this).children('.x').val(); var y = $(this).children('.y').val(); var name = $(this).children('.name').val(); if (!x) {x = 1;} if (!y) {y = 1;} cost = cost + (x*y); quote = quote + '\n Room name:'+name+' - Room Dimensions: '+x+'x'+y+' - Estimate: £'+((x*y)*price); }); $("#cost").val('Estimated Price:'+(cost*price)).show(); $("#quote").val(quote).show(); }); }); </script> <style type="text/css"> .error{ padding: 5px 9px; border: 1px solid red; color: red; border-radius: 3px; } .success{ padding: 5px 9px; border: 1px solid green; color: green; border-radius: 3px; } form span{ color: red; } </style> <div id="respond"> <?php echo $response; ?> <form action="<?php the_permalink(); ?>" method="post"> <p><label for="name">Name: <span>*</span> <br><input type="text" name="message_name" value="<?php echo esc_attr($_POST['message_name']); ?>"></label></p> <p><label for="message_email">Email: <span>*</span> <br><input type="text" name="message_email" value="<?php echo esc_attr($_POST['message_email']); ?>"></label></p> <p><label for="message_text">Address: <span>*</span> <br><textarea type="text" name="message_text"><?php echo esc_textarea($_POST['message_text']); ?></textarea></label></p> <p><label for="message_human">Human Verification: <span>*</span> <br><input type="text" style="width: 60px;" name="message_human"> + 3 = 5</label></p> <input type="hidden" name="submitted" value="1"> <p><input type="submit"></p> </form> </div> <!--End of Quote--> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div class="post-entry"> <h1><?php the_title(); ?></h1> <?php the_content(); ?> <div class="clear"></div> </div><!--post-entry end--> <?php// comments_template( '', true); ?> <?php endwhile; ?> </div> <!--left-col end--> <?php get_sidebar(); ?> </div> <!--content end--> <div id="readmore-container"> <?php get_footer(readmore); ?> </div> </div> <!--wrapper end--> <?php get_footer(); ?> here is the quote page template i have created so far... problem im having now is that the message sends to me but its not getting the quote information... ie the room name and sizes and the price etc. any ideas what i done wrong??
  16. nope tried in chrome, sefari, ff, ie etc etc etc and nothing, look on my phone and working, lap top on ff ie and chrome all working... just my desktop pc hum
  17. http://cssmenumaker.com/blog/wordpress-3-drop-down-menu-tutorial
  18. you can change all the instanses of wp-admin in the files.... all you need is notepad++ backup first.... but problem is you will not be able to install plugins or do updates or you will have to the changes again... how ever there are plugins out there that will change the directory for you.
  19. sound like a javascript error not loading correctly. I have a slider on my site like this and it displays like that for a second till the javascript loads in for the slider.
  20. just noticed something, the code works in that it give an estimate depending on the size of the rooms etc but when click the paypal button where does the email go that has the list of the rooms entered and the sizes and the quote... there is an email option added in the code but no place for the customer to add there email to get a copy of the quote or a place to put my email to get a copy of the quote.
  21. sorted got it working now in the page template just had to move the script in the template file. can figgure out how to offer a discount if over a set meterage
  22. Cant seem to get this to work for some reason, ive added the above code to a new page template and the css to my template css file, but when i create the page with the page temlate the add room butom appears but when you click it nothing happens!! hum
  23. I use Chrome Sniffer and it wasn't showing it was a wordpress site... also have theme sniffer that tells you the theme ;-)
  24. For some reason marqueee scroll has stopped working on computer on all browsers.... even going to sites like http://www.quackit.com/css/css3/properties/css_marquee-style.cfm the scroll if frozen and not moving.... any one have any ideas why it not working on my computer or in my chrome, fff or IE.... working fine on my mobile and laptop etc just my pc it not working on.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.