DGPT 2026 Elite Series Schedule Announced

0 comments

For Immediate Release:

DGPT Announces 2026 Elite Series Schedule

August 27,2025: The Disc Golf Pro Tour (DGPT) is excited to announce its 2026 Elite Series schedule alongside next year’s PDGA Pro Major schedule. The 2026 season will include eighteen Elite Series tournaments and an additional five PDGA Pro major events for a total of twenty-three stops between February and October next year. A limited number of discounted early bird VIP passes for U.S. events are on sale starting today at 2024 Disc Golf Pro Tour Schedule: Key Dates and Locations

The 2024 disc golf season is packed with exciting events for fans and players alike. Here’s a breakdown of key tournaments, including DGPT (Disc Golf Pro Tour) and PDGA (Professional Disc Golf Association) Pro Major events, with dates and locations:

June

June 4 – 7: Northwest Championship (Portland, OR) – DGPT+
June 18 – 21: European Disc Golf Festival (Tallinn, Estonia) – PDGA Pro Major
June 26 – 28: Swedish Open (Borås, Sweden) – DGPT

July

July 3 – 5: ale Open (Nol, Sweden) – DGPT
July 10 – 12: Heinola Open (Heinola, Finland) – DGPT
July 16 – 19: U.S. Women’s Disc Golf Championship (Salt Lake City, UT) – PDGA Pro Major
July 30 – August 2: Ledgestone open (Peoria, IL) – DGPT+

August

August 7 – 9: Discmania Challenge (Indianola, IA) – DGPT
August 14 – 16: Preserve Championship (Clearwater, MN) – DGPT
August 26 – 30: PDGA Pro World Championships (Milford, MI) – PDGA Pro Major

September

* September 4 – 6: LWS Open at Idlewild (Burlington, KY) – DGPT

New Early Season Stops In Louisiana & North Carolina

On August 20, the Tour announced that the season will begin again at the Supreme Flight Open (Brooksville, FL) before heading to Jefferson Parish, LA, for a brand new tournament: the Big easy Open.

Jefferson Parish is a part of the Greater New Orleans Area and will host the first-ever DGPT event in the state of Louisiana, thanks to a collaborative effort between the DGPT, Visit Jefferson Parish, and the New Orleans Disc Golf Club. competition will be held at Parc des Familles, a course designed and now being updated by the HouckDesign team. Learn more about this brand new event here: Louisiana Joins the Tour: the Big Easy Open Arrives in 2026.

After the Big Easy Open, the Tour will return to Charlotte, North Carolina, for three days of competition at Hornets Nest Disc Golf Course, which was home to the DGPT Championship from 2019 to 2021 and has hosted multiple PDGA World Championships. With previous Pro Tour layouts in the par 60-65 range at 9,000+ feet, Hornets Nest has a history of challenging the best, and will also host an off-season DGPT Exhibition event later this year at the DGPT Match Play championship.

supported by a thriving membership base and a strong leadership team with six years of experience in hosting DGPT competitions, the Charlotte Disc Golf Club will lead venue preparation efforts, course updates, and volunteer recruitment. The Queen City Classic will also be supported and promoted by Another Round, which is headquartered in Charlotte.

The Mid-south stretch

The DGPT is pleased to welcome the Jonesboro Open back to the Elite Series schedule for the 2026 season, serving as a connecting stop between the PDGA Champions Cup in Lynchburg, VA, and the Kansas City Open in Kansas City, MO, which returns to the Elite Series for the second year. In jonesboro, competition will take place at the Disc Side of Heaven, which has produced several close finishes and exciting playoffs.

The Music City Open, which has previously taken place during this stretch of the season, will take some time off from the Elite Series as the local organizing team works to establish a new long-term home for the tournament. Mill Ridge Park, which has been home to a temporary layout used each year for DGPT competition, will soon undergo several major development projects with construction that will directly impact the course area. Due to these impacts and a long-standing desire to find a more permanent home, the MCO team is pursuing an exciting venue development opportunity at nearby Ravenwood park in direct coordination with the Disc Golf Pro Tour.

Ravenwood Park is closer to downtown Nashville and features both wooded and open areas, with long rolling hills and several water features on site. The park has hosted professional competition before, featuring a temporary course used at Music City Open A-Tier competitions fr## 2026 Season Schedule Announced!

We are thrilled to announce the schedule for the 2026 Disc Golf Pro tour season! Get ready for another year of elite competition, incredible locations, and unforgettable moments.

Check out the full schedule below and start planning your trips to cheer on your favorite pros. We can’t wait to see you on the course!

[Image of 2026 Season Schedule – Graphic 1]

[Image of 2026 Season Schedule – Graphic 2]

Stay tuned for more details on each event, including course previews, player spotlights, and live coverage data. Follow us on social media and subscribe to our newsletter to stay up-to-date on all the latest news.

Let the countdown to the 2026 season begin!

Okay, here’s a breakdown and clarification of the provided JavaScript code snippet, along with a focus on its purpose, functionality, and how it relates to Facebook Pixel tracking. I will present this as a technical explanation, suitable for someone familiar with web development and digital marketing.I will not attempt to “rewrite” the code, as that wasn’t requested, but rather to explain it thoroughly.

Facebook Pixel Implementation: A Detailed Explanation

The code snippet implements the Facebook Pixel, a powerful tool used for tracking website visitor behavior and measuring the effectiveness of online advertising campaigns. here’s a breakdown of each section:

1. Pixel Configuration & Initialization

javascript
aepcpixel = {"pixelid":"159798815877899","user":{},"enableadvancedevents":"yes","firedelay":"0","canusesku":"yes"},
				aepcpixelargs = [],
				aepcextendargs = function( args ) {
					if ( typeof args === 'undefined' ) {
						args = {};
					}

					for(var key in aepcpixelargs)
						args[key] = aepcpixelargs[key];

					return args;
				};

aepcpixel: This object holds the core configuration settings for the Facebook Pixel.
pixelid: The unique identifier for the Facebook Pixel. This is crucial for associating website events with the correct Facebook ad account.(In this example, it’s “159798815877899”).
user: An object intended to hold user-specific information (e.g., email, phone number, etc.).Currently, it’s an empty object ({}). Passing user data to facebook Pixel allows for more advanced audience targeting and remarketing. Vital Note: Data privacy regulations (like GDPR and CCPA) must be carefully considered when sending user data to Facebook. consent is often required. enable
advancedevents: A flag indicating weather to collect additional event parameters. Set to "yes" in this case.
firedelay: Specifies a delay (in seconds) before the Pixel fires. Set to "0" here, meaning it fires immediately. A delay can sometiems be useful to ensure the page has fully loaded before tracking.
canusesku: A flag indicating whether SKU (Stock Keeping Unit) data can be used.Useful for e-commerce tracking. Set to "yes".
aepcpixelargs: An empty array. This array is used to store additional arguments that will be sent with Facebook Pixel events.
aepcextendargs: A function designed to merge additional arguments into the event data sent to Facebook. It takes an args object as input.If args is undefined, it initializes it as an empty object. Then, it iterates through the aepcpixelargs array and adds each key-value pair to the args object.This allows for a flexible way to add custom parameters to Pixel events.

2. Extending Event Arguments (Conditional)

javascript
			// extend args
			if ( 'yes' === aepcpixel.enableadvancedevents ) {
				aepcpixelargs.userAgent = navigator.userAgent;
				aepcpixelargs.language = navigator.language;

				if ( document.referrer.indexOf( document.domain ) < 0 ) {
					aepcpixelargs.referrer = document.referrer;
				}
			}

This section conditionally adds extra information to the aepcpixelargs array if aepcpixel.enableadvancedevents is set to "yes".

navigator.userAgent: The user agent string,which identifies the browser and operating system. Useful for understanding the user’s habitat.
navigator.language: The user’s preferred language.
document.referrer: The URL of the page the user came from. The code checks if the referrer is from the same domain as the current page. If it’s not,the referrer URL is added to aepcpixelargs. This prevents internal navigation from being recorded as a referrer.*3. Facebook Pixel Base Code (Standard Implementation

Related Posts

Leave a Comment