digisavvy
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Regex RedirectSo, this still isn’t working for me, which makes me sad because I was super proud I came up with a regex thing that seems to work. =)
I’ve tried adding a dollar sign but that doesnt work either and nukes my match in the regex tester. Halp.
Forum: Plugins
In reply to: [New Relic Reporting for WordPress] Is this Still developed?Hey there,
I’m trying to use this plugin with a site I’m developing on Pantheon hosting. New Relic is active for the environment but the plugin is issuing a notice that New Relic is not active: WP New Relic: New Relic is not installed.Is there something additional that needs to be done to properly get this running?
I feel like one more wrapping div would help around inner content possibly.
Forum: Plugins
In reply to: [Print-O-Matic] Change Markup?Perfect! Missed this in the docs. Appreciate the help.
Forum: Plugins
In reply to: [Print-O-Matic] Change Markup?Also, if there’s a donate or why to support the support for this plugin let me know. =)
Forum: Plugins
In reply to: [Print-O-Matic] Change Markup?Hey there, thanks for the reply. Just wanted to check in on this.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Too Many RedirectsFollowing up on this one
Forum: Plugins
In reply to: [Print-O-Matic] Change Markup?anything on this item?
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Too Many RedirectsAlso happens with the free plugin, too.
Hey Ben,
Thanks for the speedy reply. We don’t require that the accordion is editable, no. We just wanted to use your accordion for display purposes on a specific CPT template to display specific information.That’s kinda what I figured. Thank you! =)
I appreciate the support here.
Forum: Plugins
In reply to: [BJ Lazy Load] Images not fading inJust tell my Mom that her son is a very nice boy. ??
The constants ought to go in your wp-config.php file. This plugin has no settings page.
Forum: Plugins
In reply to: [BJ Lazy Load] Images not fading inThat’s not a feature of the plugin. However, with some CSS Magic you can make it happen. Adapted from WP Rocket and in use on a few websites I manage.
img[data-lazy-type] {
/* we set the opacity to 0 */
opacity: 0;
}
img.lazy-loaded {
/* prepare the future animation */
-webkit-transition: opacity .5s linear 0.2s;
-moz-transition: opacity .5s linear 0.2s;
transition: opacity .5s linear 0.2s;
/* we set the opacity to 1 to do the magic */
opacity: 1;
}Forum: Plugins
In reply to: [Author Avatars List/Block] Getting a list of authors by IDAh. Clever. That worked like a charm, Paul. Thank you.