DWUser
Forum Replies Created
-
Forum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] easy rotator and multisite(Here’s the code in a more readable format: https://gist.github.com/anonymous/9f38300fc5822872cc34/raw/b71c12a05c5fa486fd4c1d44001bf2e553117900/gistfile1.txt )
Forum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] easy rotator and multisiteHi,
I apologize for the confusion—these changes are actually in the
easyrotator-for-wordpress/engine/main.phpfile.Here’s an example of the updated code you might use:
$path = $this->getContentDir() . $fullPath;
if ($fullPath == 'erc_88_xxxxxx') // update this value!
{
$path = '/var/www/somedir/other/site/wp-content/uploads/EasyRotatorStorage/user-content/' . $fullPath;
}...
$urlHere = $this->getContentDirURL() . $fullPath . '/content/';
if ($fullPath == 'erc_88_xxxxxx') // update this value!
{
$urlHere = 'http://other.site.com/wp-content/uploads/EasyRotatorStorage/user-content/' . $fullPath . '/content/';
}Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] easy rotator and multisiteHi Atlanta,
To display rotators on other sites, you have a couple of options. First, you can copy the
wp-content/uploads/EasyRotatorStorage/user-content/erc_82_XXXXXXfolder from the main site to the other sites’wp-content/uploads/folders. Or, you could modify theeasyrotator.phpplugin file, modifying this function (which starts around line 1170):public function renderRotator($fullPath)You would have to update the following two lines to conditionally be different based on the passed
$fullPathvalue:$path = $this->getContentDir() . $fullPath;And
$urlHere = $this->getContentDirURL() . $fullPath . '/content/';Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Adding a borderHi,
Sorry for the confusion; you shouldn’t use the
<div>at the end approach if you have links, as it will block them. I see that you updated the rotator to include the border directly on the EasyRotator<div>which is another option. Or, you can wrap the entire rotator in code like this:<div style="width: 600px; height: 400px; border: 1px solid #000;"> [easyrotator]erc_xx_xxxxx[/easyrotator] </div>The width/height values must match the rotator size.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Links not re-directing in slideHi,
There are quite a few script in your page (unrelated to the rotator) that are raising JavaScript errors, and these other scripts appear to be interfering with links. Here’s some code you can add to the footer.php template file just before
</body>to restore link functionality:(Get code here: https://gist.github.com/anonymous/9d59abc50cb702fd17d4 )
The better solution, though, is to use the View > Developer > JavaScript Console window in Google Chrome to identify and correct the errors in your page.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Links not re-directing in slideHi,
Thanks for using EasyRotator for WordPress! Can you please send the URL of your page and confirm in which browser(s) you’re seeing the problem? Please also let me know which is the problematic slide.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Adding a border(The formatter wrapped the text, which makes it hard to read. Here’s the unwrapped version: https://gist.github.com/anonymous/e2a25d02b10c1d831c00 )
Forum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Adding a borderHi,
To change the navigation dots, you’ll need to update each of the background-image declarations in these lines of code:
<div class="erdots_wrap" style="wasbackground-color: #CFC; float: right;" align="left">
<!-- modify the float on this element to make left/right/none=center aligned. -->
<span class="erdots_btn_selected" style="padding-left: 0; width: 21px; height: 20px; display: inline-block; text-align: center; vertical-align: middle; line-height: 20px; margin: 0 2px 0 0; cursor: default; background: url(http://easyrotator.s3.amazonaws.com/1/i/rotator/dots/export/20_14_wite_65.png) top left no-repeat;"> </span>
<span class="erdots_btn_normal" style="padding-left: 0; width: 21px; height: 20px; display: inline-block; text-align: center; vertical-align: middle; line-height: 20px; margin: 0 2px 0 0; cursor: pointer; background: url(http://easyrotator.s3.amazonaws.com/1/i/rotator/dots/export/20_14_wite_35.png) top left no-repeat;"> </span>
<span class="erdots_btn_hover" style="padding-left: 0; width: 21px; height: 20px; display: inline-block; text-align: center; vertical-align: middle; line-height: 20px; margin: 0 2px 0 0; cursor: pointer; background: url(http://easyrotator.s3.amazonaws.com/1/i/rotator/dots/export/20_14_wite_65.png) top left no-repeat;"> </span>
</div>
Sorry for the confusion regarding the border; to ensure that it remains visible, you should actually add the line I mentioned before at the very end of the layout code.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Adding a borderTo add a border around an entire rotator, the easiest solution is to edit the rotator’s layout code (instructions here) . In the Layout Source Code, insert the following new line at the very start:
<div style="position: absolute; left:0; right:0; top:0; bottom:0; border: 1px solid #000;"></div>Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] External Image Source (Amazon S3)Hi @aj2taylo,
To add photos from an external source, first add a photo from your local filesystem as a placeholder. Then, double-click on the preview thumbnail in the Rotator Images section to open the image source dialog. You can then paste in an HTTP URL as the new image source.
Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Easy Rotator and Optimize PressThis issue was resolved via a support ticket; reply cross-posted here for reference.
Hi Ed,
Adding a rotator to a header usually requires editing a theme file and using the EasyRotator template function. You can learn more about this process in this article:
http://www.dwuser.com/support/easyrotator/kb/template-function/ .Please let me know if I may provide any additional guidance.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Open links in new windowHi Mikep,
To learn about the Link Target option, see: http://www.dwuser.com/support/easyrotator/kb/link-target/ . Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Not responsive?Hi @stevex64,
Thanks for using EasyRotator. To learn how to enable responsive dimensions (in the Layout/Presentation section of the editor), see: http://www.dwuser.com/support/easyrotator/kb/responsive-dimensions/
Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Plugins
In reply to: [EasyRotator for WordPress - Slider Plugin] Bugs relating to admin backendHi @wordray,
Thanks for using EasyRotator for WordPress. Unfortunately, we don’t officially support CKEditor. There are some serious incompatibility issues with CKEditor because of the way WordPress is engineered around the TinyMCE editor; these issues affect our plugin as well as quite a few others. Additional information is available here:
http://wordpress.org/support/topic/plugin-ckeditor-for-wordpress-blank-white-edit-screen?replies=36
I recommend that you consider using Ultimate TinyMCE instead of CKEditor:
http://wordpress.org/extend/plugins/ultimate-tinymce/ . It offers many options while maintaining compatibility with EasyRotator and many other plugins.Please let me know if you have any other questions.
Sincerely,
Drew O’NeillForum: Reviews
In reply to: [EasyRotator for WordPress - Slider Plugin] Works perfectly for me on 3.5.1!Hi Jason,
Thanks for the positive feedback!
Sincerely,
Drew O’Neill