TheFactSite
Forum Replies Created
-
Alrighty then…
@codeinwp – My WP is updated to the latest version. I’ve put the code from your guide into functions.php – it’s just not working.
I’ve tried using the Feedzy widget, shortcode, posting on a page, in an blog post, I’ve tried editing the code, I even tried changing it to the read more link from your other tutorial – nothing I do makes any difference.
The bottom of this page is where the feed are displayed:
https://thefactnetwork.co.uk/the-fact-site/And the feed being used is:
https://www.thefactsite.com/feedAny ideas? I have none.
Is there any chance you can archive this topic & have the new one the main one? – It has more info on & with updated details (plus it took me ages to write!)
I assumed with this being an unresolved issue from 2 months ago that nobody noticed it still needs resolving.
Thanks!
LukeHey @codeinwp,
I was just checking in to remind you about this issue, it’s still unresolved and I’d really like to get this fixed soon!
Thanks for your time ??
LukeHey, Sorry it’s taken me a while to respond:
The bottom of this page is where the feed are displayed:
https://thefactnetwork.co.uk/the-fact-site/And the feed being used is:
https://www.thefactsite.com/feedLook forward to your response!
Thanks
Hey again,
I’ve found a solution to my issue:
$price = round($price) – 0.01;
return $price;However, the price only rounds up in the cart page (not on the product page).
It’s not a caching issue, and no other plugins/theme is affecting it.
When I set “Is multiple allowed” to “No”, it displays correctly on the site, and in the cart.. but then as soon as I get to the checkout page, the currency changes back to $ (instead of £) which my customers would find confusing.
I’d like to have “Is multiple allowed” set to “Yes”, and it displays the correct price throughout.
Please help!!
I can see in your documentation that you have instructions, however, I’m not very good with php…
I want to round the currency to the nearest .99
This is what I currently have, although I’ve tried various options, and havn’t seen my prices change yet… am I doing something wrong?
return number_format($price, 2, ‘.’, ”);
//some hints for price rounding
//https://stackoverflow.com/questions/11692770/rounding-to-nearest-50-cents
//$price = round($price * 2, 0) / 2;
//return round ( $price , 0 ,PHP_ROUND_HALF_EVEN );
//return number_format ($price, $this->price_num_decimals, $this->decimal_sep, $this->thousands_sep);Hey, I’m not able to message you on Twitter – please could you drop me an email: luke[at]thefactsite.com
Thanks!
Hey, thanks for getting back to me ??
With my setup, I don’t want different images for sizes, so white/small & white/medium will be the same image, but the way my store is set up is that each variation is separate from the others, and not grouped by [color]/[all sizes].
Thanks
LukeOk that’s great, thanks!
Luke
Hey, sorry it took me a while to get back to you… when I remove the snippet, the top & bottom pagination both disappear…
Hope you can help!!
I’ve looked through my theme templates and removed all other occurrences of wp_link_pages()- but it didn’t make any difference…
Do you know where I need to look specifically?
Sorry for being a dumb-ass, and I’m really grateful for all your help so far.
Thank you Jeremy, that worked well, the only issue is the same as seoulsistahh, the page links appear at the top and bottom of the post, is there a way to only have it appear at the bottom?
You can see an example here: https://www.thefactsite.com/2010/09/300-random-animal-facts.html
Thank you so much for your help, I really appreciate it.
Sorry I still don’t understand.. I have used this…
function jeherve_custom_pagination( $content ) { if( is_singular() ) { $content .= wp_link_pages('echo=0'); } return $content; } add_filter( 'the_content','jeherve_custom_pagination', 1 );
Where do I put in the details for the div class?
Hi Jeremy,
I used your code to fix the placement of the pagination links, however due to my lack of php skills, I would like to know how to style the pagination, I had it done before using the other way (in the single.php) – but cannot work out how to do this now…
Please help!
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] YARPP Displaying on Home PageI’ve managed to hide it using CSS for now…
however if you know of a way to fix this properly, that would be great… thanks