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.

EpicWebs

Privileged
  • Joined

  • Last visited

  1.    zaflondon reacted to a post in a topic: Advise on Wordpress Business Directory
  2.    Milli05 reacted to a post in a topic: Help! Missing form data after "submit"
  3.    Milli05 reacted to a post in a topic: Help! Missing form data after "submit"
  4. If what you were looking for was something like, 12px + 12px margin then look into using a CSS preprocessor like SASS or Less.
  5. Yea, I would ask them to confirm what they mean by static.
  6.    Nillervision reacted to a post in a topic: Help! Missing form data after "submit"
  7. It would also be worth looking into the filter_input function it's really powerful. http://php.net/manual/en/function.filter-input.php
  8.    iDigLocal reacted to a post in a topic: Quick question
  9. You have to set a name on your input fields. <input type="text" class="textbox" value="name" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'name';}"> Should be <input type="text" class="textbox" name="name" value="name" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'name';}"> Good luck!
  10. It's not really worth the effort and all the 301 redirects you would have to do, especially as the site is 4 years old. I would focus on making it work easily for the user (which is normally why you categorise or separate content) and then focus on building up content and making sure it's shared as many places as possible, rather than spending time changing the urls. Good luck with your site
  11. You should reset the post data on your loops. Although i'm not sure why grabbing the posts and then just using a foreach would be affected by it... but it probably is. <?php // The Query query_posts( $args ); // The Loop while ( have_posts() ) : the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Query wp_reset_query(); ?>
  12. There is areas of caching to look out for. Browser cache (Press CTRL + F5 on windows or CMD + R twice on a mac). Caching Plugins, like W3 Total Cache, you will need to clear all the cache, although this doesn't usually affect images/text in post content. CDN Caching, if you are running anything like CloudFlare, this can cache too, so you need to turn it in development mode whilst your developing and then purge the cache when you are finished. If you are still getting issues then it's more likely an issue with a plugin or theme stopping you from being able to edit content.
  13. I would go with this and also make him aware that you are doing nothing at all to harm the reputation of his company, he is doing it all himself.
  14. What's probably happening is: $_GET['s'] = html $_GET['php'] = "" If you want to grab if it's HTML and php and you definitely can't change the URL then your going to have to hack it around and do something like: If(isset($_GET['php']) && $_GET['s'] == "html") { $s = "html&php"; } Then use $s and rawurlencode it. Good luck!
  15. EpicWebs replied to teodora's topic in General Chat
    If I was to take a degree I would take one based on Business or Organisation or some sort?!?, I feel like that would be more helpful for me than trying to enhance my current expertise.
  16. You would probably be better off detecting the language and then serving up a different stylesheet for it.
  17. One thing that can be useful is looking at the body classes, <body class="category"> sometimes they will have things like: page (page.php) single (single.php) archive (archive.php) category (category.php) But this is only if your theme supports body classes.
  18. If your plan is to handle it yourself, then a lot of testing in advance of launch would be my advice, you want to make sure that you can prevent any spam or harmful submissions automatically rather than having to individual reject any that aren't suitable - as this is what I imagine is going to take up most of the time if it's successful. Good luck, i'm sure you can do it!
  19. It's difficult to tell without some code, but once I moved away from device width and started focus on when my website needed to respond as a certain width everything became a lot easier with responsive. It's only my experience and your welcome to ignore it, but I'm thinking it would help you resolve your landscape situations as probably the real device width in pixels could differ and that is what is causing your MQ to break.
  20. In case anyone was interested, I could not get this to work at all. So I ended up falling back to a MySQL query.

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.