njs
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-SpamShield] Notice: Undefined index: spam_countNo worries. Many thanks for fixing so quickly : )
Forum: Plugins
In reply to: [Analyticator] Advertising bannerAgreed. This plugin has now gone straight in the bin. Thought I’d been hacked. Furious.
Forum: Plugins
In reply to: [WP FullCalendar] Wrong CSS loading / 404sI have noticed this – you can rename the css file from ui-lightness.css to theme.css (and just hope it is fixed next time you update the plugin).
Forum: Plugins
In reply to: [Better Font Awesome] Icon dropdown scrolls content to topFixed already – great turnaround 🙂
Forum: Plugins
In reply to: [Better Font Awesome] Better Font Awesome conflicts with ACF: Font AwesomeI am having issues with just the ACF plugin itself.
When ACF (not ACF: Font Awesome) is activated, I am getting the shortcode twice. I have gone through all plugins and have identified just ACF.
Forum: Plugins
In reply to: [Better Font Awesome] Easier way to select/find icon?Great stuff 🙂
Forum: Plugins
In reply to: [Better Font Awesome] Easier way to select/find icon?I wonder if this jQuery plugin could be implemented?
Forum: Plugins
In reply to: [Better Anchor Links] github-style 'link to' icon on heading rolloverAh, I think this might do the trick: http://bryanbraun.github.io/anchorjs/
Forum: Plugins
In reply to: [Better Anchor Links] Some error noticesUPDATE
Also noticed that the following error notices are displayed on the front end (where excerpts are output I believe)…
Notice: Undefined variable: tag in ***/wp-content/plugins/better-anchor-links/mwm-aal-class.php on line 179 Notice: Undefined variable: htmltag in ***/wp-content/plugins/better-anchor-links/mwm-aal-class.php on line 180Forum: Plugins
In reply to: [Relevanssi - A Better Search] Notice Undefined variableTop man. Thanks.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Notice Undefined variableExact same problem for me.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Colspan on responsive tableNo worries. If I think of something, I’ll share it. Thanks!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Colspan on responsive tableOK.Shame – so close! I think a small tweak to the DataTables JS would sort it (eg check if element exists before getting/setting its style).
Thanks though 🙂
Forum: Plugins
In reply to: [WP-SpamShield] Shortcode in templateHi Scott
Ok thanks – I suppose I thought echoing a shortcode would be automatically possible without any extra development.
No big deal, I just prefer to avoid shortcodes in the Visual Editor as you always get some clients who accidentally delete them when they are updating content.
Thanks
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Colspan on responsive tableHi
I have a partial solution to this using the css, below. The only stumbling block is that a JavaScript error is thrown by jquery.datatables.min.js?ver=1.5.1:58Uncaught TypeError: Cannot read property ‘style’ of undefined
I think this error is caused by the fact that the rendering of colspans means that there are less dom elements available when the responsive layout is triggered (hence undefined).
Anyhow, the css I am using to correct the colspan height once in responsive layout mode (ie, once the header cells are down the left-hand side), goes something like this…
/* TABLET */ @media (max-width: 979px) { .tablepress.tablepress-responsive-tablet { th[colspan="2"], td[colspan="2"] { height: 78px; // adjust accordingly } th[colspan="3"], td[colspan="3"] { height: ... } } } /* same for other media queries and their .tablepress.tablepress-responsive-* classes */I think if that js error can be resolved, things will be better (the error may be preventing some of the other functionality from working, such as pagination etc).
Thanks!