DikkieDick
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: 2nd logo with link with Customizr Pro ThemeA bit later, I noticed the snippets-stuff from WPCode and that would do partly the trick, only the logo came after the header and before the body. If I put it in the body it didn’t look nice as well. Then I thought of using widgets and implemented the left sidebar and put the logo in there. That is a workable solution, maybe not the nicest one.
Forum: Everything else WordPress
In reply to: 2nd logo with link with Customizr Pro ThemeThanx @devinlabsolutions. First I’m wondering how you can see that that plugin is installed. I saw a video on how to do it through Elementor: https://www.youtube.com/watch?v=uQO4_axG_U8 but I have the same as one of the people who posted a comment: I don’t have the header and footer option under Appearance. Guess it might be the Pro-version.
Another weird thing is that when I want to add a logo and want to choose from the media library it doesn’t show me the images in the media library except for 2, which seem to have extension bmp. Whereas in the classic style ‘everything’ is shown. I could convert and upload the logo (which is a jpg) as a bmp.
Forum: Fixing WordPress
In reply to: Deleted images getting crawled by GTMetrixGood point. I might have done that before. But I went to GTmetrix and entered the URL ‘new’. At least now it doesn’t show 404’s. Well if the automatic daily check does the re-test than that might explain a lot.
I’ll remove the daily thing and make a new one.A bit later: I did another run by entering the URL, but now it gives 404’s again. Or it is based on the location it uses when testing. Vancouver didn’t give the 404’s, London does.
Another time Vancouver but now it gives 403-messages. I removed banned ip’s, so weird. Will check it out later.Thanx.
Forum: Fixing WordPress
In reply to: Deleted images getting crawled by GTMetrixI did a search, don’t find them. And if I enter the URL the 404’s don’t show up. So, I guess it must have something to do the way GTMetrix checks the site, but can’t find a clue. Or it must use some caching. And another thing, the crawled filenames look like
uploads\year\month\NameF%E2%680%A6, whereas the files present are something like NameFotografie.jpg and variations like NameFotografie-600×400.jpg.Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] crashes if updated to 3.1.33Same issues. By me it was the Mollie payments for Woocommerce-plugin. Installed 3.1.32 of Simple Calendar and disabled autoupdate for this plugin.
Finally:
It wasn’t working as I wanted it (and not 100% yet, as I’m still able to choose dates in the past which I don’t want to).
At the end of the form I have entered:
—————<!doctype html>
<html lang=”en”>
<head>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title>jQuery UI Datepicker – Default functionality</title>
<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css”>
<link rel=”stylesheet” href=”/resources/demos/style.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
<script>
$( function() {
$( “#woensdag,#woensdag2″ ).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day == 3];
}});
</script>
</head>
<body></body>
</html><script language=”javascript” type=”text/javascript”>
$( “#woensdag,#woensdag2” ).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day == 3];
}});
</script>—–
In one way or another the part between <html> and </html> doesn’t show the calendar, but it let me choose the correct days in the form.I also did another try with WP Datepicker. It worked but after a few times didn’t work.
This is for showing and being able to choose only wednessdays:At the end of the form use:
<script language=”javascript” type=”text/javascript”>
$( “#woensdag1,#woensdag2” ).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day == 3];
}});
</script>and in the form on the line you need to use it:
<p>Datum waarop u of uw kind de eerste proefles zou willen volgen (kies een woensdag)<br />
[text* your-date1 id:woensdag1 class:dp]
</p><p>Datum waarop u of uw kind eventueel de 2e proefles zou willen volgen (kies een woensdag) <br />
[text your-date2 id:woensdag2 class:dp]
</p>Hi, I’m using CSS Javascript and Toolbox plugin.
And created something to be able to only choose Saturdays:
jQuery(function($){
$(“#proefles2kind”).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day == 6];
}});
});But currently datepicker isn’t working at all in Contact Form 7. Well at least on my site.
Unfortunately that didn’t the trick when decreasing the font size in the browser still the left sidebar shows white space on the left and the right sidebar was underneath the main content.
Nope. The sidebar should keep the same width, but I want the left side bar move more to the left to fill up the white space there, and the right one to the right, so getting the main middle column with the posts wider.
Forum: Themes and Templates
In reply to: [Customizr] Textcolor of topic-title not workingYes, I did that in the child theme. Thanx for pointing me to that.
Forum: Themes and Templates
In reply to: [Customizr] Textcolor of topic-title not workingHmm… seems that I found the solution. Had to modify the file green2.min.css. Now the colors look better. ??
- This reply was modified 7 years, 5 months ago by DikkieDick. Reason: wrongly figured out in the first place
Forum: Plugins
In reply to: [Contact Form 7] Problem with reCAPTCHAMight have to do with:
WPCF7_Shortcode, WPCF7_ShortcodeManager, wpcf7_add_shortcode(), wpcf7_scan_shortcode(), and some other classes and functions have become deprecated.
But anyhow I would like to see a solution, except removing the recaptcha-stuff from my forms. ??
Forum: Plugins
In reply to: [Contact Form 7] Problem with reCAPTCHAI’m having the same issue. It is with Contact Form 7 version 4.6 and WordPress 4.6.1 and 4.7. The captcha isn’t showing where you have to tick ‘I’m not a robot’. I had to revert back to Contact Form 7 version 4.5.1.
Anxiously waiting for a solution.