guruconsulting
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Aweber WordPress Plugin] Not compatiblecan you elaborate on the problem?
Forum: Fixing WordPress
In reply to: RSS Feed for contenttry “bdp rss” plugin search in Google. It’s a very flexible plugin.
[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: WordPress ignores <p> tag and enter buttonThat’s always been an issue with WordPress. It has something to do with the choice of WYSIWYG and the text format filters.
Before WordPress resolves that, the only other work around I found is manually inserting the < br /> tag to force a line break.
[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: Display a link only to admin user levelif you want to test admin logged in, then you can do this:
<?
global $userdata;
get_currentuserinfo()
if($userdata->user_level>9){ // do your thing }
?>[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: Customizing ThemesTheme customization requires understanding of HTML/CSS (mostly CSS). It is not a WYSIWYG (What You See Is What You Get) editor.
The theme editor in your dashboard just allows you to do change the theme files w/o using FTP (but in most cases you will still need to change the file permission to 777).
You are not going to get free help on a GPL script, especially not over the phone unless you pay some webmaster to talk to you.
[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: Moving wordpress from root folderYep, here the official guide (look under “Moving WordPress Within Your Site” heading):
http://codex.wordpress.org/Moving_WordPress
[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: How do I move the top nav under the header image?Have you tried putting the menu code under the header_img div? It should be in header.php of your theme file.
[Signature moderated. Please read the forum rules!]
Forum: Fixing WordPress
In reply to: Mass Category add / RemoveMay have to downgrade to 2.6 and use your Batch Categories plugin to do what you need to do, then upgrade again to 2.7 – yeah, I know, not the best solution.
[Signature moderated. Please read the forum rules!]
Forum: Everything else WordPress
In reply to: All my blog posts are goneDid you allow user registration on your blog? If so, setting the default role as “Editor” may be the issue:
[Signature moderated. Please read the forum rules!]