Dougless
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 4.6 – Could not copy file.: wp-includes/class-wp-post-type.phpHi James.
Thank you for your reply. I appreciate it.
However, a manual upgrade was not the solution i was hoping for, but the thought had crossed my mind and you are probably right.I am hosting WordPress myself using an Ubuntu solution. I am wondering, if the issue could be caused by missing file permission or missing group rights within the ‘Include’ folder, since WordPress is unable to copy the PHP file.
Has anybody else experienced this issue yet?
Forum: Fixing WordPress
In reply to: WordPress 4.2 – Missing a temporary folderThat is a new post to me. Thank you, Andrew.
I will read that tomorrow and see if it provides me with a solution.I will post the solution here if I find it.
Meanwhile – if anyone else got a specific solution to this problem, feel free to speak up 🙂
Forum: Fixing WordPress
In reply to: PHP – Data to MySQL, through form – Newbie needs helpThank you very much, Istein.
I totally made myself blind on the code that I have.
You are much appreciated.
Would you happen to know why my database are storing the same data twice?
It is duplicating the rows when entered within the form.
Forum: Fixing WordPress
In reply to: How to add single.php to bootstrap navbar?Duh! Thank you!
I solved the issue with the following codesnippet:
<?php query_posts('posts_per_page=1'); while(have_posts()) : the_post(); ?> <div class="img-responsive"> <a href="<?php the_permalink(); ?>"><?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail(); } ?></a> </div> <?php endwhile; wp_reset_query(); ?>Forum: Themes and Templates
In reply to: Issue with sidebar (bootstrap template)Thank you very much! Been starring myself blind on this one…