page52
Forum Replies Created
-
Forum: Plugins
In reply to: [Page scroll to id] Exclude CSS SelectorsThank you SO much for the quick reply – this is exactly the info I needed. Thank you for such a great plugin 🙂
Thank you so much Chris, this information is incredibly helpful 🙂
Plus two! Interested to know the answer here as I used this plugin on multiple websites.
Forum: Themes and Templates
In reply to: [Virtue] Display Caption on Featured Images – Blog PostsThank you, I confirm I’ll be adding the image into the body of the post to show the caption, as a workaround.
Thanks Lap, I tried that but unfortunately it didn’t work.
This is my form code:
<p style=”float: left; clear: both; margin-top: 20px;”> <label>Event Interests</label>
[checkbox* mc4wp-eventinter id:newline “Swim” “Bike” “Run” “Triathlon” “Aquathlon” “Duathlon” “Aquabike”]</p>On MailChimp it’s a text field with tag ‘EVENTINTER’.
I tried this code in functions.php:
add_filter( ‘mc4wp_integration_contact-form-7_data’, function( $data ) {
$data[‘EVENTINTER’] = join( ‘;’, $data[‘EVENTINTER’] );
return $data;
});EVENTINTER field on captured names on MailChimp still shows blank.
Any other ideas?
Thank you, Lap – turns out it was another error causing it. Found it through the ‘other’ page.
Forum: Plugins
In reply to: [Carousel Slider] Post dates are wrongThanks Sayful, I appreciate you taking the time on this.
Can you please confirm – the above code is to go into functions.php? Where will I find the html code to insert?
Thank you!
Forum: Plugins
In reply to: [Carousel Slider] Post dates are wrongHi David,
Thank you – you hit the nail on the head. The page source shows:
<meta property="article:published_time" content="2016-08-24T17:43:31+02:00" /> <meta property="article:modified_time" content="2016-09-06T20:43:09+02:00" />I wonder if there’s any way to make sure it only shows the published date and not the modified date?
Forum: Plugins
In reply to: [Carousel Slider] Hide excerpt and remove gapThank you so much – this is very helpful, and works!
To move the .carousel-slider .owl-dots up then – use a negative top margin?Forum: Plugins
In reply to: [Map My Posts] [Fix] WPML & Google Map API key error fixesSo that worked a treat, I was able to use the maps function which is better than Geochart, but can’t style (change colour) the map pin / marker. Any ideas?
Forum: Plugins
In reply to: [Map My Posts] [Fix] WPML & Google Map API key error fixesThis is awesome, thank you! I wonder, do you know how I can style the geochart? In particular, I want to edit the fill color on hover, and also edit the border color and width.
Thanks in advance!
Forum: Plugins
In reply to: [Calculated Fields Form] Error message doesn’t show upThank you so much, if you could – please send me a cost estimate of putting this info ‘i’ in next to the results fields with a hover message? My email: natalie@page52.co.za.
Forum: Plugins
In reply to: [Calculated Fields Form] Error message doesn’t show upThank you, that’s fantastic! I hate to take up more of your time, but any chance you know how I might be able to insert an info ‘i’ after the results fields which displays the tooltip on hover?
Forum: Plugins
In reply to: [Calculated Fields Form] Error message doesn’t show upThank you so much! One more thing – is there any way to vertically align text next to the field boxes?
Also, how can I style the floating tooltip? What is the class?
Forum: Plugins
In reply to: [Calculated Fields Form] Error message doesn’t show upSorry, I probably didn’t explain it well and unfortunately the site isn’t yet live so I can’t show you the error.
This is my equation:
(function(){
if(fieldname6 == 3) return ‘R1,000-R1,100’;
if(fieldname6 == 4) return ‘R1,100 – R1,200’;
if(fieldname6 == 5) return ‘R1,150 – R1,250’;
if(fieldname6 == 6) return ‘R1,600 – R1,700’;
})()On the front end, if a user puts in a number 2 (which isn’t in my range) it’s set to show an error message. But, what’s happening is it doesn’t show the error until the user puts their mouse cursor in one of the other fields, then the error pops up.
I’m not sure why this is happening, but it would be great if the error would pop up immediately when an invalid number is put into the first field.