siriusly
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Filebase Download Manager] Files page shows 404 error if not logged inI solved this by using the shortcode to display files, rather than the page identifier in the Filebase settings.
Forum: Plugins
In reply to: [Easy Modal] Email link from modal was working and now stoppedSolved!
For some reason the preventDefault statement in the script was now blocking the email function (why it didn’t earlier, I have no clue). In any case, removing that statement fixed everything, so now the script is this:
<script> jQuery(document).ready(function () { jQuery('#eModal-1, #eModal-2, #eModal-3, #eModal-4, #eModal-5, #eModal-6, #eModal-7, #eModal-8, #eModal-9').find('.flat-custom-button').click(function (e) { jQuery(this).parents('.emodal').emodal('close'); }); }); </script>
Forum: Plugins
In reply to: [Easy Modal] Email link from modal was working and now stoppedHello again. Finally getting back to you on this… Updated to most recent version 2.0.16 and the script does not work as intended. Site is at https://tinyurl.com/operrxp Modal is triggered with click on email icon.
The goal is to have the user’s email app open when they click on the “Accept” button, and to have the modal close automatically at the same time so it is not there when they return to the website. Currently, when the script is active, the modal closes without opening the email app. If I disable the script, the email app opens, but modal does not close (of course).
Many thanks for your help!
Well, that was dopey… yes, posts were by admin user, and it showed up in source code, even though front end display is off.
A theme problem, right?<header> <h1 class="entry-title">Hey — Where’d my toolbar go?</h1> <div class="subhead"> <span class="postauthortop author vcard"> <i class="icon-user"></i> by <a href="https://mysitename.com/author/adminusername/" class="fn" rel="author">D D</a> |</span>
Thanks. Everything is up-to-date, and I’ve already decommissioned the admin user, of course. I’ve tried all of the usual suspects (looking for author ID, etc.), but haven’t been able to hack to find the admin username myself. Scans find no malware… Have a ticket in to the hosting company… have a feeling it’s on their end. The site is really just a testing site, so it’s not critical, but I’d like to know where the hole is anyway! Will report back if I find out.
It’s happening only with a single submission. I will open the ticket in the help desk. Thank you!
Forum: Plugins
In reply to: [WP Job Manager] Editor Role can no longer add jobs in WP admin areaIf you are using AAM, you set capabilities for roles in the AAM > Access Control.
Forum: Plugins
In reply to: [WP Job Manager] Editor Role can no longer add jobs in WP admin areaMarking this resolved. Found that I needed to edit the capabilities again with role changes in WPJM. Thanks!
Forum: Plugins
In reply to: [Easy Modal] Email link from modal was working and now stoppedThanks! Will give the upgrade a try and let you know… weird that previous version was working fine, though.
Forum: Plugins
In reply to: [The Events Calendar] Sidebar Text Widget doesn't display on main events pageHi amandascharpf — I need to check which site I made this mod to so I can see what the mod was — hopefully it’s not an emergency — I’m a bit swamped, so it might take me a couple days to get to this, but happy to help if I can.
Forum: Plugins
In reply to: [Easy Modal] Close Modal when opening email appOops! Thanks!!!!
Forum: Plugins
In reply to: [Easy Modal] Close Modal when opening email appAwesome. Thanks! Wasn’t sure if the other selectors were important, so I left them in. ?? Been digging into the tutorials, and I have to say, it’s great to begin getting a handle on something that has been lurking in the background as “mysterious” until now. Thanks again for a great plugin, and for the great support! BTW… here’s the page https://bit.ly/1B8XGIF
Forum: Plugins
In reply to: [Easy Modal] Close Modal when opening email appUPDATE:
I figured out that I needed to add the correct selector name at.find('button, .button')
so it is now
.find('button, .button, .my_button')
and it is working!!Thanks again!!!
=====================So, I’m trying to use this in the child theme’s footer.php… don’t seem to have it working yet… here’s the last part of the footer.php file.
<?php wp_footer(); ?> <!-- Close eModal window with Accept button click |SJ_20140830| --> <script> jQuery(document).ready(function () { jQuery('#eModal-1, #eModal-2, #eModal-3, #eModal-4, #eModal-5, #eModal-6, #eModal-7, #eModal-8, #eModal-9').find('button, .button').click(function (e) { jQuery(this).parents('.emodal').emodal('close'); }); }); </script> <?php if( $udesign_options['enable_cufon'] ) : ?> <script type="text/javascript"> Cufon.now(); </script> <?php endif; ?> <?php udesign_body_bottom(); ?> </body> </html>
What might I be doing wrong?
Forum: Plugins
In reply to: [Easy Modal] Close Modal when opening email appThank you so much! Since I need to do the same thing with 7 different modals, it sounds like it would make the most sense to add it to the modals content…. I’m not very familiar with jquery — could you tell me where in the content to add it? Thank you!
I resolved this by deleting the user and creating a new user for this person with the editor role. Not sure why that worked. Perhaps because the person had previously had an admin role?