Web Design Forum: Ash Scott - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

Ash Scott's Profile User Rating: **---

Reputation: 53 Excellent
Group:
Members
Active Posts:
1,392 (1.9 per day)
Joined:
25-May 10
Profile Views:
10,241
Last Active:
User is offline May 07 2012 08:02 AM
Currently:
Offline

My Information

Member Title:
Competition Manager
Age:
17 years old
Birthday:
April 30, 1995
Gender:
Male Male
Location:
Kent
Interests:
Web Design
Web Development
Photoshop

CoD4 PC
Computers
Nvidia & ATI
L4D2
BMX

Contact Information

E-mail:
Private
MSN:
MSN  ashbashball1@yahoo.com
Yahoo:
Yahoo  ashbashball1
Skype:
Skype  i-limit-i

Users Experience

Experience:
Advanced
Area of Expertise:
Designer/Coder

Topics I've Started

  1. phpMyAdmin doesnt work ubuntu 10.04

    06 May 2012 - 10:01 AM

    Hi all,

    Im trying to set up phpmyadmin on my dedi running ubuntu 10.04. I installed LAMP, and that works. I tried using sudo apt-get install phpmyadmin and it says it installed fine, but when i got to 127.0.0.1/phpmyadmin it doesnt find anything. How can i fix this?

    Cheers
    Ash
  2. PHPBB3 Seating Plan

    22 April 2012 - 08:01 PM

    Hi all, im looking for a way to create an interactive seating plan, but i odn't know how i would do it... Basically this is what i want to happen:

    User logs into the main website
    User goes through the shop and buy a ticket for an event
    An admin confirms the payment, and the user can choose their seat by simply clicking it
    Their ticket is now used, and can't be used for future events

    The seating plan is viewable by guests, so they can see who is sitting where.

    A great example is at http://www.llamalan.co.uk/

    Regards
    Ash
  3. Joomla links failing me?!

    14 March 2012 - 12:45 PM

    Hi all, my joomla link are being really weird... Instead of being something like nvision-esports.net/about it is pointing to nvision-esports.net/index.php/about?

    Why is this?

    Ash
  4. WP sidebars issues

    01 February 2012 - 10:06 AM

    Hi there, I am codin a theme, using Blankslate as the foundations, but the sidebars not working :(

    functions.php
    <?php
    load_theme_textdomain( 'blankslate', TEMPLATEPATH . '/languages' );
    $locale = get_locale();
    $locale_file = TEMPLATEPATH . "/languages/$locale.php";
    if ( is_readable($locale_file) )
    require_once($locale_file);
    function blankslate_get_page_number() {
    if (get_query_var('paged')) {
    print ' | ' . __( 'Page ' , 'blankslate') . get_query_var('paged');
    }
    }
    add_action( 'after_setup_theme', 'blankslate_theme_setup' );
    function blankslate_theme_setup() {
    add_theme_support( 'automatic-feed-links' );
    }
    if ( function_exists( 'add_theme_support' ) ) {
    add_theme_support( 'post-thumbnails' );
    }
    if ( ! isset( $content_width ) ) $content_width = 640;
    add_filter('the_title', 'blankslate_title');
    function blankslate_title($title) {
    if ($title == '') {
    return 'Untitled';
    } else {
    return $title;
    }
    }
    function blankslate_register_menus() {
    register_nav_menus(
    array( 'main-menu' => __( 'Main Menu', 'blankslate' ))
    );
    }
    add_action( 'init', 'blankslate_register_menus' );
    function blankslate_theme_widgets_init() {
    register_sidebar( array (
    'name' => 'Primary Widget Area',
    'id' => 'primary-widget-area',
    'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    'after_widget' => "</li>",
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );
    }
    add_action( 'init', 'blankslate_theme_widgets_init' );
    $preset_widgets = array (
    'primary-aside'  => array( 'search', 'pages', 'categories', 'archives' ),
    );
    if ( isset( $_GET['activated'] ) ) {
    update_option( 'sidebars_widgets', $preset_widgets );
    }
    function blankslate_cats($glue) {
    $current_cat = single_cat_title( '', false );
    $separator = "\n";
    $cats = explode( $separator, get_the_category_list($separator) );
    foreach ( $cats as $i => $str ) {
    if ( strstr( $str, ">$current_cat<" ) ) {
    unset($cats[$i]);
    break;
    }
    }
    if ( empty($cats) )
    return false;
    return trim(join( $glue, $cats ));
    }
    function blankslate_tags($glue) {
    $current_tag = single_tag_title( '', '',  false );
    $separator = "\n";
    $tags = explode( $separator, get_the_tag_list( "", "$separator", "" ) );
    foreach ( $tags as $i => $str ) {
    if ( strstr( $str, ">$current_tag<" ) ) {
    unset($tags[$i]);
    break;
    }
    }
    if ( empty($tags) )
    return false;
    return trim(join( $glue, $tags ));
    }
    function blankslate_commenter_link() {
    $commenter = get_comment_author_link();
    if ( ereg( '<a[^>]* class=[^>]+>', $commenter ) ) {
    $commenter = preg_replace( '/(<a[^>]* class=[\'"]?)/', '\\1url ' , $commenter );
    } else {
    $commenter = preg_replace( '/(<a )/', '\\1class="url "' , $commenter );
    }
    $avatar_email = get_comment_author_email();
    $avatar = str_replace( "class='avatar", "class='photo avatar", get_avatar( $avatar_email, 80 ) );
    echo $avatar . ' <span class="fn n">' . $commenter . '</span>';
    }
    function blankslate_custom_comments($comment, $args, $depth) {
    $GLOBALS['comment'] = $comment;
    $GLOBALS['comment_depth'] = $depth;
    ?>
    <li id="comment-<?php comment_ID() ?>" <?php comment_class() ?>>
    <div class="comment-author vcard"><?php blankslate_commenter_link() ?></div>
    <div class="comment-meta"><?php printf(__('Posted %1$s at %2$s <span class="meta-sep"> | </span> <a href="%3$s" title="Permalink to this comment">Permalink</a>', 'blankslate'),
    get_comment_date(),
    get_comment_time(),
    '#comment-' . get_comment_ID() );
    edit_comment_link(__('Edit', 'blankslate'), ' <span class="meta-sep"> | </span> <span class="edit-link">', '</span>'); ?></div>
    <?php if ($comment->comment_approved == '0') _e("\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n", 'blankslate') ?>
    <div class="comment-content">
    <?php comment_text() ?>
    </div>
    <?php
    if($args['type'] == 'all' || get_comment_type() == 'comment') :
    comment_reply_link(array_merge($args, array(
    'reply_text' => __('Reply','blankslate'),
    'login_text' => __('Log in to reply.','blankslate'),
    'depth' => $depth,
    'before' => '<div class="comment-reply-link">',
    'after' => '</div>'
    )));
    endif;
    ?>
    <?php }
    function blankslate_custom_pings($comment, $args, $depth) {
    $GLOBALS['comment'] = $comment;
    ?>
    <li id="comment-<?php comment_ID() ?>" <?php comment_class() ?>>
    <div class="comment-author"><?php printf(__('By %1$s on %2$s at %3$s', 'blankslate'),
    get_comment_author_link(),
    get_comment_date(),
    get_comment_time() );
    edit_comment_link(__('Edit', 'blankslate'), ' <span class="meta-sep"> | </span> <span class="edit-link">', '</span>'); ?></div>
    <?php if ($comment->comment_approved == '0') _e('\t\t\t\t\t<span class="unapproved">Your trackback is awaiting moderation.</span>\n', 'blankslate') ?>
    <div class="comment-content">
    <?php comment_text() ?>
    </div>
    <?php }
    


    sidebar.php
    <div id="sidebar">
    <?php if ( is_active_sidebar('primary-widget-area') ) : ?>
    <div id="primary" class="widget-area">
    <ul class="sid">
    <?php dynamic_sidebar('primary-widget-area'); ?>
    </ul>
    </div>
    <?php endif; ?>
    </div>
    


    <?php get_sidebar(); ?>


    why is my sidebar not displaying? :(

    fragtalk.org

    I'm also tring to get a second sidebar, so i have one either side, both 250px wide, but i have tried loads of tutorials and none worked :(

    Regards
    Ash
  5. Dropdown Div Wordpress Login

    30 January 2012 - 04:20 PM

    Hello,

    I am currently coding a wordpress theme, and would like it to have user user login on every page, in the header...Now, i would like to have a 15px div with rounded bottom corners showing from the top of the page, then the user clicks it, and it slides down with a login form inside. The user then logs in and the form disappears and shows their detials like their picture, messages, and simple links like profile etc.

    How would i go about doing this?

    Regards
    Ash

Friends

Showing 20 random friends of 20

Comments

Page 1 of 1
  1. Photo

    MikeChipshop 

    05 Sep 2011 - 09:58
    I can't believe i was missing some of the people i was missing in my friends list. Yourself and zed were noticeable absences :p
  2. Photo

    MikeChipshop 

    25 Jul 2011 - 21:18
    Ha just noticed you've been made moderator of the comp forum. Nice one maaaan!
  3. Photo

    Alex Perseval 

    20 Jun 2011 - 16:04
    awesome :) good to know im not the only kentish one around here haha. i dont feel as lonely anymore :)
  4. Photo

    Ash Scott 

    19 Jun 2010 - 23:15
    http://ash-scott.deviantart.com/#/d2rihzq
  5. Photo

    Ash Scott 

    19 Jun 2010 - 23:15
    hold on then m8....lemme get a new one
  6. Photo

    JGPalmos 

    19 Jun 2010 - 19:48
    hey i couldnt see your template your made, link was broken
  7. Photo

    Ben 

    25 May 2010 - 16:54
    Welcome to the forum Ash Scott Thank you for taking the time to join :)
Page 1 of 1