Search results

  1. jdunhin

    Add a style.css onto a php file

    Add a style.css onto a php file. <?php echo '<style type="text/css">'; include 'style.css'; echo '</style>'; ?>
  2. jdunhin

    Why use WordPress for your website

    I agree, it is solid, easy and NOT only a blog tool. Best of all it is opensource and nothing stop you to use Wordpress as a building platform.
  3. jdunhin

    BlackBerry Z10

    What do you think of the BlackBerry Z10. It look like a solid phone.. Is one half of it build on Android? I know the Samsung S4 is super but I think BlackBerry Z10 is going to put them maybe back in business.
  4. jdunhin

    hello to everybody on this forum

    Hi there Welcome and hope to learn allot more from hosting and get clear hosting answers form you.
  5. jdunhin

    Windows and Skype

    Do you agree with me that Skype was better off without Microsoft? It seems to get more bugs now with all the new integration's.
  6. jdunhin

    Redirect HTTP to HTTPS - If your wordpress is on HTTPS

    If you have a Wordpress installation on https then you want the http to redirect to https. In your public_html (not in public_ssl) put this html file: Create "name.html" Insert this code and replace domain with website name. <meta http-equiv="Refresh" content="0;URL=https://domain.com" />...
  7. jdunhin

    Remove Jetpack smiley!

    Remove the Jetpack smiley without breaking the stats. Put this in your CSS file: img#wpstats { width:0px; height:0px; overflow:hidden; }
  8. jdunhin

    Remove Jetpack for users

    Hi I saw that Jetpack is available for all users. That is a no for me so I put a stop to this. Create a directory "wp-content/mu-plugins". More about "mu-plugins" Creat a PHP file with any name. But I created no-jetpack.php. Paste in this code: add_action( 'jetpack_admin_menu'...
  9. jdunhin

    Remove Admin Bar for all Users except for Administrators

    Paste the code in your themes function.php add_action('init', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } } Or remove it completely for all users show_admin_bar(false);
  10. jdunhin

    Replace WordPress Howdy with something else

    Hi, hope this little code help someone. I did not test it on all Wordpress Versions but it works on the latest one. function goodbye_howdy ( $wp_admin_bar ) { $avatar = get_avatar( get_current_user_id(), 16 ); if ( ! $wp_admin_bar->get_node( 'my-account' ) ) return...
  11. jdunhin

    How to Convert WordPress to Mobile App

    I use jetpack. One of the modules in the plugin convert your site to display nice on mobile devices.
  12. jdunhin

    Samba Server on Ubuntu

    i build my first Samba server on a Ubuntu machine. Works amazing on my HP Micro Server. My only problem was mounting the harddrives without formatting it. First make a directory: mkdir /media (make sure you are in the right tree). Mount: sudo mount /media Used this help file and helped me...
  13. jdunhin

    Apache or nginx

    Apache or nginx? It sound like nginx is taking over on the servers. Is it really faster?
  14. jdunhin

    Corel Draw vs Photoshop ?

    Photoshop:) because I started with it and difficult to change to Coral or Indesign. I think Photoshop and Fireworks is good enough for Web design.
  15. jdunhin

    Hide entry-title on home page

    Simple tip for Wordpress beginners. How to hide the title on a Wordpress Home Page: CSS: .home .entry-title { display: none; }
  16. jdunhin

    WordPress 3.6

    I think more user friendly. They are already but they want to make it more. Some security an login improvements I hope :)
  17. jdunhin

    Which one comes first, Google or Yahoo?

    Google is better for me. But it looks like Yahoo also like google people because they hire allot of google people...
  18. jdunhin

    Pay per impresion sites ?

    I have a business that pay you per impression. I must say it is growing FAST, because we pay per impression and not per click. I do not advertise it on this site so email me. I will give you more detail.
  19. jdunhin

    Guidelines for testing a web site

    If you go Wordpress then you must lookout for a good theme that all browsers support. Wordpress handle all the development problems.
  20. jdunhin

    How to drive more traffic to website ?

    Google Adwords, link exchange and advertising on forums and other webpages. The problem is to keep them on the website.
Top