Hallo,
ich habe bis jetzt Wordpress im auf anderen Webspaces verwendet, aber, wie kann ich denn auf wordpress.com plugins hhinzufügen ?
Beiträge von Christian98
-
-
Hallo,
ich mache gerade ein Forum, aber irgentwie bekome ich eine fehlermeldung, wenn ich auf ein thema Antworte.
mein fehler: Warning: Cannot modify header information - headers already sent by (output started at /users/schuelerforum/www/wp-content/plugins/bbpress/includes/replies/template.php:1271) in /users/forum/www/wp-includes/pluggable.php on line 1228Wenn ich aber den tab aktualisiere, dann ist der post im forum.
-
in meiner wp-blog-header.php steht:
-
Hallo,
ich weis nicht ob es dass gibt aber ich bräuchte einen html code, der den blog anzeigt.Da ich nicht eine komplette seite üfr den blog verwenden will, sondern nur einen Bereich.
-
Hallo,
mein theme sollte neue widgetareas erhalten, aber wie kann ich solche erstellen, ihre postiion festlegen.
Am besten wäre noch, wenn man dies einstellen könnte :?: -
-
hallo,
ich habe eine webseite erstellt mit dem tempera theme, jetzt ist mir aufgefallen, das dieses theme nicht responsive ist, wie kann ich das selbst responsive machen :(.
Link zur webseite: http://tv-koetzting.cwsurf.de/ -
Hallo, ich möchte zu meiner webseite einen Shop hinzufügen, das funzt auch alles Einwandfrei, nur wenn ich das Widget "tcp Attributes list" einbau wird dieses in der webseite nicht angezeigt.
-
Hallo, ich habe ein rießiges Problem mit Ihrem Slider. und zwar ich habe den shortcode so in meine PHP datei eingebeaut: <?php echo do_shortcode('[SlideDeck2 id=50]'); ?> , wenn ich meine webseite snacheue, funzt der slider nicht. Was mache ich falsch.
zu meiner Webseite: http://tv-koetzting.cwsurf.de/ :confused: -
mein neuer code, immer noch das gleiche Problem
PHP
Alles anzeigen<?php get_header(); ?> <!-- Carousel ================================================== --> <div id="myCarousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <?php $i = 0; $posts = get_posts ('category=6'); foreach ($posts as $post) : setup_postdata ($post); ?> <div class="item <?php if ($i == 0) echo 'active';?>"> <?php if (has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); ?> <img src="<?=$thumbnail[0]; ?>" alt="Sonst Was"> <?php } ?> <div class="container"> <div class="carousel-caption"> <h1><?php the_title(); ?></h1> <p><?php the_excerpt(); ?></p> <p><a class="btn btn-lg btn-primary" href="<?php the_permalink();?>" role="button">Weiterlesen</a></p> </div> </div> </div> <?php $i++; endforeach; wp_reset_postdata(); ?> </div> <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div><!-- /.carousel --> <!-- Marketing messaging and featurettes ================================================== --> <!-- Wrap the rest of the page in another container to center all the content. --> <div class="container marketing"> <!-- Three columns of text below the carousel --> <div class="row"> <?php $i = 0; $posts = get_posts ('category=1,2'); foreach ($posts as $post) : setup_postdata ($post); ?> <div class="col-lg-4"> <?php if (has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail'); ?> <img class="img-circle" src="<?=$thumbnail[0]; ?>" alt="Generic placeholder image"> <?php } ?> <h2><?php the_title(); ?></h2> <p><?php the_excerpt(); ?></p> <p><a class="btn btn-default" href="<?php the_permalink(); ?>" role="button">View details »</a></p> </div><!-- /.col-lg-4 --> <?php $i++; endforeach; wp_reset_postdata(); ?> </div><!-- /.row --> <!-- START THE FEATURETTES --> <hr class="featurette-divider"> <?php $i = 0; $posts = get_posts ('category=6'); foreach ($posts as $post) : setup_postdata ($post); ?> <div class="row featurette"> <div class="col-md-7"> <h2 class="featurette-heading"><?php the_title(); ?></h2> <p class="lead"><?php the_excerpt(); ?></p> </div> <div class="col-md-5" style="margin-top:130px;"> <?php if (has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'medium'); ?> <img class="featurette-image img-responsive" src="<?=$thumbnail[0]; ?>" alt="Generic placeholder image"> <?php } ?> </div> </div> <?php $i++; endforeach; wp_reset_postdata(); ?> <!-- /END THE FEATURETTES --> -
das Doppelpost hab ich geschlossen
und
magst du nicht deine Lösung anderen auch zur Verfügung stellen?
davon lebt dieses Forum nämlichDanke!
ich habe noch keine lösung, nur der code der oben ist timmt nicht mehr
-
kann geschlossen werden
-
Hallo,
ich mache gerade eine Wesbseite, aber jetzt möchte ich einen Slider hinzufügen, der sich auf die letzten 3-5 post bezieht, das geht auch alles einwandfrei, jedoch werden die bilder nicht gewechselt, man kann auch mit den pfeilen vor und zurück, die Punkte sind auch nicht funktionstüchtig.PHP
Alles anzeigen<?php get_header(); ?> <!-- Carousel ================================================== --> <div id="myCarousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <?php $i = 0; $posts = get_posts ('category=1'); foreach ($posts as $post) : setup_postdata ($post); ?> <div class="item <?php if ($i == 0) echo 'active';?>"> <?php if (has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); ?> <img src="<?=$thumbnail[0]; ?>" alt="Sonst Was"> <?php } ?> <div class="container"> <div class="carousel-caption"> <h1><?php the_title(); ?></h1> <p><?php the_excerpt(); ?></p> <p><a class="btn btn-lg btn-primary" href="<?php the_permalink();?>" role="button">Weiterlesen</a></p> </div> </div> </div> <?php $i++; endforeach; wp_reset_postdata(); ?> </div> <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div><!-- /.carousel --> <!-- Marketing messaging and featurettes ================================================== --> <!-- Wrap the rest of the page in another container to center all the content. --> -
Hallo,
ich mache gerade eine Wesbseite, aber jetzt möchte ich einen Slider hinzufügen, der sich auf die letzten 3-5 post bezieht, das geht auch alles einwandfrei, jedoch werden die bilder nicht gewechselt, man kann auch mit den pfeilen vor und zurück, die Punkte sind auch nicht funktionstüchtig.
<?php get_header(); ?>PHP
Alles anzeigen<?php get_header(); ?> <!-- Carousel ================================================== --> <div id="myCarousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> </ol> <div class="carousel-inner"> <?php $i = 0; $posts = get_posts ('category=1'); foreach ($posts as $post) : setup_postdata ($post); ?> <div class="item <?php if ($i == 0) echo 'active';?>"> <?php if (has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); ?> <img src="<?=$thumbnail[0]; ?>" alt="Sonst Was"> <?php } ?> <div class="container"> <div class="carousel-caption"> <h1><?php the_title(); ?></h1> <p><?php the_excerpt(); ?></p> <p><a class="btn btn-lg btn-primary" href="<?php the_permalink();?>" role="button">Weiterlesen</a></p> </div> </div> </div> <?php $i++; endforeach; wp_reset_postdata(); ?> </div> <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div><!-- /.carousel -->