Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: default thumbnail image not showing… you certainly have an issue with the loop.
But it’s strange the 2 first posts displays the thumbnail correctly.
If it was a loop issue, there would be only 1 correctly displayed post.But did you defined a thumbnail (featured image) for the other posts ?
Forum: Fixing WordPress
In reply to: Homepage not loading correctlyYou’re welcome.
I have just did analyse the web page load with Google Chrome, by using ‘inspect the element’, on the ‘Network’ tab. If you see ‘pending’ elements, this means the element(s) is/are loading slowly.
It’s good to know this trick !
Forum: Fixing WordPress
In reply to: Homepage not loading correctlyIt seems the image hosted on the server at http://www.machu-picchu.us/machupicchu-machu-picchu/machupicchu.jpg is too slow on the home page.
On other pages, this image is not displayed, that’s why it loads faster.
Do some speed access to http://www.machu-picchu.us/machupicchu-machu-picchu/machupicchu.jpg
Forum: Fixing WordPress
In reply to: Hiding Admin Public Meta DataForum: Fixing WordPress
In reply to: Homepage not loading correctlyFor me, DNS Fails.
I can not get access at all.Forum: Fixing WordPress
In reply to: Cant Log In wp-adminYour website is too slow for me…
Hi,
First, by using your FTP software, your can deactivate your current theme by renaming temporarily the theme folder name.
This will load the default theme (twenty-twelve).
You will see if the error 500 disapear or not.Forum: Fixing WordPress
In reply to: default thumbnail image not showingTo display the thumbnail instead of the full width image, just replace :
the_post_thumbnail('full', array('title' => trim(strip_tags( $attachment->post_title ))));
by
the_post_thumbnail('thumbnail', array('title' => trim(strip_tags( $attachment->post_title ))));
in the code I sent you above.Forum: Fixing WordPress
In reply to: Lost Password and Email For Log InAs far as I know, except reinstall WordPress from scratch, there is no other alternative.
Because you don’t know the password and the email address you stored is not yours or does not exist.Forum: Fixing WordPress
In reply to: Lost Password and Email For Log InHi,
I think you do not have the choice now…
Connect to your database (e.g: phpmyadmin…) and make a backup (if you know how to do that, go here : http://codex.wordpress.org/Backing_Up_Your_Database).
Then, go to the table “wp_options” then select the option name “admin_email”, click ‘Edit’, paste the correct Admin Email then click ‘Run’ or ‘Save’. This will store the correct Admin Email address in WordPress database.
That’s it.You will be able to go your login page, click ‘lost password’, this will send a new password to the correct mailbox.
Regards
Forum: Fixing WordPress
In reply to: default thumbnail image not showingHi,
I saw the source code of your home page gives this for the featured image where your code is not worling :
<img src="" alt="">
This means the static code is correct but your function is not correct or not applicable to your theme.Instead of open and close PHP tag each time you use PHP around HTML code, you should try to use the ‘echo’ command within the PHP code. This prevent PHP tag issue and limit the number of PHP instances.
Also, instead of to get only the thumbnail source URL, try to get the entire thumbnail structure : <img src=”xxxxx” alt=”yyyyy” title=”zzzzz”> with the WordPress function ‘the_post_thumbnail’.
Try with this code :
<?php if (has_post_thumbnail()) { echo '<div class="attachment-thumbnail">'; the_post_thumbnail('full', array('title' => trim(strip_tags( $attachment->post_title )))); echo '</div>'; } else { echo '<img src="<?php echo get_template_directory_uri(); ?>/images/thumb_iceland.jpg" alt="iceland" />'; } ?>Forum: Plugins
In reply to: [Audio Player] Time is not working!Good news !
It works.Many thanks doryphores !
Good news !
It works.Many thanks doryphores !
Forum: Plugins
In reply to: [Audio Player] Time is not working!Hi,
As you can see in my post in this support section, there is also a bug with multiple instance of the players (if you use multiple players in the same page)
Check that on your site.Forum: Plugins
In reply to: [Audio Player] [Plugin: Audio Player] resume supportHi,
No it doesn’t and I don’t know an alternate plugin to do this.