Monday, May 29, 2023

How to Update Modern Events Calendar bundled with X | The Theme

The entries below in the theme.co forums describe solutions to the problem of not being able to update Modern Events Calendar bundled with X Theme. Deleting the existing Modern Events Calendar and reinstalling it from a new version of X | The Theme worked for me. https://theme.co/forum/t/update-modern-event-calendar-update-no-available/80805

X | The Theme changelog

The X Theme changelog can be found in the Themeco documentation at the url below. There are currently changelongs for X Pro Cornerstone https://theme.co/docs#changelog

X Theme Pro: How to display post tags at the end of posts

I am using the X Theme Pro Ethos Stack on my X Theme Pro development site, and tags I entered were not displaying on posts. Entering the following code on the X Theme Pro child theme’s functions.php file solved the problem for me. // Add tags after the content for Ethos // ============================================================================= function add_ethos_post_tags(){ […]

X | The Theme: How to add social sharing buttons after the post content

Adding the following code to the x-theme child theme’s function.php file worked for me. // Add Social Sharing after the single post content // ============================================================================= function x_add_social_sharing ( $content ) { if ( is_singular(‘post’) ) { echo do_shortcode(‘[share title=”Share this Post” facebook=”true” twitter=”true” linkedin=”true” pinterest=”true” reddit=”true” email=”true”]’); } } add_action(‘x_before_the_content_end’, ‘x_add_social_sharing’); The code above is […]