aysseline
Forum Replies Created
-
Same for me here, I just see that when I find your question. And also “sorted shortcodes” doesn’t work I don’t see any buttons icons only the separator. I make multiple tests (no plugins,change theme,make 0 functions,delete js…) without succes. Test on another site and it’s worse: no buttons for admin!
I see also that uninstall doesn’t really clean the db because with a new install shortcodes are here without import of xml?
I’m really desapointed because it’s a great plugin and I really need a way to put customs buttons in visual editor. Bad news for the new year…:(
Anyway, Happy New Year Matt!
I make a new try in the futur.Forum: Fixing WordPress
In reply to: Help With CSS PleaseYou didn’t read all my replie 😉
You’re right for the body css in your stylesheet, but if you displays source of your page (use Firefox with webdevelopper plug for good check about css and more) or if ou use bad browser like IE choose in menu:
Affichage >> Source (sorry I’m french maybe for you is Displays >> Source) and you can see all the html code of your page. See the body balise: you’ve got an inline style like I wrote above.
And if you’re not sure try this in your browser:
http://s2.wordpress.com/wp-content/themes/pub/contempt/images/blue_flower/bg.jpgIt’s the background image you have for your body style.
But you’re in hosted wordpress I don’t know how this work to manage your php files and css. It’s not a problem with your external stylesheet but with our php file. See your header.php if you can and the body balise in it.
Forum: Fixing WordPress
In reply to: Help With CSS PleaseHi,
You’ve got an inline style for the body of your template. Inline style overwrite external css stylesheet try to remove this:
<body style="background-image: url(http://s2.wordpress.com/wp-content/themes/pub/contempt/images/blue_flower/bg.jpg); background-attachment:fixed; background-repeat: repeat-y; background-position: top center;">only write:
<body>See your source page.Hope this help.
Forum: Requests and Feedback
In reply to: [Plugin: All in One SEO Pack] Version History DocumentationSame for me.I’m on 1.4.8.13 (first install) but want to known more about release history before I updapte. Thanks, great plugin 🙂
Forum: Fixing WordPress
In reply to: wp_list_pages and accessibilityI made some search on forum, and find a core solution here:
http://wordpress.org/support/topic/176215?replies=4It’s maybe possible to do this with a plugin (not tested):
http://www.technokinetics.com/plugins/page-lists-plus/
but I prefer a code solution and add just few plugin when I canAnd a non-dynamic solution:
write your own links pages (if you have few links) in html with no wp functionActually I put the core solution, not the best, but the shortest (I love short way)
And now tested with accesibility toolbar: all ten errors have disappear
Forum: Requests and Feedback
In reply to: HTML <a> outputed the_category() is unaccessible for CSSis unaccessible for CSS
false :
<li class="catag"><?php the_tags('',' > '); ?></li> or <span class="catag"><?php the_tags('',' > '); ?></span>give you what you need.
Simple and effective, code less (like jQuery)
Forum: Fixing WordPress
In reply to: Displaying posts fromcategorie based on custom fieldThanks for your reply. That run but not all:
– That display one post only (but I have two with this metakey) maybe I need to put “showposts number” elsewhere
– The read more link reload the page itself and doesn’t point to permalink of the postYou then have to setup $myposts and loop through the results
I think the answer is here but don’t know exactly how to deal with. My first code:
<h4>Actualité Alter Ego</h4> <?php $actus = new WP_Query("cat=4&showposts=4"); while($actus->have_posts()) : $actus->the_post();?> <img class="thumb" src="<?php bloginfo('template_url'); ?>/img/thumbs/<?php echo get_post_meta($post->ID, "Thumb", true); ?>" alt="<?php the_title(); ?>" width="60" height="40" /> <h5><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h5> <?php the_content_limit(75, "Lire la suite »"); ?> </div><div class="filethred"></div> <?php endwhile; ?> <div class="colrightbot"></div> </div><!-- END content colright--> <div class="post"><!-- START content post--> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="entry"><?php the_content(); ?></div> <?php endwhile; ?>And now with your changes:
<h4>Actualité de Alter Ego</h4> <?php $querystring = " SELECT wposts.* FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = 'Esat' AND wpostmeta.meta_value = 'Hennebont' AND wposts.post_status = 'publish' AND wposts.post_type = 'post' ORDER BY wposts.post_date DESC "; $myposts = $wpdb->get_results($querystring, OBJECT);?> <div class="actus"> <img class="thumb" src="<?php bloginfo('template_url'); ?>/img/thumbs/<?php echo get_post_meta($post->ID, "Thumb", true); ?>" alt="vignette" width="60" height="40" /> <h5><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h5> <?php the_content_limit(75, "Lire la suite »"); ?> </div><div class="filethred"></div> <div class="colrightbot"></div> </div><!-- END content colright--> <div class="post"><!-- START content post--> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="entry"><?php the_content(); ?></div> <?php endwhile; ?>I want to display the thumb and content_limit of the post and also show 4 posts in that cat. I trying different code with always error 🙁
Forum: Installing WordPress
In reply to: [Plugin: Contact Form 7] Failed to send message on localhostI think that I didn’t right explain: I work not offline but on local and I’m connected on internet. I try the script on a server on internet: it’s ok. I try on my localhost install: no email.