sprocker
Forum Replies Created
-
would rather not posts all this info on here – can I send that to you independently? thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WooCommerce Product Tabs content indexingsorry – I needed to tick to disable – now done and works perfectly!
Brilliant plugin!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WooCommerce Product Tabs content indexingThis is the Searching page: https://snipboard.io/G5RhY0.jpg
Victorian Tasmanian Quartz – gives 116 results so seems to be using “or” ==> https://www.scripoworld.com/?s=victorian+tasmanian+quartz
“Victorian Tasmanian Quartz” gives 0 results ==> https://www.scripoworld.com/?s=%22victorian+tasmanian+quartz%22
Why is the “And” not being used? do I need to re-index after the setting are changed?
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WooCommerce Product Tabs content indexingAnother question if I may….
I have set the Default operator to AND but I I am not getting the results I was expecting.
For example – if I search for three words eg victorian tasmanian quartz
The results I get include products that contain on of the three words – not all of them.
How do I ensure that the search results only show products that have all three words included in their description?
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WooCommerce Product Tabs content indexingYES! it worked GREAT!!!!
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WooCommerce Product Tabs content indexingthanks for your explanation…
The Tab content is stored on the wp_postmeta table with the meta_key _wpt_field_catalogue and the contents in the meta_value column.
Would your search look in this field if I set Custom Fields to “some” and entered _wpt_field_catalogue in the relevanssi_index_fields box?
Thanks
thanks – all he needs to do is be able to close it down.
๐
it closes as Admin, but it is causing issues for the shop manager…
He only uses a small screen so he is not able to closes the popup and access the abandoned cart page…
no, logged in as Shop Manager ๐
Forum: Plugins
In reply to: [Admin Menu Editor] WP Bakery Page Build not availableAmazing support from Jฤnis Elsts!!
Very Prompt, through and determined to get to the bottom of the issues – now sorted!
Thank you””””
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Add to cart value 0.01my issue was a discount plugin that conflicted…
try โSuppress third party discount plugins Suppress third party plugins from modifying the prices. other discount plugins may not works!โ set to โNoโ
sorted it for me….
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Add to cart value 0.01Excellent – if it helps with debugging “Suppress third party discount plugins Suppress third party plugins from modifying the prices. other discount plugins may not works!” set to “No” sorted it!
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Amount added to cart incorrectSuppress third party discount plugins: Suppress third party plugins from modifying the prices. other discount plugins may not works!Change this option only if recommended – when this is set to “no” the items are added to the cart sucessfully!
Sorry – the site I am working on is not live yet…
Forum: Fixing WordPress
In reply to: Log errors causing high server usageThanks for the advice!
Turned out it was some old core code that was no longer needed in the later versions of WordPress that was triggering the error.
Very impressed with my host, 34sp for getting to the bottom of it and sorting it for me!
Forum: Fixing WordPress
In reply to: Log errors causing high server usagethanks!!!
first error:// Calculate the larger/smaller ratios.
$smaller_ratio = min( $width_ratio, $height_ratio );
$larger_ratio = max( $width_ratio, $height_ratio );==> 458: if ( (int) round( $current_width * $larger_ratio ) > $max_width || (int) round( $current_height * $larger_ratio ) > $max_height ) {
// The larger ratio is too big. It would result in an overflow.
$ratio = $smaller_ratio;
} else {
// The larger ratio fits, and is likely to be a more “snug” fit.
$ratio = $larger_ratio;
}Second error:
// Very small dimensions may result in 0, 1 should be the minimum.
$w = max( 1, (int) round( $current_width * $ratio ) );
==> 468 $h = max( 1, (int) round( $current_height * $ratio ) );