basnyd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: redirection issueFound it! – http://core.trac.wordpress.org/changeset/9203
Forum: Fixing WordPress
In reply to: Blank white screen on blog and can’t access dash – PLEASE HELP MEI had the same issue. I found an extra blank line at the bottom of the upgrade.php. As soon as I removed the blank line everything worked fine.
HTH
Forum: Everything else WordPress
In reply to: Can’t remove “hacked” Link from sidebarHi –
A friend of mine had the same issue. It was tied to the theme. If I switched the them to one of the ones that came with WP, the link would stay removed after I deleted it. If I moved back to the custom theme my friend created (based on another theme), the unwanted link came back.
I then looked in the theme files and found a line that began —
<?php eval(base64_decode('with_a_lot_characters_in_between_')); ?>in the header.php file.
So far I have deleted that line and the link hasn’t come back. Knock on wood.
HTH,
BarbForum: Plugins
In reply to: wp shopping cart – category links not workingI got it working! I didn’t use the widget, I just added <?php show_cats_brands(); ?> to sidebar.php so I could have better control of the category listing.
I added the following to my wp-config.php (found in another post)
// This turns off revisioning and sets auto save to 1hr.
define (‘WP_POST_REVISIONS’, 0);
define(‘AUTOSAVE_INTERVAL’, 600);I connected to the database, and ran this query (which I found in another post):
DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = ‘revision’(of course, you should replace “wp” by the prefix you use for your tables.)
Beware, because it will delete all your “revisions”.
Then, you go to the e-commerce shop settings and you click “fix product groups permalinks”.
Forum: Fixing WordPress
In reply to: unwanted heading in left columnexclusivebuyerrealty dot com
Forum: Fixing WordPress
In reply to: unwanted heading in left columnForum: Fixing WordPress
In reply to: unwanted heading in left columnForum: Fixing WordPress
In reply to: unwanted heading in left columnI just noticed the page title is appearing on the left AFTER I fill in the fields for the All in One SEO Pack!! If I don’t fill in the fields the title doesn’t appear.
How can I keep using the All in One SEO Pack without having it show my page titles in the left column?
Thanks,
BarbForum: Installing WordPress
In reply to: Upgrade 2.3.3 – can’t login to adminFile was corrupted in ftp upload. I re uploaded files and everything worked fine.
Forum: Fixing WordPress
In reply to: links different than page titleHas anyone find a way to do this? I’d love to do it.
Forum: Plugins
In reply to: e-commerce plugin – error image uploadI’m still having a problem. If I upload an image that came directly off a camera. WP will act like the image is uploaded (jpg), but I never see the image on the screen. I have to open the file in Paint Shop Pro and re-save it as JPG and then upload the file. I make no other modifications. I literally just do a file-save-as and then I can upload the image.
Why would this be? Is there an image setting some where in WordPress?