lucasbhealy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site Displays BlankI edited the database and username in wp-config and suddenly it worked… what a simple fix. I’m not sure what exact change it was though.
Forum: Themes and Templates
In reply to: Moving News Posts to Sidebar Arras ThemeThank you!
Here is home.php:
https://pastebin.com/83buFFQTand Here is sidebar.php:
https://pastebin.com/NxSCnp6TWhen I tried to put the news posts in the sidebar I just copied and pasted from <!– index-news –> to “<!– #archive-posts –>” and put it after !– #secondary –> in the sidebar.php.
Forum: Your WordPress
In reply to: New Site, How does it look?thanks guys ??
I’m using the Next Gen Gallery.
My apologizes for breaking the rules. Here is the link:
https://wordpress.pastebin.com/DFn3BkGW
Thank you
Forum: Installing WordPress
In reply to: From Localhost (using xampp) to live troublesBerserk,
Thanks for the help. Given my very very slow internet speed I thought I should try to use the Xampp installer I already had downloaded one more time before I tried the new services process. I uninstalled the old xampp and reinstalled the fresh one.
Whatever it ended up being I was able to get the site online. Thank you so much for your help though!
Forum: Installing WordPress
In reply to: From Localhost (using xampp) to live troublesThank you so much. Sorry for the delay in reply, I’m still traveling through West Africa. I’ll try to get the site online again this week and let you know how it goes.
Thank you endlessly!
Forum: Fixing WordPress
In reply to: Make text appear on clickThank you so much for the timely reply. This is my first time messing around with Java, so I am having some trouble using it. I have entered the java script code here in my header.php (a wordpress tutorial told me to)
?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title><?php wp_title('»', true, 'right'); ?> <?php bloginfo('name'); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <script type="text/javascript"> $(document).ready(function(){ //hide the all of the element with class msg_body $(".msg_body").hide(); //toggle the component with class msg_body $(".msg_head").click(function() { $(this).next(".msg_body").slideToggle(); });}); </script> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/> <link rel="stylesheet" type="text/css" media="print" href="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/print.css" /> <link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/style-480.css" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php wp_head(); ?> </head>
and then I’ve entered the list in a FAQ page like this:
<script type="text/javascript"> <p class="msg_head"><strong class="redonly">Do I have to be a professional to participate?</strong></p> <div class="msg_body">No, you don’t. With even high school education you can take part in our teaching, sports and social services programs, and HIV/AIDS campaign. However, some health positions require some skills and related experience. </div> </script>
The FAQ page comes up blank like there is no text, but everything else loads normal.
Any ideas? Thanks so much for your help, it’s much appreciated.
Forum: Fixing WordPress
In reply to: Creating WordPress from PHPs, MySQL, and TablesSo then I guess my question is what is the next step I should take?
Thanks Joseph!