Support

Home Forums Event Espresso Premium registration link not work with upgrade to 3.1.29.1

registration link not work with upgrade to 3.1.29.1

Posted: December 27, 2012 at 4:30 pm

Viewing 16 reply threads


eric hawkins

December 27, 2012 at 4:30 pm

I upgraded to 3.1.29.1 and now when you submit registration it kicks back to the registration page instead of checkout


Josh

  • Support Staff

December 27, 2012 at 4:33 pm

Hi Eric,

There may be some code from the theme that is altering the [ESPRESSO_EVENTS] shortcode. Can you try wrapping the shortcode on the /register page with the [raw] short tag?

It will look like this:
[raw][ESPRESSO_EVENTS][/raw]


eric hawkins

December 27, 2012 at 4:47 pm

Still no good. It has this on the page under the shortcode  


eric hawkins

December 27, 2012 at 4:49 pm

It has this ( ) under shortcode


eric hawkins

December 27, 2012 at 4:50 pm

  under short code. sorry i guess it would not paste. i typed it this time


eric hawkins

December 27, 2012 at 5:04 pm

not sure why that doe not submit, but it still does not work. when i hit submit on the registration page it goes back to registation page minus the fill in form


Dean

December 28, 2012 at 4:20 am

Hi Eric,

Have you checked to see if you have any old templates in your wp-content/uploads/espresso/templates directory?

You can check this by looking in the Template Settings > Developer section. There is a button there that will also rename the directory in order for the latest version to use the default templates.

Renaming the folder will stop any modifications from working until they can be moved over to the new template files.


eric hawkins

December 28, 2012 at 4:53 am

I do not seem to have anything in that directory. It just list a server name and port


Dean

December 28, 2012 at 5:14 am

Sorry, not sure I follow you.

When you go to the Event Espresso Template Settings and scroll to the bottom do you see something like 1) http://d.pr/i/wc8H or more like 2) http://d.pr/i/yoUb


eric hawkins

December 28, 2012 at 5:28 am

it looks empty for sure it says last modified in May


eric hawkins

December 28, 2012 at 5:34 am

I found the templates in wp-content /event- expresso. These are the ones from the upgrade on the 21st. should I move him to another spo


Dean

December 28, 2012 at 5:37 am

Hi,

If the files are in wp-content/uploads/espresso/templates, then yes please rename the templates directory.


eric hawkins

December 28, 2012 at 6:19 am

Sorry, This directory is empty


Dean

December 28, 2012 at 6:47 am

Is it possible to get your login details in order to look into this?

If so, please send them via https://eventespresso.com/contact/

Choose the “I am sending login info as requested” option and fill out the form

Please make sure you add the forum post link to aid us in case another team member picks up the email.

NOTE: login details need to be Admin level.


Josh

  • Support Staff

December 28, 2012 at 7:38 am

Hi Eric,

There is a conflict with the current version of Jetpack (version 2.0.4). The previous version (2.0.2) of Jetpack will not break the registration process.

You can revert back to version 2.0.2 of Jetpack by downloading it from here:

http://wordpress.org/extend/plugins/jetpack/developers/

Before installing, you’ll need to deactivate and delete version 2.0.4 of Jetpack.

Alternatively, if you’d prefer to stay on versioin 2.0.4 and if you’re comfortable with editing PHP files, you can change one line of code in class.jetpack-post-images.php in the Jetpack plugin. Line 254 will read:

$html = apply_filters( 'the_content', $html->post_content );

replace with:

$html = $html->post_content;


eric hawkins

December 28, 2012 at 8:31 am

That line 254 was slightly different it reads
$html = apply_filters( ‘the_content’, $html->post_content );
I changed it anyhow and killed the plug in. I am just going to install the older version


Josh

  • Support Staff

December 29, 2012 at 12:46 pm

Hi Eric,

We are continuing to look into the issue with the latest version of Jetpack and have an update:

The conflict between Event Espresso and Jetpack 2.0.4 will only manifest itself if both the Publicize and Sharing modules are active. When either of these modules are active, opengraph tags get added to the head of the document, which seems to be causing the trouble.
These modules can be deactivated on the main Jetpack settings page by clicking the Learn more button, then clicking the Deactivate button that appears to the right of the Learn more button.
If you’d prefer to use either of these modules, you can disable the opengraph tags by adding a function like this to a custom functionality plugin -or- if you have Event Espresso’s custom files add-on installed, you can add it to the custom_functions.php file:

function disable_jetpack_og_on_regpage() {
    if ( is_page(20) ) {
        remove_action( 'wp_head', 'jetpack_og_tags' );
    }
}
add_action( 'template_redirect', 'disable_jetpack_og_on_regpage' );

In the above code example the main registration page, as set in Event Espresso>General Settings, has the ID of 20. You may need to swap out the page ID value with the one that’s set on your site.

Viewing 16 reply threads

The support post ‘registration link not work with upgrade to 3.1.29.1’ 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.

Event Espresso