CyberCoder
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] CSSI have already uninstalled and moved to another system. If I get a chance in the near future I will go back and try it again. Thanks for responding.
Forum: Plugins
In reply to: [Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] CSSYes, I found a work around using shortcode. But when I tried to use the default pages a lot of the text is grey which is impossible to read on the page. I tried to overwrite with my child plugin but the plugin overwrote that. Only way to change the colors is to modify the actual plugin code which I do not like doing as it then will get stepped on with any update.
Forum: Fixing WordPress
In reply to: Added admin user via Phpmyadmin, won't let me inYou can check the config.php to verify what the correct database and prefix is.
Forum: Fixing WordPress
In reply to: Added admin user via Phpmyadmin, won't let me inThat method at the link you posted works, so I would say double check everything, all it takes is one character to be wrong.
Forum: Fixing WordPress
In reply to: Added admin user via Phpmyadmin, won't let me inIf there was already an admin user in the database you could just change the password in PHPMyAdmin, just make sure to set the function to MD5. Much easier than trying to add a new user. If you do not get all the characters exactly right it will not line up and give you access.
Forum: Fixing WordPress
In reply to: Blog posts return 404 when adding blog title to permalink structureThese may be related to the hosting.
Top 2 things that I have seen cause similar issues are the htaccess file not updating correctly and server not being configured correctly (such as running WordPress on a Windows server)
Forum: Fixing WordPress
In reply to: Moving wordpress to different domainIf you are using a proprietary system that locks you into the host, I would create another site such as the .net on a host like Hostgator and then once it is ready switch the DNS to the old .com and point it at the new account.
During the development phase I would set your robots.txt file to keep Google from crawling the .net so you do not have duplicate content appearing in the index.
There is no “Easy Button” for that type conversion!
My apologies, I just missed it. I was testing on a non logged user. Good stuff, thanks.
Forum: Fixing WordPress
In reply to: Wrapping text around images/2.7LOL, My Bad, I assumed the stylesheet had been changed, Otto42 is right, it will work, I thought that was strange.
Forum: Fixing WordPress
In reply to: Wrapping text around images/2.7I think the problem now is you started a new paragraph right after the image, which is forcing to start over.
The image is in the paragraph with the text above it.
And “Bottom Line” starts a new paragraph.
Forum: Plugins
In reply to: Twitter Tools 1.5 upgrade — working for anyone?I have same issue with the Weekly Digest, I have tried to reschedule it a couple times, each time nothing happens.
NO errors that I can see, just no post.
Forum: Fixing WordPress
In reply to: Category pages displays regular blog posts2 suggestions.
1.) Take the call to the sidebar out and see if that has an impact.
2.) Double Check your Theme, if there is no Category.php, it goes to Archive.php, and then Index.php
Forum: Fixing WordPress
In reply to: Category pages displays regular blog postsNot sure K, just taken shots in the dark at what stands out, although, after further review, your bracketing should work.
Is the code in the sidebar the same as the code in the page?
Which one fires first?
Are you sure about the combo of is_category and in_category?
Forum: Fixing WordPress
In reply to: Category pages displays regular blog postsK, check your brackets, PHP can be very funny about that.
example: php if ( is_category(’41’) || in_category(’41’))
Maybe should be php if ( (is_category(’41’)) || (in_category(’41’)))
Forum: Fixing WordPress
In reply to: RSS feed for specific postsYou can also do Tag Feeds. So if your posts belong to more than one category, it might be easier to add a new tag for each feed.