Home › Forums › Calendar Products › Community Events › Intro Text for Community Events Login
- This topic has 11 replies, 2 voices, and was last updated 11 years, 9 months ago by
Casey.
-
AuthorPosts
-
May 22, 2014 at 9:54 pm #171329
philofauna
ParticipantI recently installed the Community Events plugin and noticed there is no intro text for the login page; there is only a text field for the username and password. I worry that users will be confused as to what their login information would be if there is no text to tell them it is their WordPress login. It would also be nice if there could be a link to register with WordPress for new users. Is there a way to do this?
May 23, 2014 at 7:09 am #171923Casey
Participantphilofauna,
Thanks for getting in touch! Try pasting the following code into your theme’s functions.php file: https://gist.github.com/ckpicker/7360689You’ll want to customize the HTML that is being displayed to suit your own purposes, but that should point you in the right direction. Give that a shot and let me know if you have further questions. Thanks! 🙂
-Casey-
May 23, 2014 at 11:23 pm #172873philofauna
ParticipantHi Casey,
Thanks for your help. I tried to embed this code in my theme’s functions.php file, and when I updated the file my website became inaccessible. I just get a blank white page and can’t even get to my WordPress dashboard. Do you know why this may have happened?
Thanks,
JessicaMay 23, 2014 at 11:53 pm #172903philofauna
ParticipantYay! I was able to get my site back. Phew! I knew I was an expert Googler for something. 🙂 So, now that I have that up and running again, I’m going to paste my functions.php file code below and maybe you can tell me where I should be putting it. I’m guessing I did something wrong the first go round. Thanks!
<?php
// ==================================================================
// Included libraries
// ==================================================================
require_once( get_template_directory() . ‘/includes/ace_functions.php’ );
require_once( get_template_directory() . ‘/includes/ace_import_export.php’ );
require_once( get_template_directory() . ‘/includes/ace_options.php’ );
require_once( get_template_directory() . ‘/includes/ace_updates.php’ );
require_once( get_template_directory() . ‘/includes/custom_post.php’ );
require_once( get_template_directory() . ‘/includes/custom_widgets.php’ );
require_once( get_template_directory() . ‘/includes/meta_boxes.php’ );
require_once( get_template_directory() . ‘/includes/modules.php’ );
require_once( get_template_directory() . ‘/includes/quicktags.php’ );
require_once( get_template_directory() . ‘/includes/shortcodes.php’ );
require_once( get_template_directory() . ‘/includes/widgets.php’ );// ==================================================================
// Jigoshop
// ==================================================================
function mytheme_open_jigoshop_content_wrappers() { echo get_sidebar(); echo ‘<section class=”section”>’; }function mytheme_close_jigoshop_content_wrappers() { echo ‘</section>’;}
function mytheme_prepare_jigoshop_wrappers()
{
remove_action( ‘jigoshop_before_main_content’, ‘jigoshop_output_content_wrapper’, 10 );
remove_action( ‘jigoshop_after_main_content’, ‘jigoshop_output_content_wrapper_end’, 10);
add_action( ‘jigoshop_before_main_content’, ‘mytheme_open_jigoshop_content_wrappers’, 10 );
add_action( ‘jigoshop_after_main_content’, ‘mytheme_close_jigoshop_content_wrappers’, 10 );
}
add_action( ‘wp_head’, ‘mytheme_prepare_jigoshop_wrappers’ );remove_action( ‘jigoshop_sidebar’, ‘jigoshop_get_sidebar’, 10);
?>
May 26, 2014 at 6:08 am #177213Casey
Participantphilofauna,
Sorry about that! You’ll want to paste it directly below this line of code, but above the ‘?>’ PHP closing tag:
remove_action( ‘jigoshop_sidebar’, ‘jigoshop_get_sidebar’, 10);
Give that a try and let me know if it works this time. Thanks! 🙂
-Casey-
May 27, 2014 at 8:24 pm #182522philofauna
ParticipantHuh, that’s where I put it before. And I just tried it again and it did the white screen of death thing again. I put the code on the very next line from the line of code you highlighted and the closing tag was on the line immediately following the inserted code. Is there something I’m not doing correctly? Is this my only way of adding text above the login? Is there a way I could at least embed a jpeg image of text to let people know? Thanks!
May 28, 2014 at 5:55 am #183682Casey
Participantphilofauna,
Can you share your entire functions.php using a site like pastebin.com, so I can investigate further? Thanks! 🙂-Casey-
June 3, 2014 at 5:36 pm #202365philofauna
ParticipantHi Casey,
Sorry for the delayed response. You can see my Theme Functions PHP file here: http://pastebin.com/g6NamtrB.
Thanks!
JessicaJune 4, 2014 at 5:30 am #203514Casey
ParticipantJessica,
Thanks for getting back in touch. I modified your file and added the snippet to the top to see if that resolves the issue: http://pastebin.com/bNddMFAwGive that a try and let me know if you’re still having problems. Thanks! 🙂
-Casey-
June 24, 2014 at 12:04 pm #247836Casey
ParticipantI just wanted to follow up and see if you’re all set here or if you still have further questions. Just let me know if you have further questions or if I should go ahead and close out this thread. Thanks! 🙂
-Casey-
July 14, 2014 at 4:08 pm #382264philofauna
ParticipantHi Casey,
Sorry for the delayed response! I have been traveling without time to work on code and just now was able to give this a try. It worked! Thank you so much.
Kind regards,
JessicaJuly 15, 2014 at 7:45 am #394429Casey
ParticipantGreat! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. 🙂
Cheers,
Casey -
AuthorPosts
- The topic ‘Intro Text for Community Events Login’ is closed to new replies.
