ti2m
Forum Replies Created
-
Forum: Plugins
In reply to: [Edge Suite] Conflict with responsive MeanMenu?Hi,
wordpress doesn’t offer solid ways to manage different jQuery versions. Edge Suite can therefore collide with other jQuery / JS based plugins, which doesn’t necessarily mean the fault lies within Edge Suite. I already helped various users and gave advice to other plugin maintainers on how to fix jquery releated problems. I just don’t have the time to look into all the other – potentially badly written – plugins. On thing that you can always try is to run Edge Suite in iframe mode which should solve all jQuery collision based problems (but isn’t a nice way in general).
Integrating it manually is of course always an option, if you are up for the task.
Forum: Plugins
In reply to: [Edge Suite] Sound Plays, but No Animation ShowsHi,
the linked site doesn’t seem to have the animation anymore, so I can’t check up on it. It can’t find sites/buzz.js though. Did you try the iframe mode? Does it run there?
Forum: Plugins
In reply to: [Edge Suite] Edge Animation as HeaderThat’s what the linked tutorial, the install instructions and the FAQ are for.
Forum: Plugins
In reply to: [Edge Suite] Margin above animationHi,
use the dev version of the plugin, the additional paragraph was removed there.
Forum: Plugins
In reply to: [Edge Suite] .oam 'incompatible archive' errorThat can’t be the source of the error. I just checked, and ‘incompatible archive’ is being thrown when ZipArchive on the server isn’t able to open the file. Its impossible that this has something to do with the #. Maybe reopen everything in EA, remove the # through the EA editor, create the OAM and reupload. If the error still exists, try another OAM. If that doesn’t work then there is a general server problem.
Forum: Plugins
In reply to: [Edge Suite] .oam 'incompatible archive' errorWhere exactly are you taking out the #? Sarah’s script is a user supplied script that should go into the _action.js file. You should only remove the # from Sarah’s script otherwise things will break, true 🙂 But Edge Suite doesn’t really care about the user scripts, so there shouldn’t be an issue.
Forum: Plugins
In reply to: [Edge Suite] Load an animation depending on qtranslate languageSounds like you have an animation set for the homepage in the EdgeSuite Settings. Code looks good and should work as expected.
Forum: Plugins
In reply to: [Edge Suite] Animation Loading on Category Archive PageSorry, I didn’t have time to really test this, it didn’t make it into 0.6, but I’ll soon put it in the dev version so it will be in 0.7
Forum: Plugins
In reply to: [Edge Suite] Specific animation for Category pageYou can try to edit the category.php template (in twentyXXX themes) and add
if(function_exists('edge_suite_comp_view_inline') && $category_name == 'test'){ echo edge_suite_comp_view_inline(10); }with ’10’ being the id of the composition you want to use (same as with shortcodes) and ‘test’ being the name of the category.
Forum: Plugins
In reply to: [Edge Suite] 0.6 upgrade caused two problemsGlad it worked! Not even sure how or why the p tag made it in. Marking as resolved.
Forum: Plugins
In reply to: [Edge Suite] 0.6 upgrade caused two problemsIf you have the 0.5 version on there now then using the click update in the plugin section should get the updated 0.6 version, which has the fix to make your composition show up.
Maybe you try that first.
If you then want to get rid of the additional p tag, then download the latest dev version http://downloads.wordpress.org/plugin/edge-suite.zip and replace the edge_suite directory via ftp.
There are no database changes involved in the update, so you can just replace files.
Forum: Plugins
In reply to: [Edge Suite] 0.6 upgrade caused two problemsHey Barry,
yesterday some spotted an incompatibility bug with EA 2 that no one experienced before. I fixed the bug yesterday and updated version 0.6, but without pumping up the version number. I’ve also removed the additional p wrapper around the stage. It’s all in the latest dev version of the plugin. You need to manually download the plugin and upload it to the server. That should hopefully fix all problems.
If you uploaded compositions with version 0.6 and go back to 0.5 then you will run most likely into problems. If you didn’t upload anything through 0.6 then you should be able to go back to 0.5 without a problem. Just clear the browser cache.
Let me know if this works for you, then I would push the removal of the p tag onto the 0.6 version.
Sorry, gave you the wrong function, it’s edge_suite_comp_view_inline() not edge_suite_comp_render():
if(function_exists('edge_suite_comp_view_inline')){ echo edge_suite_comp_view_inline($comp_id); }You can use
if(function_exists('edge_suite_comp_render')){echo edge_suite_comp_render($comp_id);}in your PHP templates to include the composition with the given $comp_id. Of course you can also use it twice.
Does that help?
Forum: Plugins
In reply to: [Edge Suite] Edge Commons Spotlight problemLooks like you got it working on your site, can I close the issue?