Paul Kaiser
Forum Replies Created
-
I’m not sure. One possible way is to insert the All-in-one events calendar shortcode that can display the calendar. I found the right shortcode, but now it depends on whether TheThe Tabs will resolve the shortcode. It’s certainly possible, but I do not know if TheThe did it or not.
Should take about 2 minutes for you to try.
[tabs title="Tabs Group Title" event="click" ] [tab title="First tab title"] [ai1ec view="monthly"] [/tab] [tab title="Second tab title"] Second tab content [/tab] [/tabs]Please let me know if it works.
Take care,
PaulForum: Themes and Templates
In reply to: help with alignment of side barHowdy Jo,
First, my bad: I should have encouraged you to post code using PasteBin (anything more than, say, 10 lines)
http://codex.wordpress.org/Forum_Welcome#Posting_CodeAgain, my bad.
Second, I didn’t mean changing your CSS file.
The actual page template file is what needs change (from what I can tell.)My best guess is it’s the single.php file. (you’re building from some sandbox theme, right?)
If you don’t see what I mean in single.php — or whatever template file is serving up your home page — paste the template file in pastebin, put the pastebin URL here in a reply, and I’ll check it out, fix it, and tell you how I fixed it (uh… assuming I actually get it fixed…)
Thanks,
PaulForum: Fixing WordPress
In reply to: Static Homepage and Recent PostsHi,
Perhaps you’ve changes something since posting this “permalink” issue, as I don’t see it in there?
PaulForum: Themes and Templates
In reply to: help with alignment of side barHey Jo,
You probably need to put the div#primary back inside the div#container.
Right now it comes after the #container is already closed.Paul
Forum: Fixing WordPress
In reply to: Remove home page link from nav barFantastic! Take care.
Forum: Fixing WordPress
In reply to: Remove home page link from nav barIf it is in Appearance > Menu (on the right side) you can delete it from the menu. Click the “Posts” page there on the right side of the Appearance > Menu screen, and the dialog will open down. One of the options there is “delete.” Go ahead and click that.
This ONLY deletes it from the menu — it won’t delete the page from your site.
Let me know if that’s not clear.
PaulForum: Fixing WordPress
In reply to: Static Homepage and Recent PostsCan you tell me what theme you are using?
PaulForum: Fixing WordPress
In reply to: Static Homepage and Recent PostsDo other widgets show for your home page?
Is your static home page using a certain page template?
It is possible the template used for your static home page does not show any sidebars, or at least not the sidebar you are after.Paul
Forum: Fixing WordPress
In reply to: Remove home page link from nav barIs the “Exclude Pages from Navigation” plugin not working?
If you disable the plugin, can you then see the Posts page in “Appearance > Menus”?
I’m wondering if the “Exclude…” plugin did something that makes the pages not even visible to Appearance > Menus…Anyway, make sure that plugin is disabled and then visit Appearance > menus again.
Paul
Forum: Fixing WordPress
In reply to: Sort posts based on a custom fieldHowdy,
Try:
query_posts( 'meta_key=326_dtg&orderby=meta_value' ); while( have_posts() ) : the_post(); // do whatever you want to the loop of posts endwhile;You had the query_posts inside the while loop, so it was going to go on forever.
Let me know if this is not clear.
PaulForum: Plugins
In reply to: Are these forums a WP plugin or not?Hello,
That forum is phpBB3. I’m not certain if there is a phpBB3 > WordPress integration, or if it is just straight up phpBB3, outside of WordPress.
Paul
Forum: Fixing WordPress
In reply to: Static Homepage and Recent PostsHello,
Did you look in Appearance > Widgets in the WordPress admin area? There should be a “Recent Posts” widget you can drag over to your sidebar.
What theme are you using?
Regards,
PaulForum: Fixing WordPress
In reply to: List of posts where custom field is empty?Hi there,
If the meta_value is empty, then most likely there will not be a custom field item for that post.
So, your:WHERE $wpdb->posts.ID = $wpdb->postmeta.post_id AND $wpdb->postmeta.meta_key = 'type'… is going to result in no posts.
Let me know if this doesn’t make sense.
PaulForum: Fixing WordPress
In reply to: PERMALINK PROBLEM-HAVING MORE THAN TWO PERMALINK FOR SAME POSTHi there,
It is not a 301 Redirect, but also not necessarily a bad thing. WordPress does this using permalink aliases, that is — it doesn’t forget the old link, just in case you spread that link around the internet before you updated to a new permalink structure.
That said, you don’t want the rest of the internet using two different URLs to get to the same page on your site. SO, if you have any sites (or your own site) linking via the old URL, you should update that to use the new structure.
If you don’t, then your “Link Juice” for SEO purposes will get divided between the two different URLs.
Let me know if you need more clarification / help.
Take care,
PaulForum: Fixing WordPress
In reply to: Can't update posts/pages after upgrade to 3.4.1Howdy,
Haven’t seen this issue. Hmm…
1. Deactivate plugins again.
2. Can you try a different browser? I’m not saying it’s a browser problem, but clearing cached doesn’t always really clear all that you need to clear.
3. Also wondering if you have some sort of caching plugin enabled (Supercache, W3TC, etc.) if so make sure you “clear cache” in its settings — that is server-side cache and unrelated to your browser cache.Let me know if you need more help.
Paul