ThemeForest

Posts by Smuliii

81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

So now when I’m finally Elite, I think it’s time to get an iPad. I’m just not sure should I get an used 1st gen (200€) or 2nd gen (350€).

It would be used just for testing my themes and general web browsing + email, so is there any benefit to pay almost double to get newer version? I’m not interested in the cameras or its dimensions, since I’m not going to carry it around.

Any help is appreciated, thanks!

1 month ago in thread Which iPad for testing purposes only?
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

If you want to detect if user is using either IE7 or IE8 , you could try this one:

function detect_ie($ie7_check = true, $ie8_check = true) {
    $ie7 = ($ie7_check == true) ? strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 7.0') : false;
    $ie8 = ($ie8_check == true) ? strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 8.0') : false;
    if ($ie7 !== false || $ie8 !== false) {
        return true;
    } else {
        return false;
    }
}

// IE7 & IE8
if( detect_ie() ) { ... }

// IE7
if( detect_ie(true, false) ) { ... }

// IE8
if( detect_ie(false) ) { ... }
7 months ago in thread Adding scripts to WordPress conditionally
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

You could use Wordpress own global variable called $is_IE:

function yourtheme_register_scripts() {
    if(!is_admin()) {
        wp_register_script('selectivizr', get_template_directory_uri().'/js/selectivizr-min.js', array('jquery'), false, true);
    }
}
add_action('init', 'yourtheme_register_scripts');

function yourtheme_enqueue_scripts() {
    if(!is_admin()) {
        // For Internet Explorer
        global $is_IE;
        if($is_IE) {
            wp_enqueue_script('selectivizr');
        }
    }
}
add_action('wp_print_scripts', 'yourtheme_enqueue_scripts');
7 months ago in thread Adding scripts to WordPress conditionally
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

Here’s the latest:

8 months ago via ThemeForest | in thread (Locked) Envato Yearbook Signature :)
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

My latest theme has 16 screenshots + preview image so I think it’s not that precise. :P

8 months ago in thread "You can have up to 10 screenshots of the item" - is this still true?
81 posts
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Finland
  • Referred between 10 and 49 users
Smuliii says

Usually 8-10 hours, in weekends even 12+.

8 months ago via ThemeForest | in thread How much do you sleep ?
by
by
by
by
by