'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Joe Trohman

Joseph Mark "Joe" Trohman (born September 1, 1984) is an American musician, songwriter, composer, singer, and record producer. He is best known as the lead guitarist and backing vocalist of the American rock band Fall Out Boy, as well as the lead and rhythm guitarist for heavy metal supergroup The Damned Things. Fall Out Boy began as Trohman and Pete Wentz's side project from the hardcore punk scene they were involved with, and the band has scored three number one albums on the US Billboard 200.

With Damned Things on hiatus, Trohman and Josh Newton formed With Knives and the duo released their debut EP "Schadenfreude" in April 2012 with Trohman on lead vocals and guitar. It was released through Son Of Man, the label he co-owns with Newton. With Knives played a few dates in the US before becoming quiet and announced the project was on a break. On February 4, 2013, Fall Out Boy announced a comeback with a new album, tour and single.

Fall Out Boy

Fall Out Boy is an American rock band formed in Wilmette, Illinois, a suburb of Chicago, in 2001. The band consists of vocalist and guitarist Patrick Stump, bassist Pete Wentz, guitarist Joe Trohman, and drummer Andy Hurley. The band originated from Chicago's hardcore punk scene, with which Wentz was heavily involved. The group was formed by Wentz and Trohman as a pop punk side project of their respective hardcore bands, and Stump joined shortly thereafter. The group went through a succession of drummers before landing Hurley and recording their debut album, Take This to Your Grave (2003). The album became an underground success and helped the band gain a dedicated fanbase through heavy touring, as well as some moderate commercial success.

Podcasts:

  • Prime Playlist: Fall Out Boy's Joe Trohman on falling into fame

    ABC News' Phil Lipof sat down with Fall Out Boy lead guitarist and backing vocalist Joe Trohman about his family hardships, personal battles and growth. #abcnews #joetrohman #falloutboy

    published: 14 Sep 2022
  • joe trohman singing compilation || fall out boy

    i do not own any of the clips shown in this video, just wanted to show this boye singing.

    published: 20 Jan 2018
  • Pete Wentz, Joe Trohman talk about Patrick Stump's voice

    A video clip of a radio interview of Pete and Joe talking about Patrick's voice. Source: https://twitter.com/dearrgrvity/status/1674825829887639553?s=46&t=6sffa225F5ytaB3JvVazoA

    published: 30 Jun 2023
  • Fall Out Boy's Joe Trohman on his Signature Squier Tele | Fender

    "I think the guitar is a cooler guitar than I am a person," jokes Fall Out Boy guitarist Joe Trohman in this video interview about his Squier signature Telecaster. Find out why he is so pleased with this instrument, and how it has become his go-to guitar during the band's recent tour in support of new album "Save Rock & Roll." SUBSCRIBE NOW: http://bit.ly/FenderSubscribe SHOP NOW: bit.ly/ShopFender About Fender: Fender Musical Instruments Corporation is the world’s foremost manufacturer of guitars, basses, amplifiers and related equipment. With an illustrious history dating back to 1946, Fender has touched and transformed music worldwide and in nearly every genre: rock ‘n’ roll, country and western, jazz, rhythm and blues, and many others. Connect with Fender: Vi...

    published: 22 Aug 2013
  • Joe Trohman's Most Memorable Guitars | MTV Cribs

    Fall Out Boy's Joe Trohman takes us through his modern home in Chicago, Illinois. He shows us his moss-covered walls, vinyl record collection, quirky art, fancy appliances, backyard sanctuary, lushes ‘Barbie-hair' rug, favourite guitars, Star Wars toys and his most prized possession. Subscribe to MTV Rewind for more throwback videos from your favourite show! https://www.youtube.com/channel/UCjnfXh2I3u0GAAHHrPe_PKw/featured

    published: 23 Aug 2019
  • Fall Out Boy Rig Rundown with Patrick Stump, Joe Trohman & Pete Wentz Guitar & Bass Gear Tour

    Andy Hurley Drum Rundown: https://www.youtube.com/watch?v=XLCiHZl7C4o Full Rig Info: https://www.premierguitar.com/videos/rig-rundown/fall-out-boy-2024 Back in March, Chicago’s Fall Out Boy blasted through Birmingham, Alabama, in the middle of a year-long tour supporting their 2023 release, So Much (for) Stardust. It was their first solo headline tour since 2018, and they brought along loads of new noisemakers for the occasion. Frontman Patrick Stump has moved on from his trademark Gretsch electrics, guitarist Joe Trohman scored an Explorer that may or may not remind us of a certain purple McDonald’s character, and Pete Wentz packs some basses that bring both ice and fire to the gig. And while tube amps still reign supreme in the studio, including the recording of So Much (for) Stardust,...

    published: 17 Jul 2024
  • Fallout Boy’s Joe Trohman Looks Back at Past Struggles With Mental Illness & Addiction

    Co-founder of the iconic alternative band Fall Out Boy and guitarist extraordinaire Joe Trohman stops by our episode titled, “Stop the Shaming.” Joe shines a light on how he overcame his battles with drug addiction and depression in his memoir, “None of This Rocks.” He continues the conversation with Tamron Hall explaining that many of his adulthood struggles started when he was a child. He’s now using his platform to break the stigmas around addiction and mental health, with the help of the #TamFam. Subscribe to Tamron Hall Show: http://bit.ly/2QAZSuD FIND YOUR TIME AND CHANNEL: https://www.tamronhallshow.com [Put in your zip code in the top portion of the website] FOLLOW US: Instagram: https://www.instagram.com/TamronHallS... Twitter: https://twitter.com/TamronHallShow Facebook: htt...

    published: 07 Oct 2022
  • learn how to play fob songs from Joe

    fun:)

    published: 08 May 2007
  • Joe Trohman from Fall Out Bo

    Joe Trohman from Fall Out Boy and The Damned Things on Record Store Day...

    published: 18 Apr 2011
  • Joe Trohman solo Beat it Fall out Boy

    Joe Trohman solo guitar Beat it Fall out Boy.

    published: 28 Mar 2021
Prime Playlist: Fall Out Boy's Joe Trohman on falling into fame
7:18

Prime Playlist: Fall Out Boy's Joe Trohman on falling into fame

  • Order:
  • Duration: 7:18
  • Uploaded Date: 14 Sep 2022
  • views: 49604
ABC News' Phil Lipof sat down with Fall Out Boy lead guitarist and backing vocalist Joe Trohman about his family hardships, personal battles and growth. #abcnews #joetrohman #falloutboy
https://wn.com/Prime_Playlist_Fall_Out_Boy's_Joe_Trohman_On_Falling_Into_Fame
joe trohman singing compilation || fall out boy
1:23

joe trohman singing compilation || fall out boy

  • Order:
  • Duration: 1:23
  • Uploaded Date: 20 Jan 2018
  • views: 17545
i do not own any of the clips shown in this video, just wanted to show this boye singing.
https://wn.com/Joe_Trohman_Singing_Compilation_||_Fall_Out_Boy
Pete Wentz, Joe Trohman talk about Patrick Stump's voice
0:28

Pete Wentz, Joe Trohman talk about Patrick Stump's voice

  • Order:
  • Duration: 0:28
  • Uploaded Date: 30 Jun 2023
  • views: 2465
A video clip of a radio interview of Pete and Joe talking about Patrick's voice. Source: https://twitter.com/dearrgrvity/status/1674825829887639553?s=46&t=6sffa225F5ytaB3JvVazoA
https://wn.com/Pete_Wentz,_Joe_Trohman_Talk_About_Patrick_Stump's_Voice
Fall Out Boy's Joe Trohman on his Signature Squier Tele | Fender
4:03

Fall Out Boy's Joe Trohman on his Signature Squier Tele | Fender

  • Order:
  • Duration: 4:03
  • Uploaded Date: 22 Aug 2013
  • views: 125989
"I think the guitar is a cooler guitar than I am a person," jokes Fall Out Boy guitarist Joe Trohman in this video interview about his Squier signature Telecaster. Find out why he is so pleased with this instrument, and how it has become his go-to guitar during the band's recent tour in support of new album "Save Rock & Roll." SUBSCRIBE NOW: http://bit.ly/FenderSubscribe SHOP NOW: bit.ly/ShopFender About Fender: Fender Musical Instruments Corporation is the world’s foremost manufacturer of guitars, basses, amplifiers and related equipment. With an illustrious history dating back to 1946, Fender has touched and transformed music worldwide and in nearly every genre: rock ‘n’ roll, country and western, jazz, rhythm and blues, and many others. Connect with Fender: Visit FENDER WEBSITE: https://www.fender.com Like FENDER on FACEBOOK: https://www.facebook.com/fender Follow FENDER on TWITTER: https://twitter.com/fender Follow FENDER on INSTAGRAM: https://www.instagram.com/fender Follow FENDER on TUMBLR: http://officialfender.tumblr.com Follow FENDER on SNAPCHAT: https://www.snapchat.com/add/fender Fall Out Boy's Joe Trohman on his Signature Squier Tele | Fender https://www.youtube.com/fender
https://wn.com/Fall_Out_Boy's_Joe_Trohman_On_His_Signature_Squier_Tele_|_Fender
Joe Trohman's Most Memorable Guitars | MTV Cribs
5:25

Joe Trohman's Most Memorable Guitars | MTV Cribs

  • Order:
  • Duration: 5:25
  • Uploaded Date: 23 Aug 2019
  • views: 6810
Fall Out Boy's Joe Trohman takes us through his modern home in Chicago, Illinois. He shows us his moss-covered walls, vinyl record collection, quirky art, fancy appliances, backyard sanctuary, lushes ‘Barbie-hair' rug, favourite guitars, Star Wars toys and his most prized possession. Subscribe to MTV Rewind for more throwback videos from your favourite show! https://www.youtube.com/channel/UCjnfXh2I3u0GAAHHrPe_PKw/featured
https://wn.com/Joe_Trohman's_Most_Memorable_Guitars_|_Mtv_Cribs
Fall Out Boy Rig Rundown with Patrick Stump, Joe Trohman & Pete Wentz Guitar & Bass Gear Tour
52:11

Fall Out Boy Rig Rundown with Patrick Stump, Joe Trohman & Pete Wentz Guitar & Bass Gear Tour

  • Order:
  • Duration: 52:11
  • Uploaded Date: 17 Jul 2024
  • views: 97890
Andy Hurley Drum Rundown: https://www.youtube.com/watch?v=XLCiHZl7C4o Full Rig Info: https://www.premierguitar.com/videos/rig-rundown/fall-out-boy-2024 Back in March, Chicago’s Fall Out Boy blasted through Birmingham, Alabama, in the middle of a year-long tour supporting their 2023 release, So Much (for) Stardust. It was their first solo headline tour since 2018, and they brought along loads of new noisemakers for the occasion. Frontman Patrick Stump has moved on from his trademark Gretsch electrics, guitarist Joe Trohman scored an Explorer that may or may not remind us of a certain purple McDonald’s character, and Pete Wentz packs some basses that bring both ice and fire to the gig. And while tube amps still reign supreme in the studio, including the recording of So Much (for) Stardust, the band goes digital and speaker-free on the road. Shop Fall Out Boy's Gear: DiMarzio Super Distortion Humbucker - https://sweetwater.sjv.io/5g6D03 Seymour Duncan Little ’59 (neck) - https://sweetwater.sjv.io/k0e123 Seymour Duncan Dimebucker (bridge) - https://sweetwater.sjv.io/eK95ZX Sterling by Music Man Pete Wentz StingRay - https://sweetwater.sjv.io/anq9Go Neural DSP Quad Cortex - https://sweetwater.sjv.io/5gmox9 Radial JX44 - https://sweetwater.sjv.io/anmJnQ Line 6 HX Stomp - https://sweetwater.sjv.io/3e3z7n Andy Hurley Drum Rundown: https://www.youtube.com/watch?v=XLCiHZl7C4o Full Rig Info: https://www.premierguitar.com/videos/rig-rundown/fall-out-boy-2024 Subscribe to PG's Channel: http://bit.ly/SubscribePGYouTube Win Guitar Gear: https://bit.ly/GiveawaysPG Don't Miss a Rundown: http://bit.ly/RIgRundownENL Merch & Magazines: https://shop.premierguitar.com PG's Facebook: https://facebook.com/premierguitar PG's Instagram: https://www.instagram.com/premierguitar/ PG's Twitter: https://twitter.com/premierguitar PG's Threads: https://threads.net/@premierguitar PG's TikTok: https://www.tiktok.com/@premierguitar [Brought to you by D’Addario: https://ddar.io/wykyk-rr] 0:00 - D'Addario Strings 0:15 - Chris Kies Intro 1:30 - Patrick Stump Intro 1:57 - Patrick Stump's Vintage Guild S-60D Guitars 9:08 - Patrick Stump on Moving to Neural DSP Quad Cortex 11:19 - Patrick Stump on TV Scoring vs Fall Out Boy 13:10 - Patrick Stump on Quiet Stages 19:44 - Patrick Stump's Halo Guitar 21:48 - Patrick Stump's Martin X Series acoustic 24:13 - D'Addario & Rig Rundown Team 24:37 - Joe Trohman's Zemaitis The Portrait Hisashi Signature 27:20 - Joe Trohman on Switching to Digital Modelers 30:02 - Joe Trohman on In-Ear Monitors & No Speakers 31:16 - Joe Trohman on Playing Surprise Song Each Night 35:52 - Joe Trohman's ’80s Gibson Custom Shop Explorer 40:33 - Joe Trohman's Squier Telecaster Signature 43:10 - Pete Wentz's Sterling By Music Man StingRay Basses 46:40 - Pete Wentz's Flamethrower StingRay Bass 49:48 - Pete Wentz's Line 6 HX Stomps 51:26 - Yvette Young & D'Addario Strings © Copyright Gearhead Communications LLC, 2024 #guitar #rigrundown #falloutboy #guitarist #guitarplayer #guitargear
https://wn.com/Fall_Out_Boy_Rig_Rundown_With_Patrick_Stump,_Joe_Trohman_Pete_Wentz_Guitar_Bass_Gear_Tour
Fallout Boy’s Joe Trohman Looks Back at Past Struggles With Mental Illness & Addiction
12:23

Fallout Boy’s Joe Trohman Looks Back at Past Struggles With Mental Illness & Addiction

  • Order:
  • Duration: 12:23
  • Uploaded Date: 07 Oct 2022
  • views: 15707
Co-founder of the iconic alternative band Fall Out Boy and guitarist extraordinaire Joe Trohman stops by our episode titled, “Stop the Shaming.” Joe shines a light on how he overcame his battles with drug addiction and depression in his memoir, “None of This Rocks.” He continues the conversation with Tamron Hall explaining that many of his adulthood struggles started when he was a child. He’s now using his platform to break the stigmas around addiction and mental health, with the help of the #TamFam. Subscribe to Tamron Hall Show: http://bit.ly/2QAZSuD FIND YOUR TIME AND CHANNEL: https://www.tamronhallshow.com [Put in your zip code in the top portion of the website] FOLLOW US: Instagram: https://www.instagram.com/TamronHallS... Twitter: https://twitter.com/TamronHallShow Facebook: https://www.facebook.com/TamronHall/ Pinterest: https://www.pinterest.com/tamronhalls... JOIN OUR SHOW: https://www.tamronhallshow.com/be-on-... From the deeply moving to the purely fun, “Tamron Hall” is a daily destination for all things topical and a platform for viewers to connect with the people who are shaping our world through meaningful, engaging, and entertaining conversations. As a new mom, a newlywed, and a survivor who is proving you can accomplish anything at any age, Tamron Hall brings a refreshing, relatable, unpredictable, and unstoppable voice to television. Broadcast from New York City featuring a dynamic mix of live and taped shows, “Tamron Hall” airs across the country in national syndication.
https://wn.com/Fallout_Boy’S_Joe_Trohman_Looks_Back_At_Past_Struggles_With_Mental_Illness_Addiction
learn how to play fob songs from Joe
3:19

learn how to play fob songs from Joe

  • Order:
  • Duration: 3:19
  • Uploaded Date: 08 May 2007
  • views: 54185
fun:)
https://wn.com/Learn_How_To_Play_Fob_Songs_From_Joe
Joe Trohman from Fall Out Bo
0:40

Joe Trohman from Fall Out Bo

  • Order:
  • Duration: 0:40
  • Uploaded Date: 18 Apr 2011
  • views: 2601
Joe Trohman from Fall Out Boy and The Damned Things on Record Store Day...
https://wn.com/Joe_Trohman_From_Fall_Out_Bo
Joe Trohman solo Beat it Fall out Boy
0:41

Joe Trohman solo Beat it Fall out Boy

  • Order:
  • Duration: 0:41
  • Uploaded Date: 28 Mar 2021
  • views: 1097
Joe Trohman solo guitar Beat it Fall out Boy.
https://wn.com/Joe_Trohman_Solo_Beat_It_Fall_Out_Boy
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

Prime Playlist: Fall Out Boy's Joe Trohman on falling into fame

ABC News' Phil Lipof sat down with Fall Out Boy lead guitarist and backing vocalist Joe Trohman about his family hardships, personal battles and growth. #abcnews #joetrohman #falloutboy
7:18
Prime Playlist: Fall Out Boy's Joe Trohman on falling into fame
ABC News' Phil Lipof sat down with Fall Out Boy lead guitarist and backing vocalist Joe Tr...
published: 14 Sep 2022
Play in Full Screen
1:23
joe trohman singing compilation || fall out boy
i do not own any of the clips shown in this video, just wanted to show this boye singing.
published: 20 Jan 2018
Play in Full Screen
0:28
Pete Wentz, Joe Trohman talk about Patrick Stump's voice
A video clip of a radio interview of Pete and Joe talking about Patrick's voice. Source: ...
published: 30 Jun 2023
Play in Full Screen
4:03
Fall Out Boy's Joe Trohman on his Signature Squier Tele | Fender
"I think the guitar is a cooler guitar than I am a person," jokes Fall Out Boy guitarist J...
published: 22 Aug 2013
Play in Full Screen
5:25
Joe Trohman's Most Memorable Guitars | MTV Cribs
Fall Out Boy's Joe Trohman takes us through his modern home in Chicago, Illinois. He shows...
published: 23 Aug 2019
Play in Full Screen
52:11
Fall Out Boy Rig Rundown with Patrick Stump, Joe Trohman & Pete Wentz Guitar & Bass Gear Tour
Andy Hurley Drum Rundown: https://www.youtube.com/watch?v=XLCiHZl7C4o Full Rig Info: https...
published: 17 Jul 2024
Play in Full Screen
12:23
Fallout Boy’s Joe Trohman Looks Back at Past Struggles With Mental Illness & Addiction
Co-founder of the iconic alternative band Fall Out Boy and guitarist extraordinaire Joe Tr...
published: 07 Oct 2022
Play in Full Screen
3:19
learn how to play fob songs from Joe
fun:)
published: 08 May 2007
Play in Full Screen
0:40
Joe Trohman from Fall Out Bo
Joe Trohman from Fall Out Boy and The Damned Things on Record Store Day...
published: 18 Apr 2011
Play in Full Screen
0:41
Joe Trohman solo Beat it Fall out Boy
Joe Trohman solo guitar Beat it Fall out Boy.
published: 28 Mar 2021
Play in Full Screen

Joe Trohman

Joseph Mark "Joe" Trohman (born September 1, 1984) is an American musician, songwriter, composer, singer, and record producer. He is best known as the lead guitarist and backing vocalist of the American rock band Fall Out Boy, as well as the lead and rhythm guitarist for heavy metal supergroup The Damned Things. Fall Out Boy began as Trohman and Pete Wentz's side project from the hardcore punk scene they were involved with, and the band has scored three number one albums on the US Billboard 200.

With Damned Things on hiatus, Trohman and Josh Newton formed With Knives and the duo released their debut EP "Schadenfreude" in April 2012 with Trohman on lead vocals and guitar. It was released through Son Of Man, the label he co-owns with Newton. With Knives played a few dates in the US before becoming quiet and announced the project was on a break. On February 4, 2013, Fall Out Boy announced a comeback with a new album, tour and single.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×