Profiles

  • Member Since: January 4th, 2016
  • Find me on:
  • Created a topic, how to show original pic on click, on the site WordPress.org Forums:
    I want to know how I would be able to show original pi…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    would you believe it when I remover sort( $results ) it worked perfectly lol

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    yes $mo is assigned correctly but just wont list alphabetically lol so simple but wont…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    <?php global $wpdb, $post; $results = $wpdb->get_results( " SELECT * FROM $wpdb->posts WHERE post_title LIKE…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    oops sorry

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    <?php global $wpdb, $posts; $results = $wpdb->get_results( " SELECT * FROM $wpdb->posts WHERE post_title LIKE…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    ok I think I got it sorted apart from sort by title...hmm <?php global $wpdb;…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND (wp_posts.ID = '86') AND wp_posts.post_type = 'page' ORDER…

  • Posted a reply to search not working after db restore, on the site WordPress.org Forums:
    thanks for the help. changing the substring_where to just s searches the entire title for…

  • Created a topic, search not working after db restore, on the site WordPress.org Forums:
    <?php header(" echo home_url(); /". $_GET…

  • Posted a reply to Menu problems, on the site WordPress.org Forums:
    first of all are the three menus all named differently

  • Posted a reply to simple answer i cant get, on the site WordPress.org Forums:
    thanks guys

  • Created a topic, simple answer i cant get, on the site WordPress.org Forums:
    <?php if ( $categories = "celtic" ) { …

  • Posted a reply to db transfer, on the site WordPress.org Forums:
    hi steve, the custom post type 'movie' is defined in the functions.php p.s. it is…

  • Posted a reply to Display taxonomy image, on the site WordPress.org Forums:
    resolved

  • Created a topic, db transfer, on the site WordPress.org Forums:
    just transferred my saved db to clean install wordpres…

  • Posted a reply to DataBase Transfer, on the site WordPress.org Forums:
    solved

  • Posted a reply to DataBase Transfer, on the site WordPress.org Forums:
    thanks for your comment, but I have figured it out. all I had to do…

  • Created a topic, DataBase Transfer, on the site WordPress.org Forums:
    I recently had to wipe my c: drive and reinstall wordp…

  • Posted a reply to add custom button to add movie page, on the site WordPress.org Forums:
    the functionality of the button would be to run a scraper given that I manually…

  • Created a topic, add custom button to add movie page, on the site WordPress.org Forums:
    I would like to add a custom button on my add movie pa…

  • Posted a reply to Most expensive, on the site WordPress.org Forums:
    hi steve added 'type' => 'numeric', to the above query and still didn't echo the…

  • Created a topic, Most expensive, on the site WordPress.org Forums:
    <?php $args = array( 'post_status' =&gt…

  • Posted a reply to split column nor working, on the site WordPress.org Forums:
    all I needed to solve the col split was to float them left.

  • Posted a reply to split column nor working, on the site WordPress.org Forums:
    Can you please answer me this if I have <?php if ( have_posts() ) :…

  • Created a topic, split column nor working, on the site WordPress.org Forums:
    I have a col-md 3 col-md6 and col-md-3 but within the …

  • Created a topic, counting taxonomy, on the site WordPress.org Forums:
    <?php $count_actor = get_term( 'actor' );…

  • Created a topic, walker disappears, on the site WordPress.org Forums:
    I have a walker main menu that works great and its a s…

  • Posted a reply to custom pagination, on the site WordPress.org Forums:
    solved

  • Posted a reply to how to fix query, on the site WordPress.org Forums:
    solved

  • Posted a reply to count custom taxonomy, on the site WordPress.org Forums:
    resolved

  • Posted a reply to comment count, on the site WordPress.org Forums:
    I am stupid sorted thanks

  • Created a topic, comment count, on the site WordPress.org Forums:
    all my comments and replies work apart from this <p…

  • Posted a reply to hyperlink to a custom taxonomy., on the site WordPress.org Forums:
    figured it out :) <a href="<?php get_template_directory_uri(); ?>/wordpress/director/<?php echo $term->slug; ?>">

  • Posted a reply to hyperlink to a custom taxonomy., on the site WordPress.org Forums:
    `<a href="<php echo get_template_directory_uri(); ?>/taxonomy-director.php?<?php echo $term->name; ?>; ?>"><?php echo $term->name; ?></a>' Doesn't work :(

  • Created a topic, hyperlink to a custom taxonomy., on the site WordPress.org Forums:
    I have a loop to list the top 10 taxonomy [directors] …

  • Posted a reply to substr error, on the site WordPress.org Forums:
    worked flawlessly. I know I am close a lot of the time I just need…

  • Posted a reply to substr error, on the site WordPress.org Forums:
    it doesn't work as get error sorry :?

  • Created a topic, substr error, on the site WordPress.org Forums:
    <?php foreach ( $terms as $term ) { ?> <?php …

  • Posted a reply to how to fix query, on the site WordPress.org Forums:
    yes it is what you thought mi was :( the site I'm doing is only…

  • Posted a reply to how to fix query, on the site WordPress.org Forums:
    my skill level on wordpress php & sql are self taught, but to a level…

  • Posted a reply to how to fix query, on the site WordPress.org Forums:
    ah need read more as it lists all names with $mo in it weither it…

  • Posted a reply to how to fix query, on the site WordPress.org Forums:
    when I change 'name_like' => $mo it still lists them all :(

  • Created a topic, how to fix query, on the site WordPress.org Forums:
    I know what's wrong with the code but don't know how t…

  • Posted a reply to post per page, on the site WordPress.org Forums:
    thank you :)

  • Created a topic, post per page, on the site WordPress.org Forums:
    I have successfully managed to list my taxonomy 'actor…

  • Posted a reply to custom pagination, on the site WordPress.org Forums:
    I got everything you said and I have managed to do a similar search with…

  • Created a topic, custom pagination, on the site WordPress.org Forums:
    I have just recently added a page to my wordpress inst…

  • Posted a reply to count custom taxonomy, on the site WordPress.org Forums:
    sorted :) <?php foreach ( get_terms( array( 'taxonomy' => 'actor', ) ) as $cat) :…

  • Posted a reply to count custom taxonomy, on the site WordPress.org Forums:
    no it lists all actors correctly but not the movies that they are in are…