DWUser
Forum Replies Created
-
Hi Steffi,
Thanks for using EasyRotator for WordPress!
You have the right idea with editing the layout code; the specific code to edit depends on the template. Check for
box-shadowas wellbackground-imagedefinitions.If you have trouble locating the appropriate code to edit, please post your code (or link to the page) here.
Sincerely,
Drew O’NeillHi Waqas,
First of all, when modifying the template code, you need to also remove the
<h1>and</h1>tags that appear before and after theeasyrotator_display_rotatorcall.The primary error, though, indicates that you have an invalid rotator ID. Double-check that you copied the correct rotator ID as described here: http://www.dwuser.com/support/easyrotator/kb/template-function/ .
If you have more trouble, please open a support ticket and send temporary WordPress and FTP credentials so I can confirm if the rotator exists.
Sincerely,
Drew O’NeillHi,
I’m happy to help! If you have a minute, we always appreciate plugin (and support) ratings: http://wordpress.org/extend/plugins/easyrotator-for-wordpress/
Be sure to post back if you run into any other issues.
Sincerely,
Drew O’NeillHi Waqas,
Thanks for using EasyRotator. I just checked the page at http://moargh.de/portfolio/downloads/wp-theme-balloons/ but there doesn’t appear to be any EasyRotator code on that page. Can you please confirm the latest URL?
Sincerely,
Drew O’NeillHi Rob,
It’s a little hacky, but the simplest solution is to only modify the
renderRotatormethod, and conditionally take action on thecontinents.phpfile. That requires only one addition to themain.phpfile:https://gist.github.com/8371ce267d480d2b6859
Sincerely,
Drew O’NeillHi Rob,
Suppose you have passed a new parameter,
$filter. This$filtermight be of this format:array('filter'=>'tags', 'filterDetail'=>'any:12')The
filterproperty could betagsorcats(categories), and thefilterDetailstarts withany:orall:and ends with a comma-separated list of numeric category or tag IDs. So, suppose you have two tags with IDs 12 and 13 and want to display posts with *both* tags. You would pass a parameter like this:array('filter'=>'tags', 'filterDetail'=>'all:12,13')Then, add a line before 1258:
$contentDiv = preg_replace('|<li class="erwpFeaturedPhotos".*?data-filterDetail="[^"]*"|', '<li class="erwpFeaturedPhotos" data-filter="' . $filter['filter'] . '" data-filterDetail="' . $filter['filterDetail'] . '"', $contentDiv);Here’s a gist with some of this code: https://gist.github.com/8371ce267d480d2b6859 .
Sincerely,
Drew O’NeillHi Rob,
Thanks for using EasyRotator for WordPress. If you’re comfortable with PHP coding and modifying plugin code, you can add this functionality. To do this, you’ll need to modify the
easyrotator-for-wordpress/easyrotator.phpandeasyrotator-for-wordpress/engine/main.phpfiles:In
easyrotator.php:Edit the
easyrotator_display_rotatormethod (around line 2110), to add another parameter that’s passed on to therenderRotatormethod.In
main.php:Edit the
renderRotatormethod (around line 1170), adding the new parameter to the method signature, then using it to run a replace on$contentDivimmediately before thereplaceDynamicRotatorHTML()call on line 1258. The replace should look for code like this (theerwpFeaturedPhotosli):<li class="erwpFeaturedPhotos" data-filter="recent" data-filterDetail="" data-limit="10" data-order="desc" data-excludeCurrent="true" data-includeExcerpt="true" data-includeLinks="true" data-linkTarget="_self" data-fullSize="full" data-thumbSize="thumbnail"></li>Update the
filterandfilterDetailvalues as desired; you can learn more about the appropriate values to use by looking at existingcontent.htmlfiles in subfolders in thewp-content/uploads/EasyRotatorStorage/user-content/folder.Please let me know if you have any other questions.
Sincerely,
Drew O’NeillHi @iogunsiji,
Thanks for using EasyRotator. I just checked the /gallery/ page you linked to, but there doesn’t appear to currently be any EasyRotator slider in the page. Can you please confirm the latest URL?
Sincerely,
Drew O’NeillHi Benedicte,
The rotator appears properly for me in Chrome; can you please confirm the browser you’re using? The only thing I notice is that it’s slow to load because you need to optimize your photos (using the Tools > Optimize Photos option).
Sincerely,
Drew O’NeillHi Bene,
I just looked at your page and the main content area appears to currently have a white background. Can you please confirm if you resolved this issue?
Sincerely,
Drew O’NeillHi Bene,
Thanks for using EasyRotator. To center the rotator, wrap its code like this:
<div align="center"> <?php easyrotator_display_rotator('erc_32_1349376799'); ?> </div>You can learn more in this article.
Please let me know if you have any other questions.
Sincerely,
Drew O’NeillHello all,
Just to follow up on this, we officially added responsive support back in July. You can learn more here.
Sincerely,
Drew O’NeillHello all,
Just to follow up on this, we officially added responsive support back in July. You can learn more here.
Sincerely,
Drew O’Neill<i>This support ticket reply cross-posted here for reference.</i>
Hi Natalie,
This problem is caused by an overly-broad CSS declaration in your
stylesheet. You can avoid the issue by adding the following override
code to your stylesheet:.dwuserEasyRotator img {
background: transparent !important;
}Please let me know if you have any other questions.
Sincerely,
Drew O’NeillHi TC,
If everything is working properly (e.g. you can launch and create and edit rotators in the editor), then you can dismiss this message manually by taking the following steps:
– Deactivate then re-activate the plugin
– Look in your WP database’s usermeta table for an option with meta_key ending in thiseasyrotator_welcome_notice_hideChange the value (in the
meta_valuecolumn) toyesinstead ofno.Sincerely,
Drew O’Neill