hatchlingweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Order Status for WooCommerce] Icon Code BrokenFYI: We have just purchased the paid version (for our client) as we needed it to use the custom email notifications feature and the icons are all now working as expected. Therefore the issue may seems to only occur on the free version.
Forum: Plugins
In reply to: [Custom Order Status for WooCommerce] Icon Code BrokenIn the meantime I have found archived version of linked website on WayBackMachine which shows all the icon references.
I understand your advice for saying its moreso related to an SEO plugin installed and its configurations, however we only have this one booking plugin installed and this has automatically come up in the Google Search Console reports as an issue. There is no settings with Yoast SEO (which we are using) to show or hide any such booking related pages.
We’ll try blocking it via the robot.txt file, but were just concerned that if this got blocked whether it may impact the functionality of the plugin.Ohh I didnt know that! Thanks for the tip! Much appreciated.
Thank you! That worked perfectly.
By the way, I usually find it best to add a Class or ID to the element I’m referencing with CSS. This allows me to isolate the exact element when using CSS. Ie:
#insta-feed {
inline-size: inherit !important;
}- This reply was modified 1 year ago by hatchlingweb.
Yes please. Its still an issue on another site as mentioned in my followup post previously.
Sorry, I did close the ticket before realising it was still an issue on another site. Seems to be a similar issue, but the above CSS fix didn’t work this time.Looks like a similar issue, but on one of our other sites… its chopping off the feed on only mobile views. Display towards the bottom of the page. Looks fine on deskop and tablet, just not on mobile. Tried the same CSS trick here, but it didn’t work. 🙁
https://hatchlingweb.com.au/Thank you for your detailed instructions. I took me a little while to find the exact element, but was able to set an ID to it, then apply a new CSS to that ID.
On the footer, I had to put another container inside of the flexbox and then the instagram feed widget in that, then I could isolate the wrapping element to apply a new CSS to that in a similar way.Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Table size issueWe have enabled a handful of “Search in” options, which are searching within product attributes, so the second function can’t be used.
Is there a way to auto clear cache? You have an option to setup a cron job to reindex table, can the same be done with clearing of cache? This way we dont need to manually clear the cache and it can be automatically done periodically?
Thank you!
Forum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Table size issueThank you. I will check settings and apply these functions.
Highly appreciate your detailed reply. Thank you. 🙂
Forum: Plugins
In reply to: [W3 Total Cache] AH01071 Php Warning“Never cache the following pages” option under Performance > Page Cache is empty on our website.
We do have entries in “Cache exception list:” however. Maybe thats conflicting also.
I remember having entries in there for our woocommerce store so have put them back (as they are critical for our site). So now it includes the following only:
shop*
cart
checkout
wp-.*\.php
index\.php
/?fl_builderForum: Plugins
In reply to: [Advanced Woo Search - Product Search for WooCommerce] Reindex table messageExcellent. Thank you.
It was only an issue after we had to regenerate our index table due to its massive size and then re-index all products. Otherwise we havent seen this message prior. Its probably something that shows up the first time you use the plugin. Either way, still best to only appear for the admin users. 🙂
Thank you for the fast response and resolution to the problem. Have upgraded and cant see the error anymore. 🙂
Thank you.
If you need any help debugging let me know. We have a staging site we can give you access to for seeing the error message.
Ive re-written it like this, with some slight ammendments:
function get_cart_item_quantities() {
global $woocommerce;
$item_qties = array();
$items = $woocommerce->cart->get_cart();foreach ($items as $item => $cart_item) {
if (!empty($cart_item[“variation_id”]))
$item_qties[$cart_item[“variation_id”]] = $cart_item[“quantity”];
else
$item_qties[$cart_item[“product_id”]] = $cart_item[“quantity”];
}
return $item_qties;
}