Jeff Tincher
Forum Replies Created
-
having the same issue. the fields look to be there but cannot be filled in with credit card details. had to disable STRIPE payment and just go with paypal for now.
same here. just noticed this after reading your post and issue.
Forum: Fixing WordPress
In reply to: images not showing upmaybe it’s a permissions issue. can’t read the directory the images are in? i had a similar issue and cannot remember what i did to resolve it. sorry. but check your permissions!
also, i had an issue where my images were going into /wp-content/themes/THEMENAME/images. i didn’t like that for one reason. I tend to change my themes a lot and they would become broken images if i swaped themes.
Forum: Fixing WordPress
In reply to: Robots.txt: How to exclude just one page?yes i think that should do it!
i did find this info
Disallow: /*page_id=
that would not allow crawlers to crawl any url ending with page_id= so your page_id=27 would also work for that page only!
Forum: Themes and Templates
In reply to: how to change the margins of a header and footer? tyes, all of layout and formating of themes is controlled by CSS. all of the CSS will be in the style.css file. just goto your ADMIN PAGE and click on PRESENTATION > THEME EDITOR and select style.css or stylesheet (should be the first file you see after clicking on THEME EDITOR)
I am not familiar with that theme and don’t have the time right now to get the style.css file and check it out for you. sorry.
one of the themes I am using has this css for footer:
#footer { clear: both; margin:0; background:#474747; color: #ccc; font-size: 0.9em; border:#474747 1px solid; padding:5px 10px; width: 750px; }just modify the width to suit your needs!
Good Luck!
Forum: Installing WordPress
In reply to: downloaded Autumn 10 what’s next?themes must be FTPd into the wp-content/themes folder (ex. http://www.yourblogname.com/wp-content/themes
just copy the entire FOLDER of the theme into the /themes folder. then on your blog admin page go to PRESENTATION and the new theme should appear as you scroll down.
just click on the theme you want and it will become the default
hopefully this info gets you moving in the right directionForum: Fixing WordPress
In reply to: Google Analytics shows everything going to ../index.php — normal?hmmm, just checked out my analytics stats and they all look ok to me. I’m guessing you setup mod_rewrite for your blog? if not search on how to do that but here is the .htaccess file I’m using.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressthat’s my only thought about why the index.php is being added to each url. good luck!
Forum: Plugins
In reply to: stats plugin not workingif you are still stumped, this is the code that needs to be entered on your theme.
<?php wp_footer(); ?>place that code at the very bottom right before the </body> tag.