Lucian Florian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help! My Plugin Can’t Work, Can’t Read From DatabaseYou start a plugin that you can’t finish?
If in future somebody discovers a bug? You will have to rely all the time on somebody else.
“When 2 engineers work on a project, the project doesn’t come up good”. Murphy Laws
Forum: Fixing WordPress
In reply to: Display all posts( and paginate)For pagination, use this nice plugin:
As for the rest of functionality you want is advanced stuff, so you will have to learn starting with wordpress codex.
Forum: Fixing WordPress
In reply to: Wrong name in “Recent comments” listHave you solved the problem?
I can’t see what you describe.
Forum: Fixing WordPress
In reply to: drop down menu–changing titles of menu itemsFor that I assume again that you have to add more pages. Can you provide a link to the plugin are you using?
Forum: Fixing WordPress
In reply to: drop down menu–changing titles of menu itemsI assume thast the name is calling the name of the pages dynamically. In this case rename the pages as you want.
Forum: Fixing WordPress
In reply to: Show all content on search pagetry the plugin search everything
Forum: Fixing WordPress
In reply to: WordPress for many research projectsYou do it like you said:
– create categories for each project
– you can display the categories usingwp_list_categories()
– with posts, assign them to their specific categoryIf you want to setup a different page for home, go in control panel, reading options and there you have a static page. Choose it for home page.
However, you need to create a special template for that, where you need the code for displaying categories, or simply link them manually.
Forum: Fixing WordPress
In reply to: Tryed to change my avatar and now i dont have the option to do so!Correct. My paste function didn’t work properly it seems.
Forum: Fixing WordPress
In reply to: Tryed to change my avatar and now i dont have the option to do so!Just create an account at gravavatar.com upload an image, and your profile image will appear in a lot of places automatically.
Forum: Fixing WordPress
In reply to: Indenting ParagraphsIt is best to create separate template for those pages which will use indentation and another teamplate for those who don’t use.
On a template you write:
<body class="indentation">
and on the other one:
<body class="no-indentation">in css you will have:
body.indentation p {text-indent: 10px}body.no-indentation p {text-indent: 0}So the paragraph will take those specific attributes.
If you don’t know how to create custom templates, you can find that information here in codex.
I think there is another solution to create an if statement, depending on pages, to assign class to body. Css will remain the same.
But solution I gave you is easier.
Forum: Plugins
In reply to: [plugin] Custom Field Template – Multiple Fields Error?So nobody knows?
Forum: Fixing WordPress
In reply to: WordPress & Google MapsYes, the visual editor mess up the ifram code, normally.
You should use a plugin for that. Try: http://wordpress.org/extend/plugins/google-maps-advanced/
There should be more than this one.
Forum: Fixing WordPress
In reply to: Image uploads – parent directory writableYou should go in control panel, settings->miscellaneous and you should check if you have: wp-content/uploads
When you move the database from localhost up, you encounter that type of problem.
Forum: Fixing WordPress
In reply to: Editing CSSyou need to change chmod for style.css from within active template folder.
Forum: Fixing WordPress
In reply to: Search Engine DescriptionInstall all in one seo pack and make sure you add description for each page.
Now it takes some time until Google revise the changes and is re-crawling your website, so you just need to wait.
This plugin: google sitemap generator might speed this process.