Home › Forums › Calendar Products › Events Calendar PRO › Publicize showing on event screen but are not applied to the event if changed
- This topic has 13 replies, 3 voices, and was last updated 8 years, 2 months ago by
Douglas.
-
AuthorPosts
-
December 2, 2015 at 8:19 pm #1034285
Douglas
Participantrunning 4.0 and importing Facebook events manually to pending before publishing.
added the following to my themes function.php as instructed here and on the jetpack forum for custom post types:
add_action(‘init’, ‘my_custom_init’);
function my_custom_init() {
add_post_type_support( ‘tribe_events’, ‘shortlinks’ );
add_post_type_support( ‘tribe_events’, ‘publicize’ );
}everything appears in the event editor but no changes i make to the selections or text to be used get applied and not matter what I enter or change they publicize the standard unchanged selections and the event body instead of the value preloaded in the text to use field.. if I make changes and then hide the options. there is no save button. they are still changed when I display them again but not if I save the event as pending or publish
any help would be greatly appreciated. I have posted in the Jetpack support area as well.. Thanks
December 2, 2015 at 8:25 pm #1034286Douglas
ParticipantUpdate
i have also tried with a non imported event sane problemsaves and updates correctly for a normal post instead of an event
-
This reply was modified 10 years, 5 months ago by
Douglas.
December 3, 2015 at 9:55 am #1034803Nico
MemberHey Douglas,
Thanks for reaching out to us, and sorry to hear about this issue. I’ll try to help you out getting this sorted.
I’m a bit confused by your description of the issue, so I’ll try to re-cap a bit:
- There’s a problem with Events and Publicize feature of Jetpack.
- This seems to be introduced in version 4.0.
- It happens to Facebook Imported events and ‘new’ events also.
- Not sure about the actual issue with the modified text don’t get published. Can you elaborate a bit more or provide a screenshot?
Let’s begin by basic troubleshooting of the issue: Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
Please confirm if the above description of the issue is correct and let me know if testing for conflicts sheds some light over this,
Best,
NicoDecember 3, 2015 at 12:47 pm #1035000Douglas
ParticipantThis reply is private.
December 3, 2015 at 1:10 pm #1035014Douglas
Participanthttps://www.dropbox.com/s/f2ycdxoo2v7hded/publicize_before.jpg
This is what is loaded for a post or event when opened in the editor. If you save or publish after changing for a post any of the selections or values when you open the post the changes are there and publicizes with changes.
However when you do it with an event the defaults remain and changes are lost. It will also publicize with the body text instead of what is in the description field.
-
This reply was modified 10 years, 5 months ago by
Douglas. Reason: image
December 4, 2015 at 1:44 pm #1035757Nico
MemberHey Douglas,
Thanks for clarifying this! I think I follow you now. I will give this a try tomorrow locally cause I’m not sure at all what might be affecting how this works.
If you can also follow our Testing for conflicts guide it will be great to discard the possibility of this being a conflict with other plugin or the site’s theme itself.
Have a great weekend,
Best,
NicoDecember 8, 2015 at 6:36 pm #1037915Nico
MemberThis reply is private.
December 9, 2015 at 1:06 pm #1038447Nico
MemberDouglas,
I could check it out and seem you are right, the body of the event get’s posted even if I input a custom message in the ‘publicize’ field, and also it doesn’t get saved as you show in the screenshot. Can you confirm this is the same you are seeing? I’ve read your issue description a couple of times but I’m not sure if I’m missing anything else.
Have you heard back from JetPack support?
Please let me know about it,
Best,
NicoDecember 9, 2015 at 1:48 pm #1038471Douglas
ParticipantCorrect… Something about the processing or setup of the custom post type tribe_event is not allowing the tool to work the same as the default post type. [email protected] Has offered to explain anything that you have questions about the plugin and how it works.
Thanks Nico for your help.
December 11, 2015 at 4:15 am #1039371Nico
MemberThanks for confirming this! I’ve logged a new bug ticket in our system to address this, including all the information here and also your last message indicating the JetPack support offer.
Most probably next step will be to contact them and see what’s making this issue happen.
I’ll keep you posted on this,
Best,
NicoFebruary 18, 2016 at 8:32 am #1076116Support Droid
KeymasterThis topic has not been active for quite some time and will now be closed.
If you still need assistance please simply open a new topic (linking to this one if necessary)
and one of the team will be only too happy to help.January 25, 2018 at 1:38 pm #1436438Nico
MemberHi there,
Just wanted to share with you that a new maintenance release (for the Week of 7th January 2018) is out, including a fix for this issue :slightly_smiling_face:
The developer working on this suggested this snippet might work best for integration with The Events Calendar (as opposed to the JetPack custom post type snippet):
add_filter( 'tribe_events_register_event_type_args', 'tribe_events_register_event_type_args_update' );function tribe_events_register_event_type_args_update( $args ) {
$key = 'supports';
if ( empty( $args[ $key ] ) || ! is_array( $args[ $key ] ) ) {
$args[ $key ] = array();
}
$args[ $key ][] = 'publicize';
return $args;
}
Find out more about this release → https://theeventscalendar.com/maintenance-release-week-7-january-2018/
Please update the plugins and let us know if the fix works for your site,
Best,
NicoFebruary 16, 2018 at 8:36 am #1455418Support Droid
KeymasterHey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.
Thanks so much!
The Events Calendar Support Team -
This reply was modified 10 years, 5 months ago by
-
AuthorPosts
- The topic ‘Publicize showing on event screen but are not applied to the event if changed’ is closed to new replies.
