ericshew
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontend Dashboard] plugin seems to break media libraryThe file is in the wp-admin, specifically the media section. The problem only occurs when the front end dashboard is turned on. If I deactivate this plugin, the issue goes away.
Forum: Plugins
In reply to: [SVG Support] animation on load with advanced modeI understand. Can I ask one last question?
I solved the problem by adding a .25 second delay before firing the script. It seems to work 100% of the time now and the delay is undetectable.
The answer I was expecting was something like an event that kicks in after your script fires… something I could have my script respond to. Is there such a thing? If the answer is too involved, that’s ok.
Forum: Plugins
In reply to: [SVG Support] animation on load with advanced modeHi there,
I’m using a separate file for controlling the animation. It seemed like it didn’t work at all when I had it start on “ready.” It seems to work about 40% of the time when I have kick in on “load.” IN the code below I am reassigning SVG when either the object or “this is a bio” is clicked on. My conclusion is that my jquery script is firing before the inline process is taking place.
Please forgive me if there’s something I’m overlooking. I’ve a designer who is trying to teach myself this stuff and it has been an uphill battle. ??
$(window).on(‘load’, function () {
// alert(“Window Loaded”);
console.log (‘hi2’);
var
$testSVG = $(‘svg circle’);
// $($testSVG).fadeOut();
TweenMax.staggerFrom($testSVG, 1, {drawSVG:0}, .25 );
$(‘h2’).fadeOut();
// $(‘svg circle’).fadeOut();$($testSVG).click(function() { // testing for clicking on the object
console.log (‘click’)
TweenMax.staggerFrom($testSVG, 1, {drawSVG:0}, .25 );
})$(‘p’).click(function() { // testing for clicking on “this is my bio”
console.log (‘click’)
$testSVG = $(‘svg circle’);
TweenMax.staggerFrom($testSVG, 1, {drawSVG:0}, .25 );
})});
});Forum: Plugins
In reply to: [SVG Support] advanced mode on featured imageHi there,
I see the option and selected it but it the inline effect is not kicking in. You can see the header on this page: https://77.104.162.102/~shewdesi/2017/12/05/test/ to confirm that this is the case. Any ideas about resolving this?
Forum: Plugins
In reply to: [SVG Support] svg images come up as brokenWorks perfectly. Thank you so much! ANd thanks for creating a great plugin!
Forum: Plugins
In reply to: [SVG Support] svg images come up as brokenDoes this look like it would be a good place to start?
https://n3wt0n.com/blog/displaying-an-svg-hosted-by-godaddy/
Forum: Plugins
In reply to: [SVG Support] svg images come up as brokenOh…. thanks. I am new to SVG and to .HTAaccess but am gradually working through these things.
It is hosted by GoDaddy – a company which has been very frustrating of late. I will investigate with them. Thank you for your help.
Forum: Plugins
In reply to: [SVG Support] svg images come up as brokenAwesome!
Forum: Plugins
In reply to: [SVG Support] svg images come up as brokenSo sorry about that. I had been doing some testing and removed the file. Now they are back. I’m still running into the same issues. I will send you admin access via email.