This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.single-tribe_events .fusion-content-widget-area .tribe-events-single-section-title, .single-tribe_events .fusion-content-widget-area .tribe-events-tickets-title, .single-tribe_events .fusion-content-widget-area .widget .widget-title { | |
font-size: 17px; | |
background-color: #901c27 !important; | |
color: #fff !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Changes the label "Tickets" to "Anything You Want". | |
*/ | |
add_filter( 'gettext', 'tribe_change_tickets_text', 20, 3 ); | |
function tribe_change_tickets_text( $translation, $custom_text, $domain ) { | |
$custom_text = array( | |
'Tickets' => 'Anything You Want', | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is the solution I found for the streak of launches | |
const baseLaunchURL = "https://api.spacexdata.com/v3/launches/"; | |
// Schedule API | |
// Get All Launch Data | |
const getAllLaunchInformation = () => { | |
return fetch(baseLaunchURL) | |
.then(response => response.json()) |