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.

jamieclock

Members
  • Joined

  • Last visited

Everything posted by jamieclock

  1. Thanks very much guys. Much appreciated. Unfortunately they don't want any ties to the old company name etc so I'll let them know that the new site will have to build up its authority from scratch. Is there a quick way I can tell Google that the original domain is no longer in use and to remove that site from it's index? Thanks Jamie
  2. Hi, I've designed, built and optimised a site for a customer a few years ago and it's currently ranking really well in Google for relevant search terms. The problem is the company has recently gone into administration and no longer exists. The customer has launched a new company doing exactly the same thing but under a different name. Now he's asked me to create a new site for them on a new domain but how do I use all the same content and achieve the same Google results without plagiarising the old site?? The old site is still currently ranking on page 1 of Google. It's not as simple as keeping the old site as they don't want to associate themselves with the old company name. Any advise would be gratefully appreciated. Thanks
  3. I've tried it on my iPhone also and the same problem, they don't dropdown,
  4. Hi, yes that's correct, same with the menus down the left, these should expand out..
  5. Thanks throzen, I think the issue really is on iPad, I cant really get it to work
  6. Thank you Jack. Would this be something you may be able to help me with? Obviously I'd pay you fro your time. Thanks
  7. Hi, I build a static html website a couple of years ago (before I learnt Wordpress), and it works fine on PC & Mac etc but for some reason the navigation dropdown menus don't work on iPad/iPhone. I'd be extremely grateful if anyone could take a quick look at it and maybe help me fix this? The url is www.juliabecker.co.uk Much appreciated.
  8. Hi I know this is really cheeky but does anyone have a subscription to Fotolia stock library? I already have a Fotolia account and have sourced various photos for a project last year and for whatever reason they seem to have vanished off my Mac after I upgraded ( Basically I need about 40 photos and can't afford to buy them again or subscribe again, so I wondered If I could be cheeky and sort someone out with a drink for downloading a few at a time from their account if they're not using up their monthly quota... Anyway, if anyone could help me out, I'd be grateful if you could private message me. Thanks in advance.
  9. Thanks, I've found this script... http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/ I've set it up to test it and it works spot on, now the problem is when I insert it into a table (it needs to be in a table as I have lots of these icons in columns) then it stops working ;o( Does anyone know how I can solve this issue? Thanks in advance
  10. Hi, I have webpage with a table containing a number of PDF icons which, when clicked, download various PDF documents. What I'd like to do to give the viewer a preview without having to download the PDFs, is to enable a pop up image of the document when they rollover / hover over the PDF icon. I'd really appreciate any suggestions for the simplest way to create this. Thanks in advance.
  11. Hi, I've had a read up on Paypal IPN and to be honest I'm not quite sure It will do what I'm after, does anyone have any experience with this or another suggestion that I can try? Many thanks
  12. I've set up a simple site with the function to complete a form and register for an event which, when submitted, takes you to a page to make payment via paypal. There are a limited number of spaces for this event and I'd really like to add a feature a bit like a 'stock level counter' so that every time someone registers, the counter will change so that any potential customers would know how many places are remaining. Currently I have to do this manually which, as you can imaging, isn't very convenient! Any advice would be greatly appreciated.
  13. That's what I found ;o( I just got the internal info which, unfortunately is no good to me. Soooooo annoying as I need to link to these pages and can't see why it's been created this way!! grrrr
  14. Thanks for the quick reply... I did manage to work that out but I'm baffled when it could be so simply done. Say I wanted to link to the 'latest news' page, do you know what the URL link would then be?? Thanks
  15. Hi all. I've put a lot of websites together in the past but never come across this before... I have a client who recently has had his website designed: www dot banbury face clinic dot com. I'm trying to link to his internal pages but can't see how they've been put together?? So it you click on one of the images on the homepage, the navigation bar then appears... now, how do I find out the link to these pages? For example, I'm trying to find the link to what I would normally set us as... www.hisdomain.com/latestnews.html Can anyone help please?? Much appreciated
  16. Hi, I'm currently putting a website together where potential customers need to click on a link for more information... simple I hear you ask?! Well not quite... There would be 2 potential locations where this link should take them: 1. to the UK version of the site 2. To the US version of the site Now I could have them click through to a page and manually choose UK or US but I just wondered if there's a way to automatically detect where the viewer is located and therefore take them to the correct page when they click on the link?? I hope that all makes sense? Thanks in advance for any advice.
  17. Hi I really need someone's help here! I'm new to wordpress and have started a website using the theme 'Evolution'. I've made a few modifications to it. The problem I have is I need to show a different logo on each page. I've asked in the support forum where I bought the theme and have been advised to find the following code in the header: <img src="<?php echo $logo; ?>" alt="<?php echo esc_attr(get_bloginfo('name')); ?>" id="logo"/> and replace it with: <?php if(is_page(50)) { //logo for the page with the id 50 ?> <img src="url to your logo for the page with the id 50 " /> <?php } elseif(is_page(77)) { //logo for the page with the id 77 ?> <img src="url to your logo for the page with the id 77" /> <?php } elseif(is_post(22) ) { //logo for the post with the id 22 ?> <img src="url to your logo for the post with the id 22 /> <?php } else { //default logo for the other pages ?> <img src="<?php echo $logo; ?>" alt="<?php echo esc_attr(get_bloginfo('name')); ?>" id="logo"/> <?php } ?> Then to amend the code... As I'm a bit of a newbie to WP I'd really appreciate a little help with this part... If I have the main logo located at: "mydomain.com/wp-content/uploads/2012/03/main-logo.jpg" and would like it to appear on the homepage as well as 3 other default pages. I also have 4 more pages called "mydomain.com/page1", "mydomain.com/page2", "mydomain.com/page3" and "mydomain.com/page4" and would like these pages to show the following logos: "mydomain.com/wp-content/uploads/2012/03/page1-logo.jpg" "mydomain.com/wp-content/uploads/2012/03/page2-logo.jpg" "mydomain.com/wp-content/uploads/2012/03/page3-logo.jpg" "mydomain.com/wp-content/uploads/2012/03/page4-logo.jpg" I've no real idea of how I should amend the code. I'd be really grateful if someone could show me how the code should look Many thanks
  18. Hi, I've designed a small site for a client and come across an issue that's driving me crazy!!! The problem is just with one of the pages.. It works fine in Firefox, the div content disappears and the page doesn't scroll in Explorer and the whole page disappears and goes white in Safari!! Take a look at www. the sasp arillas .co.uk (all one word) The page in mention is the 'sound clips' page.... Anyone got any idea what the hell is going on ? lol Many thanks
  19. Hi all, I'm planning on putting a website together for my mrs to be able to upload photos and video clips for her iphone etc and was wondering if anyone could recommend the best way forward. In an ideal world, it would be great if it could work similar to how Facebook does, where visitors could add comments etc. And before you say... 'Why not just use facebook then!'. she'd like it just to be visible to certain people. So I'll put a log in area somewhere on it. Hope that's enough information and makes sense? I look forward to hearing form anyone who can help. Thanks
  20. Please help, I'm pulling my hair out! lol
  21. Looking for a little help here... I'd like to add a JS slideshow to a website I'm working on, but I need to add hotspots to it so if you click on the left side of it, it takes you to one page and if you click on the right side, it takes you to another page. The slideshow is exactly the same as the one at www.weddinggems.com Does anyone know if this is possible or if there is another way to achieve the same outcome? Much appreciated
  22. Please guys, I just need help now with setting 2 options for the customer to either pay £4.95 on top of their cart for shipping or choose not to add any shipping if they wish to collect... This website needs to go live tomorrow as the client is promoting it at an exhibition! Any help or advice would be gratefully received Thanks
  23. Hi I've integrated a paypal cart into a customer's website. They would like an option when visitors reach the PayPal cart to choose 'shipping' and add a charge for this or 'no shipping' if they wish to collect the item. I've hunted high and low to find out how to set this up with no luck... Please, Please, Please can someone with a little knowledge of this, share it with me and stop me pulling my hair out! ;o) Thank you very much Jamie
  24. Please ignore the request for the 'view cart' solution. I've managed to solve that. Just really need help with the discount code and the option to collect and not pay postage. Thank you

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.