Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter epichman

    (@epichman)

    Thank you, I was able to get the template to work. Is there a way to put a background on the announcement page?

    Thread Starter epichman

    (@epichman)

    I have some problems getting the template set up. I dont know if I am reading the right forums. I cannot seem to get the “read more” pages to be centered. You mind helping me in the right direction?

    Thread Starter epichman

    (@epichman)

    Yes we did have that directory ‘timeline-express’. We deleted this timeline_express_container.php file that was in it and it fixed all of our problems. Everything works thank you so much! We just need to fix the alignment which we saw you have documentation for already. Thank you so much for your time!

    Thread Starter epichman

    (@epichman)

    Okay I switched to twenty sixteen theme and we seem to be having an issue with the timeline stacking on itself. But the heading problem goes away. it must be something with our theme which is why the headings are linking. How to I fix this stacking issue now?

    Thread Starter epichman

    (@epichman)

    We did not do anything extra; we installed your plugin and added content through the add new announcements. If anything was changed it was from editing the code your plugin provided. Which I deleted and reinstalled just in case we changed something that was important. I have no idea how the title has anchor tags. If there was an anchor tag, where would I find it? In the child theme? I appreciate your help and apologize for the frustration. I am just not entirely sure what to provide to help you help me.

    Thread Starter epichman

    (@epichman)

    Is this the snippet you are looking for?

    <?php
    /**
     * Content markup for single announcement templates
     *
     * @package Timeline Express
     * @by CodeParrots
     * @link http://www.codeparrots.com
     */
    
    /* Action hook to display content before the single announcement image */
    do_action( 'timeline-express-single-before-image' );
    
    /**
     * Render the announcement image.
     *
     * @param int    $post_id    The announcement (post) ID whos image you want to retreive.
     * @param string $image_size Name of the image size you want to retreive. Possible: timeline-express, full, large, medium, thumbnail.
     */
    echo wp_kses_post( timeline_express_get_announcement_image( get_the_ID(), 'full' ) );
    
    /* Action hook to display content after the single announcement image */
    do_action( 'timeline-express-single-after-image' );
    ?>
    
    <!-- Render the announcement date -->
    <strong class="timeline-express-single-page-announcement-date">
    	<?php
    		/* Action hook to display content before the single announcement date */
    		do_action( 'timeline-express-single-before-date' );
    
    		printf(
    			esc_attr__( 'Announcement Date: %s', 'timeline-express' ),
    			wp_kses_post( timeline_express_get_announcement_date( get_the_ID() ) )
    		);
    
    		/* Action hook to display content after the single announcement date */
    		do_action( 'timeline-express-single-after-date' );
    	?>
    
    <?php
    	/* Action hook to display content before the single announcement content */
    	do_action( 'timeline-express-single-before-content' );
    
    	timeline_express_content();
    
    	/* Action hook to display content before the single announcement content */
    	do_action( 'timeline-express-single-after-content' );
    ?>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]

    Thread Starter epichman

    (@epichman)

    I was able to reactive the read more. I actually uninstalled and reinstalled the plugin so that I have an un-edited version of this plugin. I went through your detailed instructions and the apostrophe problem is still there. How do I fix this orphaned apostrophe?

Viewing 7 replies - 1 through 7 (of 7 total)