Search results

  1. jdunhin

    Ever need a fixed menu when scrolling down on the website.

    Awesome :) yes on http://helpendehand.co.za i did a menu for them. Can you show me your method please. I like to learn and it is all about speed on a website.
  2. jdunhin

    Ever need a fixed menu when scrolling down on the website.

    Ever need a fixed menu when scrolling down on the website. I have a bit of code that can work with you. Just quick thanks to Ruan Vermeulen*for helping me with the JavaScript. First create a Javascript file and insert this code: <em>You can give it a name like menu.js</em>...
  3. jdunhin

    What is your current Cell Phone?

    I use a BlackBerry Z10 and still going strong with it :) Can't wait for OS update 10.1
  4. jdunhin

    Wordpress Author Position

    Hi All We are looking for a Wordpress Author on dunhin.co.za. Must know Wordpress and must write min 2 articles a day. When we get your submission then we can discuss what we going to pay you. You can apply on our contact form http://dunhin.co.za/contact-me Thanks
  5. jdunhin

    Display number of results in search page on WordPress

    Nice code, thank you for sharing! I know I'm going to use it :)
  6. jdunhin

    6 useful plugins to optimize images in WP

    Yes finally :) People need to make their images smaller on the websites. Google like fast loading sites. I am so happy you wrote this article!
  7. jdunhin

    WordPress 3.6 Released

    I think it is already user friendly. But they can improve on User management. Why not build in a good membership feature. I like where they are going and very excited for the release!
  8. jdunhin

    Is worth it to spend money for Apple or Samsung product?

    Yes, better support and more solid product. The downside is the money :)
  9. jdunhin

    iOS or Android

    Like Apple, better for business use for me. As a internet marketer one of the tricks is to use Apple products on a website :)
  10. jdunhin

    Can u name some of the best marketplaces for web design?

    I must agree on http://themeforest.net. Go where traffic is the best.
  11. jdunhin

    PHP and ASP

    I do not think we must think one is better than the other one. It depends on how good you are in one of them. It all come down to skills in a language. If you are doing web developing you use HTML. CSS,PHP and Javascript so you must know little from all.
  12. jdunhin

    Wordpress Theme: child theme from a parent theme

    If you need help or more info you are welcome to ask me again.
  13. jdunhin

    Wordpress Theme: child theme from a parent theme

    Hi You install it like any other theme. You do not need all the files of busybee. You can sill leave the page templates and other js scripts in busybee. This makes it easier because you start with a clean file and keep it easier to manage. If you want to change a div or class then you can put...
  14. jdunhin

    Wordpress Theme: child theme from a parent theme

    Ever wonder hoe to make a child theme from a parent theme? This make theme updating easy. So no more need to worry to mesh up the theme files. I made a child them from the theme BusyBee. Step 1: Create a folder in /wp-content/theme/name for folder Tip: You can put your own...
  15. 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>'; ?>
  16. 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.
  17. 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" />...
  18. 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; }
  19. 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'...
  20. 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);
Top