Riversatile
Forum Replies Created
-
Hi,
Did you test to deactivate all plugins to see what’s happening ?
Forum: Fixing WordPress
In reply to: Overwrite existing graphics with newHi,
Why don’t you have FTP access ?
If you talk about the WordPress theme…
If your graphics that you want to change are part of the theme you choosen, you must not use the Wordperss media gallery to upload and overwrite these graphics !
This is only for post/page purposes.You have to identify each graphic file in your theme folder according to the CSS file (style.css), then upload new version of these files using your FTP software to upload them and overwrite them into your server (theme folder).
Forum: Fixing WordPress
In reply to: How to organize category pages into excerpt and thumbnailThis depends where you want to see this…
Home = in index.php
Single Post = in single.php
Single Category = in category.php
Page = in page.phpForum: Fixing WordPress
In reply to: get date from latest post of categoryForum: Fixing WordPress
In reply to: urgent: 404 on page navigationHi,
Did you try to rebuild permalink structure ?
Go to “Permalinks” and simply click on “save”.Forum: Fixing WordPress
In reply to: How to organize category pages into excerpt and thumbnailHi,
To do this, you can do something like this :
<div class="posts" style="display: block;"> <div class="left-posts" {{{style="clear: left; float: left; width: 50%;"}}}> <h3 style="..."><?php the_title ?></h3> <div class="post-content" {{{style="float: left; vertical-align: top; border: 0px solid silver; margin-right: 5px;"}}}> <?php if (has_post_thumbnail()) { echo '<div class="attachment-thumbnail">'; the_post_thumbnail('post-thumb', array('title' => trim(strip_tags( $attachment->post_title )))); echo '</div>'; the_excerpt('Lire la suite de cet article »'); } else { the_content('Lire la suite de cet article »'); } ?> </div> <div class="right-posts" {{{style="clear: none; float: right; width: 50%;"}}}> <h3 style="..."><?php the_title ?></h3> <div class="post-content" {{{style="float: left; vertical-align: top; border: 0px solid silver; margin-right: 5px;"}}}> <?php if (has_post_thumbnail()) { echo '<div class="attachment-thumbnail">'; the_post_thumbnail('post-thumb', array('title' => trim(strip_tags( $attachment->post_title )))); echo '</div>'; the_excerpt('Read more »'); } else { the_content('Read more »'); } ?> </div> </div>As you can see, you have to truncate the 2 columns with 2 CSS rules (1 for the posts on the left and 1 for the posts on the right)
You will see which CSS attribute to create/update between the {{{…}}}Forum: Fixing WordPress
In reply to: not loading for any page on the blogYeah ! It’s very strange, and you have only the </body> at the end !
Do you use child themes ?
Forum: Fixing WordPress
In reply to: Server Error after trying to update the functions.phpHi,
Know that when you see ERROR 500, this can never comes from your files.
Because it’s a Internal Server Error (eg: Apache… etc)You can try to restore the previous functions.php and theme files, but I think the error will occur again.
Did you know if that theme is compliant ? Is it come from http://wordpress.org/extend/plugins/ ? Because perhaps once you installed it, you were hacked !Forum: Fixing WordPress
In reply to: Unable to LoginHi,
First, you have to deactivate the plugin custom-login.
To do that, follow these steps
choose “Choice 1: Disable the Files”Forum: Fixing WordPress
In reply to: Sidebar in the child pages also in the parent page using PHPHi,
If understand well, “Beton” & “Betonstaal” are subcategories ?
and the sidebar appears only in products (products are posts) ?If yes, you juste have to edit the single.php file.
Then look for a ‘sidebar register’ like :
<?php if ( !function_exists('dynamic_sidebar')...If you find it, locate it, copy/paste it in the category.php file at the same place that single.php.
Forum: Fixing WordPress
In reply to: Images not displaying on the siteOK, cool news.
Cheers
Forum: Fixing WordPress
In reply to: Problem adding Adsense ads.You’re welcome
Forum: Fixing WordPress
In reply to: How to add DATE, TIME, and NAME on each post and pageHi,
Somewhere in single.php file, you should have this portion of code :
<?php if(have_posts()) : ?> <?php while(have_posts()) : the_post(); ?>This is the loop, once a post exists for the post URL, it displays the post.
Then you should see this kind of code :<h3 id="post-<?php the_ID(); ?>" <?php post_class(); ?>><?php the_title(); ?>...</h3>
This is the post title.You can try to add DATE, TIME and AUTHOR’s NAME by adding this just after/below the poste title :
<span class="date">Posted on <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?></span> <span class="author">Writen by <?php the_author(); ?></span>Forum: Fixing WordPress
In reply to: Problem adding Adsense ads.Certainly because content.php is also called in index.php (home)
You can perhaps made a copy of content.php, call the file post-content.php, put the Google ad code in it and call the file post-content.php in your single.php file by doing this :
replace this code
<?php get_template_part( 'content', get_post_format() ); ?>
by this code
<?php get_template_part( 'post-content', get_post_format() ); ?>Like that, the Google ad should not appears in home.
Forum: Fixing WordPress
In reply to: Problem adding Adsense ads.OK… I can see this template is calling another template :
... <?php get_template_part( 'content', get_post_format() ); ?> ...So you can’t place the Google Adsense code here if you want to place it below the post title, because the post title PHP function is in the secondary template.