shull123
Forum Replies Created
-
Got it! I didn’t think so but wanted to check.
Forum: Plugins
In reply to: [ApplyOnline - Application Form Builder and Manager] Question Character LimitGot it!
Works perfectly. Thanks for your help.
Forum: Plugins
In reply to: [ApplyOnline - Application Form Builder and Manager] Question Character LimitI completely understand. Do you know if a way to add text between questions to bypass the need for writing longer questions?
Thanks for your help.
Forum: Everything else WordPress
In reply to: Post visible to individual usersYou know, you’re probably right. I could just assign a category to each member (since there will always on be about 40 or so) and make that specific category visible to that individual member.
Awesome idea. Thanks for walking me through the thought process.
Forum: Everything else WordPress
In reply to: Post visible to individual usersThats true and definitely simple. I will probably end-up doing that. Thanks for the tip. I just thought it would be cool to navigate each user to a specific page that will pull up their specific information.
Not really sure how to go about doing that without simply protecting the area as you mentioned…
Forum: Fixing WordPress
In reply to: Add page to Sub DirectoryI am still having a difficult time deciding how to go about this…
I guess I am simply trying to make a “members” page that requires a server side username and password. This will allow me to put all the members files in the same directory.
I just want to be able to edit the sub directory page in my normal wordpress rather than creating a new one for that directory.
Any thoughts?
Forum: Fixing WordPress
In reply to: Inclusion rather than exclusionThanks! That cleared it up for me. It helps if you read. Sorry, it took you helping me get started to understand the whole thing.
Here’s the solution.
<?php wp_list_pages(‘depth=1 &title_li=’); ?>
It truly helps when you don’t reveal the solution in full; rather pointing me in the right direction with a knowledgeful smile.
Thanks again for your help.
Forum: Fixing WordPress
In reply to: Inclusion rather than exclusionThat worked like a charm. The only thing now, is how to I get rid of “Pages?”
I tried the following and didn’t have much luck.
<?php wp_list_pages(‘depth=1’, ‘exclude=title_li’) ;?>
or
<?php wp_list_pages(‘depth=1 &exclude=title_li’) ;?>
Any thoughts? Thanks again.
Forum: Fixing WordPress
In reply to: Podcasting and RSS2I am still stumped on this one…If anyone has any idea, please let me know. Thanks for your help as always.
Forum: Fixing WordPress
In reply to: Browser Specific QuestionSorry, I mean (FYI…style1 is my Firefox stylesheet, style2 is my IE stylesheet, and style is my primary stylesheet)
Forum: Fixing WordPress
In reply to: Delete Sidebar on only one pageYea, I tried to uncomment it before and it basically jacks-up the rest of the site. Check it out and you’ll see what I am talking about.
https://www.constitutionpercussion.org
I am in the learning process of PHP and can work around most things, but the stylesheet is unfamiliar grounds to me. I wish I could just add a line in the stylesheet and call it in a template, but I am not sure how yet.
Forum: Fixing WordPress
In reply to: Delete Sidebar on only one pageYou’re right, it does have some issues according to that site. Thanks for the tip there. I will definitely use it more.
One more question though and I will leave you alone.
Somewhere in my site, there is a place where the sidebar is reserved a slot whether it is called or not. If you open I.E. you can definitely see what I am talking about and compare it to Firefox or Safari which views it correctly.
Any thoughts…
Forum: Fixing WordPress
In reply to: Delete Sidebar on only one pageCheck this page out now:
https://constitutionpercussion.org/?page_id=40If you view it in Firefox, it looks fine. This is where I got to before. But, when you view it in I.E. it still thinks there is a sidebar there.
My footer calls the sidebar, so I simply made it where it didn’t call the footer. Instead, the footer page code is at the bottom of the template.
Here’s what I did:
<?php
/*
Template Name: Test Page
*/
?><?php get_header(); ?><!– content …………………………… –>
<div id=”content” class=singlecol”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!–
-
<?php wp_list_pages(‘exclude=100’); ?>
–>
<h2><?php the_title(); ?></h2><?php the_content(); ?>
<?php endwhile; ?>
Any thoughts?
<?php endif; ?></div> <!– /content –>
<!– footer …………………………… –>
<div id=”footer”>© Copyright <?php echo date(“Y”).” “; bloginfo(‘name’); ?>.com :: All Rights Reserved ::
<?php wp_loginout(); ?>
<?php do_action(‘wp_footer’); ?></div> <!– /footer –>
Forum: Fixing WordPress
In reply to: Delete Sidebar on only one pageWould you put the tag in sidebar.php? As for the width issue, check out my stylesheet excerpt below. Can I add something there that will change the style of only one page or where I can call that particular code in one page? Or, what do you think? I am rather new at this, so if you point me in the right direction, I can probably work it out.
Thanks again.
/* content
————————————————–*/
#content {padding:20px 20px 20px 25px; float:left; position:relative; display:block; width:440px;}
#content ul, #content li {/*list-style:none;*/}
/* .singlecol #content {float:none; width:550px; margin:0 70px;} */
#commentspopup #content {float:none; padding-top:0;}Forum: Fixing WordPress
In reply to: Post formatting — add line between postsIt’s working now! Thanks for the help. You’re the heat.