Forum Replies Created
-
AuthorPosts
-
Hi Victoria,
Thanks. I put an edit at the top of my previous post:
EDIT: You can close this. Through another thread here I found the excellent ContentViews plugin, which does what I need and more.
Best regards,
RoyEDIT: You can close this. Through another thread here I found the excellent ContentViews plugin, which does what I need and more.
R.
So I set this in custom.css and it fixes the problem:
.html_elegant-blog #top .post-entry .post-meta-infos {
float:none!important
}Setting this in Quick CSS has no effect.
So, can you help me with adding post tags to .post-meta-infos. I could hack loop-index.php but there must be a better way.
Thanks,
Roy- This reply was modified 5 years, 7 months ago by gooseflight.
Sure, thanks.
http://scottishparliament.govmonitor.com/
I think it’s the float:left that’s causing the problem.
R.I did a clean WordPress/Enfold install (new db) and imported pages from an XML backup. The problem was still there. Hmm.
I then found a full width “Image with Hotspots” at the bottom of the affected page (not sure how it got there!), This was displacing the sidebar content.
Thanks.
Done. Problem hasn’t gone away.
R.
Thanks Rikard,
Updated to 3.5.4. Problem hasn’t gone away.
R.
Hmm. Odd. Try:
Thanks Jordan
Appears to be browser related. Fine in Firefox but not in Chrome! OS is Ubuntu.
Actually that’s not quite right. Looks like Enfold does some conditional stylesheet loading as well.
Seems easiest way to do this is to add an Enfold contact form, let it handle the jQuery/CSS loading and then remove it in your own custom javascript, e.g.:
jQuery(function() {
jQuery(‘form[data-avia-form-id=”1″]’).remove();
});Yes! Working now. Just apply avia_datepicker class to format.
Thank you :)
Thanks but that wasn’t really my question. I know how to implement the contact form datepicker.
In response to an earlier question the recommendation was to install the jQuery UI. So when asking how does the Enfold datepicker work? I was meaning how does it work if the jQuery UI isn’t already installed?
I commented that in another post it was stated that the jQuery UI was already enqueued and since the Enfold contact form can display a jQuery datepicker that must be the case.
So what I was asking was: if the Enfold contact form is capable of displaying a datepicker why does this not work?
jQuery(function() {
jQuery(‘#datepicker’).datepicker(); // jQuery UI
});What I am trying to do is display a jQuery datepicker form a custom form.
Hi,
Thanks.
I read that you already enqueued jQuery UI here https://kriesi.at/support/topic/custom-jquery/#post-387983
How does the enfold contact form datepicker work? How can I call that?Thanks Rikard, I need more help!
As a test I have enqueued a script as below. It is called correctly because the button click outputs to console. The datepicker part of the script doesn’t work. GIven that jQuery UI is already enqueued I thought it would be fine. The error is “datepicker is not a function”.
jQuery(‘input[name=”go”]’).live(‘click’, function() {
console.log(‘here’);
});jQuery(function() {
jQuery(‘#datepicker’).datepicker(); // jQuery UI
});Hi Basilis and thanks,
I think I found an answer to my question here:
-
AuthorPosts