Search results

  1. jdunhin

    PayFast

    I'm in South Africa and discovered PayFast.co.za for us. What the rest of the world don't realized is that South Africa have a big online market. So please make this gateway part of your e commerce site if possible.
  2. jdunhin

    Email marketer

    Email marketing still stay important. If you want to start you can use mailchimp with 1000 addresses for free. MadMiMi is my second choise but only 100 addresses free but good support. Remember if you have a Facebook page to setup a tab with a email sign up form.
  3. jdunhin

    Wordpress security Plugin

    I want to send out a warning for all of you that still have the "Hello Dolly" plugin installed on your Wordpress website. 2 of my sites on different serer are getting hacked via that plugin. I am not a hacker expert but I have a plugin that help stop the hacking on my Wordpress sites. I use...
  4. jdunhin

    Widgetize your home page

    Put this code in your functions.php file <?php add_action( 'widgets_init', 'my_register_sidebars' ); function my_register_sidebars() { /* Register the 'homepage' sidebar. */ register_sidebar( array( 'id' => 'home', 'name' => __( 'home' ), 'description' => __( 'Widget on home page'...
  5. jdunhin

    CSS hover Box

    Hi Popupbox over a link. This is very cool and you can get creative! Sorry it feels like I am spamming the forum but I decided to share my notes on this forum... Code: css: /*************tooltip***************************/ .tooltip { cursor: hand; text-decoration: none !important; position...
  6. jdunhin

    Wordpress css hover

    Hi Sharing a tip for developers :) I am using sprite images and when I hover it just use the bottom part of the image. This is very handy to speed up your website or blog. CSS: #ID { width: 136px; //SIZE OF THE ONE PART OF THE IMAGE height: 48px; background-image: url("THE-IMAGE")...
  7. jdunhin

    Show authors in category (Wordpress)

    I have struggle the whole morning with this code. This is to show authors from a certain category. Feel free to make it work for you, but this works for me.... <?php $catauthors = array(); $citycat=8; $allposts=get_posts("cat=$citycat&showposts=-1"); if ($allposts) { foreach($allposts as...
  8. jdunhin

    Fast Redirect

    This code below shows how to redirect to another domain. It is easier to do it this way. The reason why is domains take time to populate the changes on it so when you use this code it works in no time. <?php header( 'Location: http://www.domain.com' ) ; ?>
  9. jdunhin

    Wordpress remove title on specific page

    I just want to share something about the entry-title on Wordpress. It works on Hybrid theme How to hide the title on one specific page: If you inspect element on the page you want the title to be gone then you will noticed an id with a name like post-6528. Numbers would be different. So in...
  10. jdunhin

    Hybrid 1.1 Wordpress Theme

    Want to remove the primary widget area on your frontpage. This code works for me. This is for Theme Hybrid. add_filter( 'sidebars_widgets', 'disable_primary_widgets' ); function disable_primary_widgets( $sidebars_widgets ) { if ( is_front_page() ) $sidebars_widgets['primary'] = false; return...
Top