Search results

  1. jdunhin

    Show authors in category (Wordpress)

    I struggled with that to show just users of a certain category. I was also near my deadline for the website and need results before the end of the day :)
  2. 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...
  3. 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...
  4. 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...
  5. 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' ) ; ?>
  6. 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...
  7. 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...
  8. jdunhin

    Should use auto post plugin for wordpress ?

    Never used it! But I think it is not 'n good way to get more post on your blog. Blog is more personal and about your thoughts on a topic. But that is just my opinion :)
  9. jdunhin

    SEO Plugin

    Yoast SEO plugin is the best one for me! It is also fast growing to be the top SEO plugin out there!
  10. jdunhin

    Why is wordpress more popular than other ?

    I use Wordpress in my company for all the websites. It is easy top learn and secure! The plugin database is huge :)
  11. jdunhin

    Which One is Better, Free or Paid ones?

    I have no problem with free Forums! So my answer is go with free :)
  12. jdunhin

    Which Programing language is Easy to learn ?

    PHP was easy to learn for me :) but Wordpress made me lazy to learn new languages.
Top