Forum Replies Created
-
AuthorPosts
-
daisy
ParticipantThanks I've got everything working now. Have a great day or evening depending on where you are 🙂
daisy
ParticipantThe only things that I can't seem to change are:
https://www.whats-cookin.nl/category/ontbijt-en-lunch/
The [Read more...] link on those pages, I want to translate this to Dutch. So I've found this snippet:
//* Modify the WordPress read more link
add_filter( 'the_content_more_link', 'sp_read_more_link' );
function sp_read_more_link() {
return '[Continue Reading]';
}But I think I need to change something, because it's not showing any changes on my categorie sections.
And one last thing: I want to translate previous and next page on for example:
https://www.whats-cookin.nl/category/hoofdgerechten/
I've found this snippet, but again I can't seem to get it to work right for me.
//* Customize the previous page link
add_filter ( 'genesis_prev_link_text' , 'sp_previous_page_link' );
function sp_previous_page_link ( $text ) {
return '« Custom Previous Page Link';
}Could you help me one last time? Thank you!
daisy
ParticipantI've found it. And it works. Thank you!
daisy
ParticipantYes I saw this. So for example if I want to change the "leave a comment text" then I need to use this snippet:
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.//* Modify the comment link text in comments
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
function sp_post_info_filter( $post_info ) {
return '[post_comments zero="Leave a Comment" one="1 Comment" more="% Comments"]';
}But I'm not a webdesigner. I'm not sure where to find the functions.php file within my theme. Do I need to use FTP?
And I can just change the text in the script saying "Leave a Comment" into Dutch?
Thank you for your help!
daisy
ParticipantHi Anita,
The website is now online > https://www.whats-cookin.nl/
daisy
ParticipantHi Anita,
Thanks for the fast reply. I'm currently building my website. I want to launch it somewhere within the next 2 weeks.
I can provide screenshots. Does that help?
-
AuthorPosts