Thank you for the link, it helps too see the issue more clearly.
There’s a couple of issues here. The ESPRESSSO_CART_LINK uses the event id (interger) and not the event identifier (string)
Currently you are using the Identifier for the event_id parameter, this needs to be the id itself. You can find this within the event overview (Event Espresso -> Event Overview) find your event and you’ll see the id number within the ID column use that in the shortcode you provided above.
Secondly there is some JavaScrip loading within the page that is not using jQuery noConflict() which is causes errors. http://d.pr/i/y5Cn
The code loads within the header http://d.pr/i/47hl (likely the header.php template files) but also the footer http://d.pr/i/yuwv (likely footer.php)
One once instance of the script should load and should be correctly loaded to avoid conflicts, a little more info is av available HERE
Basically you need to change
$(function(){
to be
jQuery(document).ready(function($){
If this is not your own code I would recommend contacting the theme developer with this information to have them fix this.
Hope that helps 🙂
Viewing 4 reply threads
The support post ‘Shopping Cart Link in Header Navigation’ 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.