Paul Kaiser
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog post font size to largeHowdy,
style.css in your theme, around line 639.
Let me know if you need more help or this didn’t hit the mark.
Take care,
PaulForum: Fixing WordPress
In reply to: Website links started opening in new windowGreetings,
Looking in the <head> of your site, I see some Javascript put there by your theme (CrossApple) that is causing the new windows to open.
Since it is a commercial theme, I can’t download it to test / debug, so you might have better luck hitting up the theme’s support forums:
http://support.hawktheme.com/Good luck,
PaulForum: Fixing WordPress
In reply to: Remove home page link from nav barHi MissMamo,
Have you checked out Appearance > Menus in the WordPress admin area?
You can probably just remove / add the pages etc. you want from your top menu.The iTheme docs also talk about the menus a little:
http://themify.me/docs/itheme2-documentationLet me know if you need more help.
Take care,
PaulForum: Themes and Templates
In reply to: Trouble to insert a custom sidebar in custom single post pageHey Flore,
In your single.php file, I see one container missing.
At the top before your first “section,” you need to open up a div for “main_content” and later of course close it out.// top of single.php <?php get_header(); the_post(); ?> <div id="main_content"> // we just added this line <section> <div id="section1"> blah de blah... ... ... // bottom of single.php </div> <!-- END main_content --> <?php get_footer(); ?>Let me know if this makes sense.
PaulForum: Fixing WordPress
In reply to: Float variable width divsHey dr06u,
Nifty solution–glad you got it figured out.
I’ve been thinking on this one and came up with another way that’s also simple. (Yours above is equally simple.)If you have:
<div id="container"> <div id="content"> Blah de blah </div><!-- /#content --> <div id="sidebar"> blah do blah </div><!-- /#sidebar --> </div><!-- /#container -->Then, you could add a classname “withsidebar” to the <body> tag of your page, only when a sidebar is present. Searching around, I already found a writeup:
http://codex.wordpress.org/Function_Reference/body_class#Add_Sidebar_ClassesSo following those instructions, you can have two different widths assigned to #content:
#content {width:1024px;}
.withsidebar #content {width:824px;}Take care,
PaulForum: Fixing WordPress
In reply to: Comments on Pages don't show and can't be leftFantastic, man. Glad I could help!
PaulForum: Fixing WordPress
In reply to: Undefined index: HTTP RefererGlad you figured it out.
You could also install the Google Analyticator or other such plugin, then just paste in your “UA-whatever’ code for that domain to get back your Analytics if you want.Cheers,
PaulForum: Fixing WordPress
In reply to: Float variable width divsHmm…
What will activate / deactivate the sidebar?
Is it going to be interactive, like using jQuery to hide / show the sidebar?
If so, you can add a function that occurs when the sidebar is hidden / shown that alters the class on your div#content. The class can then specify the width (in your CSS.)
PaulForum: Requests and Feedback
In reply to: Better engaging with your readers and followersHowdy Jaja,
Grand idea.
Please see:
http://wplift.com/wordpress-gamification-techniques-examples-and-free-pluginsand:
http://wordpress.org/extend/plugins/rockhoist-badges/and:
http://wordpress.org/extend/plugins/cubepoints/Take care, hope you make something awesome.
PaulForum: Requests and Feedback
In reply to: Please add epub and mobi mime types as allowed uploadsHowdy,
Please see this plugin:
http://wordpress.org/extend/plugins/ap-extended-mime-types/Take care,
PaulForum: Fixing WordPress
In reply to: Site not updating properlyHowdy,
Seems this may be a double post.
Anyway, check to see if you have a caching plugin. That will usually show new stuff to logged in user right away, but to anon user after a period of time (cache expiration.)
PaulForum: Fixing WordPress
In reply to: Site not accepting changes to blogHowdy,
It’s possible you are using a caching plugin, like W3 Total Cache, WP Super Cache, etc. Most are / can be configured to NOT show cache to logged in user / admin, but will show cache to other users.So, cache often set to refresh every hour. You add / update a post right now. 5 minutes later Joe Public checks your site: Not going to see your post. Maybe an hour later Jane Public checks your site: She’ll see the new content.
Good Luck,
PaulForum: Fixing WordPress
In reply to: Quick edit, Screen options, Help DO NOTHINGHowdy,
Can you please provide a link to your site?
Do you know who your web hosting provider is? (e.g., Hostgator, Bluehost, whomever.)
To find out what version of WordPress you are running, you should see it at the bottom when you are logged in to the admin area.
Did someone install this for you?Paul
Howdy,
Edit your wp-config.php file.
Please see:
http://wordpress.org/support/topic/definewp_cache-true-added-by-wp-cache-manager?replies=2Good luck,
PaulForum: Fixing WordPress
In reply to: Hide text editor for certain categoriesHowdy Windy,
To do that, you’ll need to create a custom post type for Events. When you create a custom post type, you get to specify what parts (editor, title, all that jazz…) the type supports and shows in edit.
The raw deal:
http://codex.wordpress.org/Post_TypesProbably more helpful:
http://wordpress.org/extend/plugins/types/There are other Custom Post Type plugins, as well.
Let me know if this is not clear.
Take care,
Paul