isaak-wells
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: SimpleModal Login] EffectsI am not sure which code to send your way, The js? If so i provided a link below,
https://www.consolealliance.com/wp-content/uploads/2010/08/default.js
thanks in advance.Forum: Plugins
In reply to: [Plugin: SimpleModal Login] EffectsWell I figured out the opening effects
I edited the default js to look like this
$('#simplemodal-login-form').modal({ overlayId: 'simplemodal-login-overlay', containerId: 'simplemodal-login-container', opacity:75, onOpen: SimpleModalLogin.open, onShow: SimpleModalLogin.show, position: ['15%',] }); }); }, open: function (dialog) { // your effects go here. Random example below dialog.overlay.fadeIn('slow', function () { dialog.data.hide(); dialog.container.fadeIn('slow', function () { dialog.data.slideDown('slow'); }); }); },
Now I am just having trouble with the closing effects. I would think it would be just adding an onClose but I guess I am not doing it right?
Forum: Plugins
In reply to: [Plugin: SimpleModal Login] EffectsBasically I would like these effects on my default
Opening
// Opening animations $("#sample").modal({onOpen: function (dialog) { dialog.overlay.fadeIn('slow', function () { dialog.data.hide(); dialog.container.fadeIn('slow', function () { dialog.data.slideDown('slow'); }); }); }});
Closing
// Closing animations $("#sample").modal({onClose: function (dialog) { dialog.data.fadeOut('slow', function () { dialog.container.hide('slow', function () { dialog.overlay.slideUp('slow', function () { $.modal.close(); }); }); }); }});
I found these on your site under examples of simple modal, If you can help me fisgure this out I would most appreciate it, Thanks.
Forum: Plugins
In reply to: [Plugin: SimpleModal Login] EffectsI think I may be coding this wrong since I am new at JS
Are you saying right after
show: function (obj) { var dialog = this, form = $('#loginform', obj.data[0]);
I paste in your example and that’s it or am I missing another step?
Forum: Plugins
In reply to: [Plugin: WP Hide Dashboard] Hide Profile menu?is there a way to hide the “your profile” link without hiding the entire profile section?
Forum: Plugins
In reply to: [SimpleModal Login] [Plugin: SimpleModal Login] gif spinner while loadingThanks for the info emartin24, I have actually manually added the register and forgot links to my login and customized it to my site look. All I needed was that little fix.
Take a look and let me know what you think if you have time.
https://www.consolealliance.comForum: Networking WordPress
In reply to: Super Admin problemNever mind I figured it out. Thanks so much for the help.
Forum: Networking WordPress
In reply to: Super Admin problemThanks for the reply. Bare with me though because I am very new at the back end stuff.
I found the table you are talking about. now what do i do?
Forum: Networking WordPress
In reply to: Deleting An existing WordPress network.Which tables and which files do I delete to just start over?
How do you reinstall the network settings?
No I am not
Forum: Fixing WordPress
In reply to: Warning: Cannot modify header information – headers already sentIt is something to do with my plugin Simple forum. I am asking them how I might fix this but at least I know that it IS the plugins fault.
Forum: Fixing WordPress
In reply to: Warning: Cannot modify header information – headers already sentThanks for the reply but unfortunately that does not solve this problem. As I read in the link you provided I tried to fix my wp-login.php and even re-downloaded wordpress 3.0 and put that php file in and still I get the same problem.
Any help would be appreciated
I got a closely resembled message
Warning: Cannot modify header information - headers already sent by (output started at /nfs/c03/h04/mnt/49675/domains/consolealliance.com/html/wp-login.php:60) in /nfs/c03/h04/mnt/49675/domains/consolealliance.com/html/wp-includes/pluggable.php on line 890
I check for whitespace and I can’t seem to find any. When you load the page which is the registration page at the bottom it loads this error but if you refresh it fixed it and if you refresh again it shows the error in that pattern
Can anyone help me?Forum: Plugins
In reply to: [Plugin: WP-UserOnline] Display Avatars Instead of User Names?Is there a way to display both? User avatar then name?