jetshack
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit button in my Anaconda theme blogput an image where the x is pointing to…
Forum: Fixing WordPress
In reply to: Changing Lorem Ipsum text in sidebaryou’ve tried in the sidebar.php file?
if so what about in the wp-admin / options / general options -> tagline field?
Forum: Fixing WordPress
In reply to: Need Help putting linkable logo into wordpress header!maybe add a background image to the header div in your style sheet…
Forum: Fixing WordPress
In reply to: text before loop doesnt appear. Why not??Forum: Fixing WordPress
In reply to: How to get main text at top-not a postyou’re looking for something that looks like
<?php if (have_posts()) : ?>
you’d then put whatever you wanted to appear above that above it… for instance… here’s an example from something I’m working on right now…
<?php get_header(); ?> <div id="contentwrapper"> <div id="topcontentcolumn"> <img src="<?php echo getRandomImage($path_to_images, $default_img) ?>" alt=""></div> <div id="contentcolumn"> <div class="innertube"> <?php if (have_posts()) : ?>
where the stuff in the
<div id="topcontentcolumn">
has been added to show up above the posts.Forum: Fixing WordPress
In reply to: How to get main text at top-not a postyou could add it directly to the tempalte index above the loop.
Forum: Fixing WordPress
In reply to: How to restrict accessgo to wp-admin
click on the write tab
click on the write page subtab
add content
click on publish
point to this page as your static page to be displayed.Forum: Fixing WordPress
In reply to: Compare Price Web siteI’m willing to go out on a limb here and say that for what you’re wanting wp isn’t going to work.
you might try looking at something like
https://www.kaonsoftwares.com/price-comparison-script.html(first google result for “price comparison script”)
Forum: Fixing WordPress
In reply to: Trying to use different blogs – please helpor you could just use one blog and install a plugin that limits what users see based on their permission levels…
like the user levels plugin.
Forum: Developing with WordPress
In reply to: Almost no 404sallright… I’m sure you’ve noticed this, but…
one’s (the one that works) pointing into a directory structure and the other is pointing into the root directory. I don’t know enough about .htaccess to say what to do (I’m going to search around for something and see what I come up with)
but I’m guessing it’s somewhere in this
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
Specifically in the rewrite rule
Forum: Developing with WordPress
In reply to: Almost no 404slinks are the same… showing the 404
Forum: Fixing WordPress
In reply to: Pleas HELP with my grainy picturesi generally size resize my images to the size they’ll be displayed at on the site… there’s no sense in having and image that’s 2048px wide when it’s going to be displayed at 450px…
doing this cuts down on the file size (faster loading (and uploading for that matter)) and gives me a guarentteed result of what they’re going to look like on the site.
a pretty good program (ms endorsed for whats that worth) is irfanview… it’s not fancy, but it’s easy and will do batch conversions.
Forum: Fixing WordPress
In reply to: How to restrict accesscreate a static page in wp that fits the purpose of being the landing page for all visitors
under options – reading select display a static page and point it to that static page.
unclick anyone can register on the General options tab.
install the user levels plugin and set levels on posts and pages accordingly.
Forum: Fixing WordPress
In reply to: Comments too long?most of the site looks pretty screwy in ie7
Forum: Fixing WordPress
In reply to: Add Categorylink to site… and sidebar.php code