Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #371687

    help me to get enfold sharing and wordpress Publicize
    to “the event calendar” event post and as well as while writing on event post.

    #371840

    Hi flyme!

    Add this to the bottom of your functions.php file.

    add_action( 'tribe_events_single_event_after_the_content', 'enfold_customization_events_social' );
    function enfold_customization_events_social() {
    	echo '</div>';
    	echo avia_social_share_links(array(), false);
    }

    I’m not sure what you mean by “publicize wordpress” though. Is that a plugin your using?

    Cheers!
    Elliott

    #372212

    1. not working properly all single event get miss aligned. any other way to add with disturbing current format of the event.
    2. publicize comes with jetpack in WordPress. that’s also used for social sharing

    #372239

    Hi!

    1. Add it back in so we can see what it’s doing.

    2. Is there some code it gives you to use?

    Regards,
    Elliott

    #691024

    Small update on this ancient topic.

    If you change the code for the social sharing it looks better. Not below the content, but below the google map:

    add_action( ‘tribe_events_single_event_after_the_meta’, ‘enfold_customization_events_social’ );
    function enfold_customization_events_social() {
    echo ‘</div>’;
    echo avia_social_share_links(array(), false);
    }

    I had to change the CSS a little too:

    
    .av-share-box {
        height: 140px;
    }
    #692584

    Hi,

    thanks for sharing this with us @Pixelbits.

    Best regards,
    Andy

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘enfold sharing and wordpress Publicize problem "the event calendar" single event’ is closed to new replies.