I can embed my ticket selector to a wordpress page which is great!! Can I change the size of the font that displays? It is too big. I can resize the frame but I want to resize the content.
I can insert the iframe into the page and the ticket selector shows up. I am trying to figure out how to present it more efficiently and professionally.
Here is how it looks in our pages with the short_code.
Hi Lorenzo,
I want to match the font size and style to the page I am embedding it to.
ie http://www.theia.gallery/photo-shoot-friday
I want the embed text to match the page text…
Three Hours of Creative Shooting — THEIA Style!
Sets | Models | Lights
You can remove the readymade styles that are included with the embedded Ticket selector with this code:
add_filter( 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', 'my_custom_ticket_selector_css' );
function my_custom_ticket_selector_css() {
return array(
/* optionally include your custom stylesheet URL here */
TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.css?ver=' . EVENT_ESPRESSO_VERSION,
includes_url( 'css/dashicons.min.css?ver=' . $GLOBALS['wp_version'] ),
EE_GLOBAL_ASSETS_URL . 'css/espresso_default.css?ver=' . EVENT_ESPRESSO_VERSION
);
}
You can add the above to a functions plugin or into your WordPress theme’s functions.php file. You can also add an additional URL, such as the website’s stylesheet URL to include its styles into the iframe.
Viewing 5 reply threads
The support post ‘Embed Ticket Selector’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.