Saronsongs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Homepage image thumbnails not showing on new postsHi cdm301
I don’t think I can help any further – the site this theme is on only has one main image per post https://www.frankcreber.co.uk, so that’s the one that is in the home page thumbnail.
The only thing I know for sure is that uploading the image fresh while creating a new post seems to work.
I could take a look at your site if you add your link, but I’d probably not be able to help ??
Forum: Fixing WordPress
In reply to: [eShop] [Plugin: eShop] Product not showing on product pageHa, do I smell a commission ??
Forum: Fixing WordPress
In reply to: [eShop] [Plugin: eShop] Product not showing on product pageApologies – fair comment.
Yes, ticking stock available did the trick. I’ve just done a full test and all OK.
I’ve been trying wp ecommerce and finding too many bugs.
If it helps, a donation is on it’s way to you shortly ??
Many thanks
Forum: Fixing WordPress
In reply to: Replacement for wp_rssFound a nice fix here:
https://www.dangayle.com/import-feeds-wordpress-fetch-feed/
<?php
include_once(ABSPATH . WPINC . ‘/rss.php’);
$feed = ‘https://example.com/feed/’;
$rss = fetch_feed($feed);
if (!is_wp_error( $rss ) ) :
$maxitems = $rss->get_item_quantity(3);
$rss_items = $rss->get_items(0, $maxitems);
if ($rss_items):
echo ”- \n”;
- ‘;
echo ‘get_permalink() . ‘”>’ . $item->get_title() . “\n”;
echo ‘<p>’ . $item->get_description() . “
foreach ( $rss_items as $item ) :
echo ‘\n”;
endforeach;
echo “\n”;
endif;
endif;
?>Forum: Fixing WordPress
In reply to: Homepage image thumbnails not showing on new postsThis is what fixed it for me – don’t know whether it applies to your situation.
I found that an image freshly uploaded into a new post appeared in the home page thumbnail, but the same image added from the media library into a new post didn’t appear in the home page thumbnail. In the second case, when loaded from the library, the image name/title was being used in the link, not the attachment ID. See examples below:
E.g. (these are old links but you’ll see the comparison)
this worked:
a rel=”attachment wp-att-600″ href=”https://www.frankcreber.co.uk/?attachment_id=600″this didn’t work
a rel=”attachment wp-att-502″ href=”https://www.frankcreber.co.uk/river-run/card-front-final-400″Hope that helps!
ClareForum: Plugins
In reply to: WP Event Calendar – Popup Lightbox View not WorkingYes, this happens to me too – I’m on WP 3.0.1.
Any help gratefully received!
ClareForum: Fixing WordPress
In reply to: Homepage image thumbnails not showing on new postsThis has been resolved now.
Forum: Fixing WordPress
In reply to: Homepage image thumbnails not showing on new postsClarification: no images show on new post home page thumbnails (images show fine in the actual post). e.g. image in this post is not the one being shown in the home page thumbnail https://www.frankcreber.co.uk/river-run
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Inserting audio player into tablesYes, marvellous!
Thank you very much — also for the great table plugin!
Best wishes, ClareForum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Inserting audio player into tablesHi Tobias, I also want to do this, using the same audio player, but haven’t edited a .php file before.
This is the last few lines of my functions.php file.
Where do I add the piece of code, and do I add ‘function’ before ‘add_filter etc.’ and do I need to add any { and } as well?
Thank you in advance for your help!
Clare========
function _wp_mysql_week( $column ) {
switch ( $start_of_week = (int) get_option( ‘start_of_week’ ) ) {
default :
case 0 :
return “WEEK( $column, 0 )”;
case 1 :
return “WEEK( $column, 1 )”;
case 2 :
case 3 :
case 4 :
case 5 :
case 6 :
return “WEEK( DATE_SUB( $column, INTERVAL $start_of_week DAY ), 0 )”;
}
}?>
- ‘;