Matt Radford
Forum Replies Created
-
Just sent you a login
Hey P?r, I’ve just installed 2.2.2 on 6 sites. No entries being shown in the history ?? Happy to give you a couple of logins if you’d like to investigate.
Cheers
MattForum: Themes and Templates
In reply to: [Make] BreadcrumbsSweet, thanks Melissa.
And I’ll check my Google-fu first before raising a ticket in future ??
Forum: Themes and Templates
In reply to: [Make] BreadcrumbsHi
I’ve just found this thread after posting a support ticket for Make on this subject. I was hoping for an action to add breadcrumbs in above h1.entry-title, but can’t find one.
So, adding to the child theme it is, but in addition to the above change to single.php, you’ll need to add the breadcrumbs code to page.php, template-builder.php, archive.php and for completeness, 404.php.
Cheers
MattForum: Plugins
In reply to: [Fetch Tweets] Dequeuing styleAh, you need to turn on the WordPress debug mode by setting the WP_DEBUG constant to true in wp-config.php.
Doh. Should have that on while developing anyway.
I appreciate that my solution isn’t portable, but it’ll do for now (development deadlines, you know…). I’ll take a look at a more robust function when I get time. Thanks again.
Forum: Plugins
In reply to: [Fetch Tweets] Dequeuing styleThanks very much for your reply – that’s helped me figure it out. I tried the function you kindly supplied, but it didn’t output anything in wp-content or any other directory. However, I realised I could look in the
<head>
– and there was an ID added to the stylesheet link, e.g.id="fetch-tweets-931d83299fdae5cb7f44dff076336678-css
I replaced ‘fetch-tweets-plain’ with
fetch-tweets-931d83299fdae5cb7f44dff076336678
in my function and bingo! Stylesheet dequeued!Thanks so much for your help and an awesome plugin ??
Forum: Plugins
In reply to: [Fetch Tweets] Dequeuing styleOk, forget the Plain template. I’m only using that as a test to see if I can dequeue the stylesheet.
I am using a Fetch Tweets custom template, which I’ve set up according to your documentation. It’s working fine and the stylesheet for that loads on the front end. But I want to dequeue this stylesheet. I’ve taken the CSS out of the custom template’s style.css and added it elsewhere. So – the custom template’s style.css does not need to be loaded, as it’s an extra HTTP request I could do without.
I’m trying to get the correct handle of the custom template’s stylesheet in order to dequeue it. Have I got the handle format correct?
Forum: Plugins
In reply to: [Fetch Tweets] Dequeuing styleHi, thanks for replying.
I’m only activating the Plain template as a test as I think the handle should be ‘fetch-tweets-plain’. The function above should, but does not, dequeue the style, so either the handle is wrong or it’s not a high enough priority number (which I’ve tested against).
I will deactivate Plain when I have a working solution, but I’m trying to dequeue my custom template, as I can then save a HTTP request and stick the CSS into my single compiled theme file.
So, do I have the correct handle for the Plain template?
Forum: Plugins
In reply to: [BruteProtect] BP says local but it's liveThanks Sam. I’ve added an admin account for you.
FYI, the site is running roots.io, which has some additional rewrites going on, plus it’s on Nginx.
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Some dates in 2013 are "invalid"Just escape the ‘-‘.
As in
[date* date-94 date-format:dd\-mm\-yy]
That works for me, with no validation errors.