timduncan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: blog title and footer overlap problemmaybe try putting a clearfix div after your section? (blind guess).
could you share your url?Forum: Fixing WordPress
In reply to: child of post type (custom)solved:
$the_query = new WP_Query( 'post_type=foo&post_parent=93' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>' . get_the_title() . '</li>'; endwhile;
Forum: Fixing WordPress
In reply to: my single-custom_postytype is showing all posts contentjust realized that, seems I wasn’t paying attention to this.
thanks for the fast reply @keesiemeijer !Forum: Fixing WordPress
In reply to: wp hacked injections before linksphpmyadmin -> wp_options -> blogurl
Forum: Fixing WordPress
In reply to: Jquerry implementationhere you go the full code
https://snipt.org/uhaff4but you need to make the css yourself
Forum: Fixing WordPress
In reply to: Jquerry implementationyou need to do it yourself ??
inside the loop make a
<div class="box"> <?php the_content(); ?> </div>
and a<div class="boxcover">cover with this</div>
and then style it.Forum: Fixing WordPress
In reply to: Jquerry implementationafter you get it, copy the jquery file in your js folder then put in the header like this:
<script type="text/javascript" src="<?php bloginfo( 'template_url' ); ?>/js/jquery-ui-1.8.16.custom.min.js"></script>
in the code you will see the .box, means you need to have inside your loop, the content displayed in this box. and also you need the .cover div that contains the info you want to have.
hmm, is this more or less clear?
Forum: Fixing WordPress
In reply to: Jquerry implementationhi!
in your header.php place this
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
and download from somewhere this: jquery-ui-1.8.16.custom.min.jsthen add this piece of code in your header.php:
https://snipt.org/uhaU1style it and that’s it.
Forum: Fixing WordPress
In reply to: How do I organize my pages? I am lost and a noobgo to dashboard and look for menus. then you can re-order your menu
Forum: Fixing WordPress
In reply to: utf danish letters in contact formsolved!
in case someone has same problem, I changed this in my send.php or php code:$body .= "*Name: " . htmlentities($name, ENT_QUOTES, 'UTF-8') . "\n\n";
the UFT-8 makes the magic.
Forum: Fixing WordPress
In reply to: New Instal – Pages Are Not Showing Upcheck it in the phpmyadmin and update to new url.
Forum: Fixing WordPress
In reply to: my blog posts don't show the date…true, true. thank you
Forum: Fixing WordPress
In reply to: my blog posts don't show the date…come on man, this is not kindergarten. don’t take it so personally;
try adding the time code on line 11. then add to your css -> div.date {display:inline;}
put your time code between a <span> </span>
this MIGHT work, I THINK. I am learning now also.use firebug and test yourself styling, this is the was you will learn something.
question: why do you have this here? the_category(‘, ‘);
instead of the_category(); ??let me know how is it going, maybe I can help.
cheers
Forum: Plugins
In reply to: [Responsive Sticky Slider] [Plugin: Sticky Slider] paginationHi!
I didn’t have time to check it, but thank you.
Meanwhile I had to do my own, somehow ??O zi buna ??
Forum: Fixing WordPress
In reply to: my blog posts don't show the date…look at my code:
<ul id="single_noticias"> <li><?php the_post_thumbnail('noticias-thumb');?></li> <li><span class="red"><?php the_time('m/j/y') ?></span></li> <li><h3><a>" ><span class="red"><?php the_title(); ?></span></a></h3></li> <li><p><?php echo get_the_excerpt(); ?></p></li> <li><span id="read_more"><?php echo twentyten_continue_reading_link(); ?></span></li> <li id="social-noticias">
[Please post code snippets between backticks or use the code button.]