-
AuthorPosts
-
January 21, 2019 at 12:44 pm #1056583
Hello all,
I have a problem translating the Read more button under my blogs to Lees meer. I read some comments about adding something to the functions.php file
But i don’t no where to add this exactly. Already tried to find “read the full article”, but nowhere to be found. Could someone please explain this to me in simple English?Thanks,
Kind regards YvonneJanuary 22, 2019 at 1:28 am #1056972Hey Dewebontwikkelaar,
You can use a plugin, example like Loco Translate which should be possible to be used from yu for that.
Best regards,
BasilisFebruary 15, 2019 at 9:52 am #1067363Already did install Loco translate. No result.
February 17, 2019 at 6:45 pm #1067936Hi Dewebontwikkelaar,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
VictoriaFebruary 19, 2019 at 4:37 pm #1069023Hi Victoria.
Could you please also check the problem I have with the contactform. My visitors do not receive the e-mail. Also see appendixes
I already have installed the WP log plugin (see appendix). The problem is that the visitor on my website does not receive the automatic response e-mail (see appendix, starts with Bedankt voor uw inschrijving op het stappenplan voor de perfecte SEO tekst!I do receive an e-mail that someone has filled in the contactform. I already discussed this matter with my WordPress host and they say it is a problem with the theme.
Could you please check the matter in my WordPress account,
https://yvonne.tinytake.com/sf/MzMyNDQwNl85OTQ2MjA1
https://yvonne.tinytake.com/sf/MzMyNDQxMl85OTQ2MjExThank you!
Kind regards,
Yvonne Beeris
February 24, 2019 at 10:09 pm #1071033Hi,
Sorry for the late reply, I see that you linked to your login page, but there are no login details so I couldn’t add the function into your functions.php for you. But if you add this code to the end of your functions.php file in Appearance > Editor it should work:function read_more_to_lees_meer(){ ?> <script> (function($){ $(document).ready(function(){ $(".more-link").text("Lees meer"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'read_more_to_lees_meer');
As for the email, are you using a SMTP server to send your emails? Are you sure the emails are not in the spam folder?
You could try this functions.php:add_filter('avf_form_from', 'enfold_contact_form_change_from', 10, 3); function enfold_contact_form_change_from($from, $new_post, $form_params) { global $enfold_visitor_from; $enfold_visitor_from = $from; $from = "info@<domain>"; return $from; } add_filter( 'avf_form_mail_header', 'enfold_contact_form_add_replyto', 10, 3 ); function enfold_contact_form_add_replyto( $header, $p1, $p2 ) { global $enfold_visitor_from; $header .= 'Reply-To: ' . $enfold_visitor_from . "\r\n"; return $header; }
be sure to change the address of “info@
” in the code. Best regards,
MikeFebruary 26, 2019 at 4:33 pm #1071862Added both to my functions file. Unfortunately no result. Could you please check? I put my details in the private content section.
Thank you so much!
Kind regards, Yvonne
February 27, 2019 at 7:14 am #1072170Hi,
I was not able to login, the message is “Ongeldige gebruikersnaam”, please check.Best regards,
MikeFebruary 27, 2019 at 1:17 pm #1072261See below for the correct link. It should work right now.
Thank you!
Kind regards,
Yvonne
February 27, 2019 at 2:51 pm #1072290Hi,
I gussed your login and was able to get in, I then noticed that the code I posted was in the style.css instead of the functions.php, I corrected.
Now the Lees meer works.
I also tested your contact form and I got your auto reply message. Although it did take a few minutes, it did land in my inbox.
Please clear your browser cache and check.Best regards,
MikeMarch 1, 2019 at 10:45 am #1073019Thank you so much! Good service
March 1, 2019 at 1:43 pm #1073174Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts
- The topic ‘Translagte Read more to Lees meer’ is closed to new replies.