Katarina Kosta
asked 4 years ago

Hello there,
Is it possible to remove the months from the pagination on the right??? My website is an exhibition archive, it would be very important if the posts can line up without any indication of the months. Is that possible?
Another question is regarding the font, i changed it, but it seems that the headings are not changing, can you please help solving that? The desired headings font would be Arial Black, preferably, if not just Arial.
The next question is about the post summary – since some posts will have a pdf viewer or photo gallery, I don’t want that to be shown on the timeline, would it be possible that the post summary consists from just the header and first sentence of the post?
Previously I’ve sent you the credentials to login to my WordPress website, and also just want to mention that I purchased the theme from envato market, purchasing also the 12 month support:
Licensee: Museum of Contemporary Art Vojvodina
Item ID: 15407139
Item Purchase Code: 19f7abea-1a80-4d96-9c29-dad8f1813f81
Thank you,
Best,

Btjkjassy
replied 4 years ago

viagra side effects http://60lmentop.com/ http://60lmentop.com/ viagra pills

FbrgUrith
replied 4 years ago

tadalafil liquid http://ciallaled.com/ http://ciallaled.com/ buy tadalafil online

2 Answers
DominicStaff
answered 4 years ago

If you want to remove the month on the right-hand side, you can use the following code:
.data-page {display: none !important;}
About the font issue, you can send me the username & password of your site for further checking. 

If you want to show the post summary, you can open the wp-content/themes/dw-timeline-pro/templates/content.php file then find the line 14.
Replace the following code: 

<?php the_content( __('Read more', 'dw-timeline-pro') ); ?>

With the new code: 

<?php the_excerpt(); ?>

Then add the following code to the functions.php file

function new_excerpt_more($more) {
    return '';
}
add_filter('excerpt_more', 'new_excerpt_more', 21 );
function the_excerpt_more_link( $excerpt ){
    $post = get_post();
    $excerpt .= '<a href="'. get_permalink($post->ID) . '">Read more</a>.';
    return $excerpt;
}
add_filter( 'the_excerpt', 'the_excerpt_more_link', 21 );

And from now, you can add the post summary to the excerpt box. 

DominicStaff
answered 4 years ago

I have checked your site and see that you are using the Easy Google Fonts plugin. In this case, you need to use the inspect feature of the browser and find the class of the section/title/content to add the class to the plugin. 
See the screenshot: https://prnt.sc/ra7iol

Powered by DW Question & Answer Pro