tonvandervalk66
Forum Replies Created
-
Hi, thanks for your reply. I was able to exclude all js containing the word “gutenberg” from minification or combination in WP Fastest Cache. That made both caching and the sliders work again.
Hi, can you confirm that your dkim settings are set to strict? Can you perform a DKIM signature test and show me that the result is dkim=pass ?
Some customers do not have a problem and other do, depending on how strict the safety controls of the receiving mailserver.
Thanks for your help! This is really mission critical for my project.
Hi,
At the moment the language translation files are updated daily, so I have to remove them every time I want to change any settings in my user registration forms.
What can I do to solve the translation problem permanently?
Further my login forms have the setting: Auto approval after email conformation, but users receive a notice “Your request is still pending approval” when they try to login and my Users dashboard also shows new users as “pending approval”.
How can I solve this? Is this related to the language problem?
-Tony
Hi Amrit Kumar Shrestha,
First of all, thank you for your help!
Actually, I don’t have any translation plugin. So I installed Loco Translation plugin as you suggested. There was no option to choose English instead of Dutch.
I do not understand what you mean by: “translate the label “User Registration” into the default language.” Do you mean I have to edit the given Dutch translations for specific field labels??
Finally I just removed the files with the Dutch translation for the plugin User Registration and that solved the problem. I expect the Dutch translation will be automatically updated, but then I will remove it again when necessary.
Hope this will help other users in the Netherlands as well.
What amagsumov says is a plain lie: the banner is all over the place in the admin. On the front dashboard and in the media library.
It is a banner with the cross erased so the user cannot remove it the normal way.
https://www.duolingo-op-school.nl/wp-content/uploads/2021/06/cleantalk-spam.jpg
The plugin author is right. You can customize almost any detail of function and display.
To adapt google charts there is a callback function which enables me to add script adaptations to make the charts look the way I want. It is not simple and actually knowing how to write SQL and a little javascript is helpful, but you can get it to work. Page load times haven’t been a problem in my experience yet.Forum: Plugins
In reply to: [Google Sheets Integration for Caldera Forms] authentication KafkaWell, that was a quick an effective reply. Thanks!
Please follow your own links in the authentication description to see that it is not possible to create a project on the api library page etc. THe description is refined but does not match. I was able to find my way around, but I got lost when google put me to the choice to sign in on a paid Gsuite license or pay $15.000 to $75.000 for external verification.
The quickstart link worked for me.
Next it may be good to mention that the google sheets ID is not the last part of the sheet-url, but the part in the middle. This ID is the value between the “/d/” and the “/edit” in the URL of your spreadsheet.
Last but not least: donations suck. WordPress plugins need a better business model. If I would make any profit with my website I would be really glad to pay you your fair share. You really deserve it. Of course, same goes for Caldera Forms.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] 1.8.1 Jquery errorSame problem on my site Leerlingmotivatie.nl
I use rollbacks to 1.7.6 with WP Rollback. I try to prevent daily automatic updates with Easy Updates Manager, but that does not seem to work, because CF is updated daily to 1.8.1 again.
Very annoying indeed. Please fix
Halten Sie sich bitte an die Nutzungsbedingungen, um nicht genehmigte Bewertungen zu verfassen, die im Anschluss ggf. gelöscht werden könnten.
🙂 🙂 🙂
German feedback censorship
Forum: Fixing WordPress
In reply to: padding-top hides links on blog pageActually, using the theme editor in the admin space, I found two java-scripts belonging to the child theme that inserted the inline style element.
jQuery(document).ready(function(){jQuery("h2.entry-title").each(function(){var panelId=jQuery(this).html().toLowerCase().replace(/\s+/g,"-");jQuery(this).wrapInner(function(){return"<span style='padding-top:25em;' id='"+panelId+"'></span>";})})So I removed the style=’padding-top:25em;’; flushed the browser cache; changed the theme to 2017 and back again to the child theme: problem solved!
Thanks for your advice!
BTW: this was the child theme by Jon Penland
https://premium.wpmudev.org/blog/five-hacks-twenty-seventeen/Forum: Fixing WordPress
In reply to: padding-top hides links on blog pageHi Steven,
You are right. The problem arises out of the childtheme that I have installed over 2017. When I switch to 2017 there is no problem with the blog links.
Still: how does this child theme add inline css to the class entry-title? And how can I remove it? I cannot find it in the stylesheet (as it is defined inline in the html-code)
<span style=”padding-top:25em;” id=”<a-href="https://leerlingmotivatie.nl/effectonderzoek/"-rel="bookmark">experimenteel-onderzoek-in-het-po“>Experimenteel onderzoek in het PO</span>
I can try to contact the childtheme builder (Jon Penland) with this question. But if you have any other suggestions, I’d like to hear…
-Tony
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] menu-toggler icon not displayingI have got the same problem since the last update. Also on the preview page of the showcase of the theme the hamburger menu does not show when you minimize the page.
Please explain if this is a deliberate choice, or what we have to do to restore the menu icon / or css
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] retrieve added user fields with sqlSELECT wphy_usermeta.user_id,
wphy_usermeta.meta_key,
wphy_usermeta.meta_value
FROM wphy_usermeta
WHERE 1=1
AND wphy_usermeta.meta_key IN (‘vakx’,’vaky’,’vakz’)This seems to work. Thanks for the help! 😉
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] retrieve added user fields with sqlI am already one step further. This query at least shows the desired values from wphy_usermeta:
SELECT wphy_usermeta.meta_key,
wphy_usermeta.meta_value
FROM wphy_usermeta
GROUP BY wphy_usermeta.meta_keyNow I would need to find out how to select the specific fields vakx, vaky and vakz
- This reply was modified 8 years, 4 months ago by tonvandervalk66.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] error saving user dataAlright, I used this shortcode and it works now
[pods name=”user” form=”1″ where=”id={@user.id}” fields=”fielda, fieldb, fieldc”]In the pod settings I entered the corresponding field magic tags like {@user.fielda} and now these custom user fields can be loaded and saved from the frontend. That was my goal and you guys helped me to achieve it.
I am truly impressed. Thank you!
- This reply was modified 8 years, 4 months ago by tonvandervalk66.