Lucian Florian
Forum Replies Created
-
Forum: Installing WordPress
In reply to: WordPress & JoomlaWhy do you want to have the work them,ether?
There are both CMS, but if you want to use wordpress for blogging because is better for this purpose, create a separate installation asides of Joomla, if you have that as main CMS and make a link to wordpress installation.
Probably you have custom fields with path to image.
Without at least a link to you blog is hard to tell.
wordpress bug. there are more people in this situation. Wait for 2.8.1
Forum: Fixing WordPress
In reply to: pre-build advice, site for a photography firmAs speed, WordPress is the fastest CMS from the most popular and ones.
The question is: can your hosting provider handle this?
Make sure you have bluehost as recommended hosting provider by WordPress.
After I went through several, I landed on this provider and I am very happy.
Forum: Fixing WordPress
In reply to: WP-PostRating’s Don’t Work On Theme.check and see if theme has in header.php, right before closing </head> tag
the next code:
<?php wp_head(); ?>If not make sure you insert it there.
Forum: Fixing WordPress
In reply to: Change Background Colorgo in wp-content/themes/default
open the file: style.css
Search for:
#header { background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center; }change it to:
#header { background: url('images/your-pattern-image.jpg') repeat 0 0; }Assuming you have saved the image in that folder.
Forum: Themes and Templates
In reply to: Help Neededthe dynamic code from above is not good as I missed a slash
/If you have the images in your template directory you can specify the path to a specific image like that:
<img alt=”OpeningLine” src=”<?php bloginfo(‘template_directory’);?>/Images/OpeningLineAnimated.gif”/>
In path from above, I assumed that you store that specific image, in an folder called “Images”
Forum: Plugins
In reply to: editing wordtube playlist orderYou can’t order the playlist with wordtube, just in ascendant or descendant way.
The description refers to this type of sorting.
If you want them in a specific order, you have to think good from beginning.
It might be a method but for that you have to hack into the pplugin’s code and any update would rewrite your changes.
Hopefully it will offer this function in future.
Forum: Themes and Templates
In reply to: Help NeededYou need absolute path for image sources.
So instead of:
<img alt="OpeningLine" src="OpeningLineAnimated.gif"/>try
<img alt="OpeningLine" src="http://OpeningLineAnimated.gif"/>
or to make the code dynamic, or in case you change domain name to work locally:<img alt="OpeningLine" src="<?php bloginfo('url') ;?>OpeningLineAnimated.gif"/>By the way, where do you upload your images? Don’t you have an images folder in template directory?
Forum: Fixing WordPress
In reply to: Automatic Upgradehmm, try
locahostI thing means the hosting provider information. It can be different, but most of hosting provider use as host information, the name from above.
Forum: Fixing WordPress
In reply to: Remove tagline from banner?I think you are talking about the title from address bar, because I see no tagline in your header.
If I am correct, go in header.php and search for
<title> you have some code here, post it back on forum if you are not sure if you want to change it</title>You need to have there:
<?php the_title(); ?> | <?php bloginfo(name); ?>where:
<?php the_title(); ?>– is title of page/post|– is delimiter can also be-<?php bloginfo(name); ?>– is the blog title. you can replace this with any custom textForum: Fixing WordPress
In reply to: Trouble publishing posts & imagesIt seem you don’t have
<?php the_content(); ?The code might be missing from within the loop. Have you deleted it?
If your default theme is intact, activate that one and see if you can publish over there.
Forum: Fixing WordPress
In reply to: Add large number of links to blogrollForget about the first post.
The solution for you is already discussed here.
Wordpress has already the import links function. What you have to do, is to export them. For that you have to create an OPML file as described in that post.The file should have this format.
Forum: Fixing WordPress
In reply to: Add large number of links to blogrollIf you are on localhost, you need to go in phpmyadmin, if you are an hosting provider, you need to go in control panel, access phpmyadmin under mysql management.
You need to search for the table called: wp_links.
To find out, how to export/import a table in mysql go here
So, basically, you want to export the table with the links you want to to use on other blogs and in the databases from other blogs, you should import that table.
Good luck.
Forum: Fixing WordPress
In reply to: Permanent Links updated but not my categoriesProbably you menu items are static.