Skip to content

Instantly share code, notes, and snippets.

@xniro
xniro / CSS Snippet
Created October 9, 2020 04:58
curefilm.com css snippet
.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;
}
@xniro
xniro / wp_text.php
Last active January 13, 2020 23:51
Change Text to Anything
<?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 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())