Daylon Deon
asked 10 years ago

Ok two things.  How do you add the “Next Page” or “More Posts” to the home page so that visitors can continue to cycle through articles?  After the 5 articles on the home page there is no “Next Page” link to get to the previous days posts.
And none of the posts show an Edit option on them.  I have to click to Admin in order to get edit posts.  Every other theme has an Edit option from the home page.  How can I get Edit back?

2 Answers
Kido D
answered 10 years ago

Hi Daylon,
– To add the navigation under the articles on homepage, please open up the index.php file in themes/dw-gamez folder, find the code below (around line 28): 

<?php if(!is_home()) dw_gamez_pagenavi( '<i class="icon-angle-left"></i>', '<i class="icon-angle-right"></i>' ); ?>

… and change it into this:

<?php dw_gamez_pagenavi( '<i class="icon-angle-left"></i>', '<i class="icon-angle-right"></i>' ); ?>

see the screenshot: http://i.imgur.com/i2ZOJbc.png
– About the Edit button, you can click on a post, there is a Edit Post button on top left of the page, like in the screenshot here: http://i.imgur.com/m7z72vj.png
Let us know if you need anything else.
Thank-you!

Daylon Deon
replied 10 years ago

Awesome thanks. Ok so just enable the toolbar again to get the edit. One more question. How do I change the color of the links on the home page and within a post?

Right now you can’t distinguish the link color because links are the same color as the font. How can I change the color of them?

DominicStaff
answered 10 years ago

To change color of the link in the DW Gamez theme.
Firstly, follow the jetpack’s guideline in the Blog article on how to use Edit CSS here. http://cmspioneer.com/designwall/blog/using-jetpack-custom-css-for-your-wordpress-site/
Then add the code to the Edit Css.

.more-link {
    color: #999 !important;
}
.entry-content a {
    color: #FF0000;
}

Regards,

Powered by DW Question & Answer Pro