Paul Kaiser
Forum Replies Created
-
Forum: Plugins
In reply to: Html Code via Post Method, Escape ProblemHi there,
Try adding the HTML to your post using the “Text” tab instead of the “Visual” tab. Does that work?
Paul
This might be overkill, but is powerful:
http://wordpress.org/plugins/connections/This is probably right on, but you’ll need to do some template work to get it to look exactly as you wish:
http://wordpress.org/plugins/simple-staff-list/Good luck,
PaulForum: Themes and Templates
In reply to: two of my page templates disappeared after my site crashedHowdy,
Nice-looking site.When you say “my site crashed,” what do you mean exactly?
Do you mean you had to restore files from backup?
And/or had to restore database from backup?Let me know.
PaulForum: Fixing WordPress
In reply to: Replicate This Feature in WordPress/Buddypress?Howdy,
Probably a good use case for a faceted search.
You can search for WordPress faceted search plugins.
Here are a couple I found that look decent. I have NOT tried them and am not associated with them:Good luck!
PaulForum: Themes and Templates
In reply to: featured image enlargementHi there,
What theme are you using?
In your templates, you can specify which image size you want to use when displaying a featured image.
Here’s the Codex article:
https://codex.wordpress.org/Function_Reference/the_post_thumbnailGood luck,
PaulForum: Themes and Templates
In reply to: redirection or loop problemsHi there,
The first thing I would do is try disabling all plugins to see if the problem goes away.
If not, then I would try a different theme.It’s very likely this is not a WooCommerce issue, but a problem with some other component on your site.
Good luck,
PaulForum: Themes and Templates
In reply to: Creating a customised wordpress page templateGreetings,
What you’re asking for is a pretty big can of worms.
One of the neatest ways I’ve seen this done is by using the “Advanced Custom Fields” plugin.
http://wordpress.org/plugins/advanced-custom-fields/You can add numerous fields / sections to your page, including “repeater” fields, which allow you to add a variable number of new sections like the ones shown on the sample page you gave.
Anyway, check it out, and good luck.
PaulForum: Networking WordPress
In reply to: problem with network instalationHi there,
Have you read the following yet?
http://codex.wordpress.org/Create_A_NetworkFrom the network dashboard, you can go to “Themes > Installed Themes” and for each theme you can “Network Enable” to make it available to all subsites — current and future.
If you want to be more selective, go to “Sites > All Sites” and you can “Edit” an existing site to determine what Themes it has access to.
Oh, just reading the next part of your question.
If you want to make multiple sites with same users / posts / tags etc. you might have some luck with the following plugin:
http://wordpress.org/plugins/blog-copier/Good luck,
PaulForum: Networking WordPress
In reply to: Woothemes and multisiteHi Gary,
Good question. That’s probably best asked over at woothemes.com. They’re a pretty helpful crew.
Good luck!
PaulForum: Fixing WordPress
In reply to: Show Post Modified Time if Different from Post time<?php if (get_the_modified_time() != get_the_time()) { // show modified time ?> <p>Modified: <?php the_modified_time(); ?></p> <?php } ?>The above is one way to do it.
PaulForum: Fixing WordPress
In reply to: Display post author on single post pageHey Lee,
It looks like you have the code inside a conditional statement that will only show stuff if comments are open for the post.<?php if ( comments_open() ) : ?> <?php // ================================== // == NOTE: Nothing in here will happen if comments are not open for the single post ?> <?php get_the_author_meta( $field, $userID ); ?> <span class="comments-link"> <span class="mdash">—</span> <?php comments_popup_link(__('', 'responsive'), __('1 Comment ↓', 'responsive'), __('% Comments ↓', 'responsive')); ?> <?php $author = get_the_author(); ?> </span> <?php endif; ?>See if that is your problem.
PaulForum: Fixing WordPress
In reply to: Show Post Modified Time if Different from Post timeSure, just add the “Modified” inside the conditional:
<p>Modified: <?php the_modified_time(); ?></p>Glad this helps out.
Take care,
PaulForum: Fixing WordPress
In reply to: Show Post Modified Time if Different from Post timeGreetings,
I found your answer actually already in the WordPress Codex. Here is the conditional:if (get_the_modified_time() != get_the_time()) { // show modified time the_modified_time(); }I found this under “Description” on the following page:
http://codex.wordpress.org/Function_Reference/the_modified_timeGood luck,
PaulForum: Fixing WordPress
In reply to: Display post author on single post pageHi there,
1. What theme are you using?
2. For your single post page, could you paste the whole page’s code into Pastebin, send the pastebin link here?
Thanks,
PaulForum: Plugins
In reply to: Prepare physical letters in WordPressOne possibility is to search for a “Print to PDF” plugin. I have used some in the past.
Then in plugin setup you can control various formatting issues.
This would allow your staff to build a Post / Page in WordPress, and then the “PDF” link would output it as PDF for print / physical letter use.