ti2m
Forum Replies Created
-
Forum: Plugins
In reply to: [Edge Suite] how to prevent jquery loading twice?You can use plugins, but you can’t just use ONE jquery version. EA will come with its own jquery version and the plugins will build on top of wordpress’ jquery version.
Forum: Plugins
In reply to: [Edge Suite] Edge Suite Script loading twiceHi,
this shouldn’t happen. Can you sent me a link to your page or the two paths to the edge.3.0.0 files?Forum: Plugins
In reply to: [Edge Suite] Javascript Include Path FailingMarking as resolved.
Forum: Plugins
In reply to: [Edge Suite] Set as a featured image?Featured images aren’t supported directly, but check the documentation, you can achive it by adding some code to the template.
Take a look at “Placement method B” at
http://old.edgedocks.com/content/edge-suite-integrate-edge-animate-wordpressIs that what you are looking for?
Forum: Plugins
In reply to: [Edge Suite] removing space below animations (shortcodes)Hi,
can’t access the page anymore. Check the dev version as stated in the FAQ, there might be an additional obsolete P tag.
Forum: Plugins
In reply to: [Edge Suite] Failed to load resourceThanks for the feedback on the ios issue.
For the missing resources, the source maps aren’t really missing, they are only being looked for when you have the dev tools open. Check http://stackoverflow.com/questions/18365315/jquerys-jquery-1-10-2-min-map-is-triggering-a-404-not-found
Forum: Plugins
In reply to: [Edge Suite] OAM upload issuesHi,
check the project name within Edge Animate, not the filename.
The main solution to file size issues is to optimize the assets, so isn’t really that much else you can do.
Forum: Plugins
In reply to: [Edge Suite] Using plugin with NginxHi,
glad you solved the nginx issue. This looks like a ‘network site’ problem. Take a look at http://wordpress.org/support/topic/edge-suite-database-entry-could-not-be-created
EdgeSuite doesn’t work right now with networks sites, have to put that in the FAQ.
Forum: Plugins
In reply to: [Edge Suite] Edge Suite – Database entry could not be createdHi,
yeah, doesn’t work with network sites. In my opinion the whole network/DB installer in WP is a total mess. I would need to rewrite the whole plugin and not use a custom DB table, but the main content table. Sorry, not going to be solved in the near future due to lack of time/resources. Thanks for the feedback though. Have to check if this isn’t in the FAQ, it should be.
Forum: Plugins
In reply to: [Edge Suite] "jQuery NoConflict mode" ignored when logged outAre you sure? I don’t see any reason why the no conflict mode would be affected by being logged out. At least no one else ran into it over the last year. Maybe another plugin which only loads when not being logged in, which then causes problems?
Forum: Plugins
In reply to: [Edge Suite] how to prevent jquery loading twice?Hi,
that was bugging me some time ago as well, but it’s not that easy. As you can see the latest EA uses jQuery 2.x, WP uses 1.x. When using just one we would have to use the newer 2.x version. This would break a tone of other jquery plugins and hell would break loose here in the issue queue. You would also run into problems when accidentally using two different version of EA compositions on your site (anywhere on the site, not on one page). In a way you can try to accept the 2.x version as part of the EA runtime. All of the EA dependencies are being loaded async. so it shouldn’t effect your initial page load. You can use the CDN option of EA, then chances are pretty high anyway that the user has already loaded jquery 2 somewhere.
It’s not perfect, but what is nowadays on the web.
Forum: Plugins
In reply to: [Edge Suite] Is There A Way To Enable Shortcodes Within An Edge Animation?Hi,
that won’t really work, as shortcodes are parsed by php and your edge animate code is being loaded dynamically after wordpress has rendered everything. So wordpress knows nothing about the actual content of your animation, and it doesn’t have to.A simple way to maybe pull a wp form into edge animate is by using the shortcode for the form alongside the animation, but setting it to display none. You can then in your edge animate code pull in the form through JS, so basically move it in the DOM and the show it.
Forum: Plugins
In reply to: [Edge Suite] Animation overwriting existing contentHi,
the position of the stage is set to absolute. Take a look at http://wordpress.org/support/topic/navigation-not-dropping-down-below-edge-header same issue I guess.
Forum: Plugins
In reply to: [Edge Suite] Multiple Edge Comps on PageTwo of the compositions have the same composition id (means class). This doesn’t work in Edge as two of the same compositions alongside each other just crash. You might want to consider putting the 3 composition into one as that is way more performant, if that is possible with your content layout.
Forum: Plugins
In reply to: [Edge Suite] Javascript Include Path FailingThe preloader.js is included twice on your site, once through edge suite with the correct path and once, as it looks to me, manually in the head through: /wp-content/themes/DiviSubTheme/CloudWorkFlow_01_edgePreload.js
Did you try to include it before manually? If so just remove the line from the header and it should work.