Lucian Florian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is WordPress appropriate for my requirements ?Yes, you can use custom fields for posts or even better, custom posts. I wrote an article that can give you an idea:
http://www.fldtrace.com/wordpress/wordpress-custom-post-types-custom-back-end-columns-and-post-thumbnailsForum: Themes and Templates
In reply to: Thumbnail won't show up in chromeIt is CSS problem; I bet Safari won’t show up that either.
Do some validation check up for CSS errors/bugs.
Forum: Fixing WordPress
In reply to: Is WordPress appropriate for my requirements ?You can have search box and display results: install search everything plugin or similar;
for rating system you can install dagon rating system or something else not that advanced.The google like pop-up you need jQuery person; I don’t think there is a plugin, but you can research.
Forum: Themes and Templates
In reply to: Activate the jquery script on my PHPsrc="Scripts/jquery-1.2.6.min.js">I would definetelly check this path to see if it is correct. Try do add absolute path.Forum: Themes and Templates
In reply to: 2 home pages…now blank pageWhen you display latest posts on home page, the default file that is loaded is index.php. I would check that one to see if it has the right code.
Forum: Fixing WordPress
In reply to: How can i get back my posts?It looks like a permalink error. Try to go in permalinks settings and re-save.
Have you also tried to go in back-end to see if the posts are still there, than view each post/page individually?
Forum: Fixing WordPress
In reply to: Internet Explorer Alignment IssuesTry to add text-align: center for body than text-align: left for div id=”content”, to reset alignment.
That should do it.
Forum: Fixing WordPress
In reply to: Show the_post_thumbnail() on home page | Latest posts.Resolved. With default thumbnails, I forgot to attach thumbs for the posts in that category. The following code will generate the latest 5 posts from category with id=7. Will show up linked thumbnails and titles to each post:
<?php global $post; $myposts = get_posts('numberposts=5&category=7'); foreach($myposts as $post) : setup_postdata($post); ?> <ul class="latest clearfix"> <li class="latest_thumb"> <?php if ( has_post_thumbnail() ) { ?> <a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a> <?php } else { ?> <a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_directory') ;?>/i/news-img.jpg" alt=" "/></a> <?php } ?> </li> <li class="latest_text"> <span class="date"><?php the_time('F j, Y'); ?></span> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li> </ul> <?php endforeach; ?>Forum: Fixing WordPress
In reply to: Get active category of post in multiple categoriesForum: Fixing WordPress
In reply to: Get active category of post in multiple categoriesForum: Fixing WordPress
In reply to: Show the_post_thumbnail() on home page | Latest posts.Here is the proper code:
<ul> <?php global $post; $tmp_post = $post; $myposts = get_posts('numberposts=5&offset=1&category=1'); foreach($myposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> <?php $post = $tmp_post; ?> </ul> <ul> <li class="latest_thumb"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a></li> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <ul> <?php endforeach; ?>Forum: Plugins
In reply to: Images not Saving to Image Widget@szbalazsb thanks for the code. There is no conflict now.
It would be really nice if the Custom fields author would add this fix in future releases so we don’t have to hack the code after each update.Forum: Plugins
In reply to: [Plugin: Contact Form 7] no confirmation, spining cicle – ajax problem?It was a plugin conflict after all. I deactivated all the plugins tested and it worked. Reactivated them again and still works.
The plugins I assumed are trouble makers are: custom field template, all in seo pack, supercache, wp-syntax highlighter.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] no confirmation, spining cicle – ajax problem?After upgrade I’ve seen some weird escape characters inserted into the code
\. Now I get all of the fields, but still no feedback on the form.Forum: Plugins
In reply to: Image Widget plugin blank pageI confirm the conflict with custom field template. After 1 month still no fix.