TwoThirdsWater
Forum Replies Created
-
Marking resolved.
Hotfix works a treat. Thank you!
Amazing & speedy support @msaari … I very much appreciate it.
Thanks for confirming the behavior @msaari …
I appreciate ours is an edge use case, but if a filter could be made available to enable this it would be great please. We are using relevanssi on a REST api method to quickly filter lots of text based on very fuzzy matching so middle word highlight would really enhance this. Thank you in advance!
Forum: Plugins
In reply to: [WC Fields Factory] Showing custom field twiceI am also experiencing this issue. I don’t want to go down the jQuery hack route. Is there going to be an official fix to this issue please?
That is great news… thank you Harish. (And thanks again for this plugin!)
Hi Julka
Many thanks for the pointer.
Clearing the cache (and running all available updates) has gone some way to fixing the problem. The share icons are now appearing on the post pages, but not on the homepage or category pages.
The sidebar is configured to appear on the homepage (and all other templates).
Do you have any other suggestions please?
Thanks again for your help…
Forum: Plugins
In reply to: [CP Contact Form with PayPal] Forms not appearing since upgrade to WP 4.5.1Awesome! Thats fixed it.
Thank you for the fast response.
I’m having an almost identical issue to Dr Stout. The addthis plugin works fine on my test platform, but not on live.
Looking at the page source, the addthis css file is being added to the footer, but not the preceding Javascript blocks that I can see on my dev platform.
There are no JS errors being reported.
I’m very nervous about attempting Dr Stouts solution however, as the live site is very high traffic and any theme fiddling will cause problems.
Julka do you have any idea what might be stopping the addthis JS from being written to the page please?
Thanks!
Forum: Plugins
In reply to: [Products Per Page for WooCommerce] Products Per Page on Main Shop PageHi Jeroen, Thanks for your reply. This is the confusing point for me.
I am using a modified archive-product.php file within my theme, but the same modified file is used for the main shop page (products per page doesn’t appear) and for category pages (products per page does appear)!
For some reason it seems the whole Showing X of Y & Sort order information isn’t appearing on the shop screen. For some reason the action that pulls that in aren’t firing there…
I’ll keep fiddling…
The ability to use Custom Post Types would be great please.
Forum: Plugins
In reply to: [Registered Users Only] help! Deactivated plugin but still being redirectedDid you find a solution for this? Having the same issue!
Great! Thank you!
Forum: Themes and Templates
In reply to: Custom 404 for 'draft' postsI managed to figure this out. It seems the post ID isn’t available via code directly, but if we grab the URI of the page we are on, its possible to get the post object from the function get_page_by_path
Code that works for me is:
$page_path = $_SERVER["REQUEST_URI"]; $postObject = get_page_by_path( basename( untrailingslashit( $page_path ) ) , OBJECT, 'post');Though I think some servers might not return you the request URI.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Number of results per page variesAh. Its taken me a while to get back to this. But it was my error – there was another filter on the results.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Number of results per page variesI’m just using the standard pagination code
<div class="sideways_navigation"> <div class="alignleft"><?php next_posts_link('« Next Recipes') ?></div> <div class="alignright"><?php previous_posts_link('Previous Recipes »') ?></div> </div>There are no filters on results that I know of.