Filter the Event Title | Display Eventbrite Events

Example, adding Organizer Name to the front of Event Title. (Note this code snippet applies for…

Filter Music Promoter Age Restriction | Display Eventbrite Events

For Eventbrite music promoters only. Age restriction text is displayed unless it is set in Eventbrite…

Adjust Currency Symbols | Display Eventbrite Events

The Display Eventbrite plugin has a table that converts currency code to symbols. Sometime a user…

Allow Eventbrite Styles in Long Description | Display Eventbrite Events

Since version 5.3.4 the Display Eventbrite Plugin has been removing the inline styles Eventbrite add to…

Tweak Price Display (Appends Text) | Display Eventbrite Events

The Display Eventbrite plugin premium version can display prices. If you want to tweak to display…

Tweak Price Display (Adjusts the Prices) | Display Eventbrite Events

The Display Eventbrite plugin premium version can display prices. If you want to tweak to display…

Static Page

html, body { overflow-x:hidden }

Disable "Scheduled export e-mail of ... returned false when sending to ..." notice in Scheduled Exports

function custom_woo_ce_cron_export_email_wp_mail_failure_notice() { // Turn off the error notice return false; } add_filter( 'woo_ce_cron_export_email_wp_mail_failure_notice', 'custom_woo_ce_cron_export_email_wp_mail_failure_notice' );

<10

Switching between ftp_put and ftp_fput FTP upload methods in Store Exporter Deluxe

function custom_woo_ce_cron_export_ftp_switch() { // ftp_put or ftp_fput return 'ftp_fput'; } add_filter( 'woo_ce_cron_export_ftp_switch', 'custom_woo_ce_cron_export_ftp_switch' );

<10

Trigger a Scheduled Export via a WordPress Action

function custom_trigger_scheduled_export_url() { $secret_key = ( isset( $_GET['secret_key'] ) ? sanitize_text_field( $_GET['secret_key'] ) : false );…

<10

Change Arabic Currency symbol to the currency short code

example change د.إ to AED and all the Arabic currencies

1 60 61 62 63 64 92