wp.rook
Forum Replies Created
-
Oops, here is the site im working on: https://goo.gl/NuVU6O
Forum: Fixing WordPress
In reply to: staff directory–best way to implement custom fields?I don’t mind making a page for each person but I need them all to be indexed on one page… is there a good way to do that that isn’t manually?
Thanks for you help!!
Forum: Fixing WordPress
In reply to: best way to handle forms in WordPress?thanks, It’s going to be extremely simple…
Fields will be:
- name (required)
- email (required)
- phone (optional)
- comments(required)
I know this would be simple to program manually, but I’d really like it if users can change/add/remove fields within wordpress..
I’ll look at the options you guys recommended, thank you so much!!
Forum: Themes and Templates
In reply to: best way to put an image thumbnail into the excerpthmmm, I’m not familiar with featured images… I’ll look into it, thanks!
Forum: Themes and Templates
In reply to: different header image depending on which page you are onOk, that’s what I thought. Thanks! ??
Forum: Fixing WordPress
In reply to: ability to roll pages back to previous versions?hmmm, I don’t see a revisions meta box. Is there maybe something I need to activate in my theme to allow for this to happen?
Forum: Fixing WordPress
In reply to: ability to roll pages back to previous versions?Hi, I don’t see this option anywhere… My site is based on a ‘blank’ theme that I got from Lynda.com… Is there something that I need to activate that allows this versioning to happen?
Thanks,
Forum: Fixing WordPress
In reply to: Can I lock out functionality on the back end?oh, that’s a great idea, I didn’t know you could do that. I’ll look into it!
Thanks!!
Forum: Fixing WordPress
In reply to: problem with htaccess directory indexthanks, I didn’t know those plugins existed.
I actually fixed the issue though–all I did was specify an absolute URL for the blog page rather than a relative one… I’m not sure why that worked, but it did.
Forum: Fixing WordPress
In reply to: standard permalinks not working.Thanks, I got rid of the angled quotes..
Here is the full code: `<div id=”blogroll” style=”border: 1px solid white;”>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php if (!in_category(‘welcome’)) {?>
<p class=”dotted”><?php the_date(); ?></p>
<div class=”post” id=”post-<?php the_ID(); ?>”>
“><?php the_title(); ?>
<div class=”entry”>
<?php the_content(); ?>
<p class=”postmetadata”>
<?php _e(‘Filed under:’); ?> <?php the_category(‘, ‘) ?> <?php _e(‘by’); ?> <?php the_author(); ?>
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>
</p>
</div>
</div>
<?php } ?>
<?php endwhile; ?>
<div class=”navigation”>
<?php posts_nav_link(); ?>
</div>
<?php endif; ?>
</div>`Is there a template file that WP looks for when you click on a blog title (which links to the permalink) ?
Thanks!
Forum: Fixing WordPress
In reply to: A way to display all users in one view?Ok, that makes sense.
Now, I’m using a plugin called Cimy User Extra Fields (https://www.ads-software.com/extend/plugins/cimy-user-extra-fields/) will those extra fields be displayed as well?
Thanks for your help!
Forum: Fixing WordPress
In reply to: best way to get extended registration infoThanks I’ll try that next. I just installed this one and it seems really buggy:
Forum: Plugins
In reply to: Fast and Secure Contact FormDo you see on the far right of the screen where it says Template, and “default Template” is selected on your screen shot?
Well on mine I made a custom template, and it doesn’t seem to work in the custom template.. works great when i use default template as you suggest..
The code for my custom template is really barebone simple (and is at the top of this thread)… I’m wondering if it’s missing something that makes shortcodes function?
Thanks for your help..
Forum: Themes and Templates
In reply to: I want to add an if statement to my header filethank you!!
Forum: Fixing WordPress
In reply to: How can I access the variable for the author of a post in PHP?This isn’t an author’s page. it’s a page where all authors post to..
I want to identify the author of the particular post so that i can display their picture beside the post