2notch
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Themes link gone from extend page?Forum: Installing WordPress
In reply to: won’t install on hostgatorWhat is the domain name? HostGator must have determined it is REALLY inflamatory.
Forum: Plugins
In reply to: chatroom plugin word press 2.1.2Try placing it right after the calendar.
Here’s the original code:<li><h2><?php _e('Calendar'); ?></h2> <ul> <li><?php get_calendar(); ?></li> </ul> </li> <?php get_links_list(); ?>
Insert the shoutbox code like this:
<li><h2><?php _e('Calendar'); ?></h2> <ul> <li><?php get_calendar(); ?></li> </ul> </li> <li><h2><?php _e('Shoutbox'); ?></h2> <ul> <li><?php if(function_exists(jal_get_shoutbox)) { jal_get_shoutbox(); } ?></li> </ul> </li> <?php get_links_list(); ?>
Forum: Plugins
In reply to: chatroom plugin word press 2.1.2You have to manually add this code to your sidebar.php in your theme:
<?php if(function_exists(jal_get_shoutbox)) { jal_get_shoutbox(); } ?>
Forum: Everything else WordPress
In reply to: Blog fraudThere is a God blog, should the real God e-mail first or just sue?
(ooh, that was good)
@richards1052
You and your detractor are dancing on the rawest nerve in the world. Do you expect no flak?Forum: Plugins
In reply to: Youth Group PluginsForum: Plugins
In reply to: chatroom plugin word press 2.1.2In Wordspew’s css.php file, try modifying these lines to control the height and width:
#chatoutput { height: 200px; /* width: 172px; */
Remove the /* and */ to control the width.
Forum: Installing WordPress
In reply to: command to print a single postTry Gamerz WP-Print plugin. It can put a nice little icon or text link on your posts or pages.
Forum: Plugins
In reply to: chatroom plugin word press 2.1.2Hmmm… I haven’t tried it. It might take Lester Chan’s WP-Wap plugin to make it work.
Forum: Plugins
In reply to: chatroom plugin word press 2.1.2Very good! If you think this problem has been solved, please mark it “Closed”. That helps us keep track of open problems.
Forum: Plugins
In reply to: chatroom plugin word press 2.1.2I got the ajax-shoutbox plugin but I cant seem to be able to add it to a page (so i can make it bigger). I can use it on the left or right sidebar, but on it’s own page ??
I’m working on a hack for this. I’ll post back here shortly…
OK, here is the code. First, create a new page. You may enter some information at the top of the post if you wish. Wordspew will appear below it. Your page Title will be used in the conditional.
Next, modify page.php in your theme to include the following code:
<!--post with more link --> <?php the_content('<p class="serif">Read the rest of this page »'); ?> /* Insert the next two lines... */ <!--Conditional for inserting Wordspew in the page --> <?php if (is_page('Your Page Title')) { if(function_exists(jal_get_shoutbox)) { jal_get_shoutbox(); } ;} ?> <!--if you paginate pages--> <?php link_pages('<strong>Pages:</strong> ', ' ', 'number'); ?>
Forum: Installing WordPress
In reply to: Complete Noob Needs Help – SOS!Make sure you uploaded all your WordPress files to https://www.yoursite.com/wordpress/
If you installed them in https://www.yoursite.com/ you would get this error. Look in the https://www.yoursite.com/wordpress/ folder and see if all the files are there.
Forum: Fixing WordPress
In reply to: What’s wrong with my header?Try using your FTP client. You should be able to edit through it.
The reason you can’t edit it through your dashboard is because the permissions are not set correctly for it. This is a good thing. If you have to, download the CSS file, edit it, and upload it back to your site.Forum: Plugins
In reply to: Trying to create online trail logrc:custom_field_gui will let you put custom fields on the write post page and get_custom will enable you to show them on the pages.
rc:custom_field_gui
https://rhymedcode.net/projects/custom-field-guiget_custom:
https://www.coffee2code.com/wp-plugins/Forum: Fixing WordPress
In reply to: How Do I Stop This Link?It may be that you don’t have the link closing tag in
<link to page is within these brackets>
.
Should be something like this:
<a href="https://your.link">About</a>