katmacau
Forum Replies Created
-
Yes, thats correct. I renamed the reference file in this post.
I looked at the folder woo-product-feed-pro and it has the permissions as 755. The xml file ‘I can see filename.xml’ is there with permissions 644. But not ‘filename_tmp.xml’ is on the server.
I also noticed this similar error message:
[23-Nov-2022 07:52:36 UTC] PHP Warning: copy(/home/customer/www/mysite/public_html/wp-content/uploads/woo-product-feed-pro/xml/filename_tmp.xml): Failed to open stream: No such file or directory in /home/customer/www/mysite/public_html/wp-content/plugins/woo-product-feed-pro/classes/class-get-products.php on line 5100Should I make a filename_tmp.xml for it to have a file that exists on the server to write to?
Hello. This has stopped working after running recent plugin updates. Please advise what I should update it to?
Thanks
Any updates on this? PHP7.4 reaches EOL next month. Better to upgrade sites to PH8.1 than have to update to 8 only to have to update to 8.1 next year.
Thank you!! This solution worked for me too.
That’s great. Thank you.
Hi Adam
It’s single wordpress site setup with root-relative URLS so that it works as both mysite.com.au and mysite.co.nz.
And then geo-targeting used to alter some bits of content or page availability for each domain.
Not a multi-site setup.
Thank you.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Twenty Twenty Two Font ControlActually my child style.css is ignored too. I followed the steps shown here See https://kinsta.com/blog/twenty-twenty-two-theme/#extending-twenty-twentytwo-with-a-child-theme but not luck.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Twenty Twenty Two Font ControlI would like a solution for this too! I tried setting up a child theme with a json file that covered the fonts. But no luck.
I was able to add a child style.css file and that recognised my custom CSS. However it almost seems like my theme.json is not being observed. This is my child theme.json:
`{
“version”: 2,
“settings”: {“typography”: {
“dropCap”: false,
“fontFamilies”: [
{
“fontFamily”:”Roboto,\”Helvetica Neue\”,sans-serif”,
“name”: “System Font”,
“slug”: “system-font”
},
{
“fontFamily”: “\”IBM Plex Sans\”, sans-serif”,
“name”: “IBM Plex Sans”,
“slug”: “ibm-plex-sans”,
“fontFace”: [
{
“fontFamily”: “IBMPlexSans-Light.woff2”,
“fontWeight”: “400”,
“fontStyle”: “normal”,
“fontStretch”: “normal”,
“src”: [ “file:./twentytwentytwo/assets/fonts/ibm-plex/IBMPlexSans-Light.woff2” ]
}
]
}
],
“fontSizes”: [
{
“size”: “1rem”,
“slug”: “small”
},
{
“size”: “1.125rem”,
“slug”: “medium”
},
{
“size”: “1.75rem”,
“slug”: “large”
},
{
“size”: “clamp(1.75rem, 3vw, 2.25rem)”,
“slug”: “x-large”
}
]
},
“layout”: {
“contentSize”: “960px”,
“wideSize”: “1000px”
},
“styles”: {
“blocks”: {
“core/post-title”: {
“typography”: {
“fontFamily”: “var(–wp–preset–font-family–ibm-plex-sans)”,
“fontWeight”: “300”,
“lineHeight”: “var(–wp–custom–typography–line-height–tiny)”,
“fontSize”: “var(–wp–custom–typography–font-size–gigantic)”
}
},
}
}
}
}Forum: Plugins
In reply to: [WooCommerce] Get products in stock range with wc_get_products()Great. Thank you!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Using the block settings in other themesThank you. I ended up using this theme.json and it worked to get group block options showing!
{ "version": 2, "settings": { "blocks": { "core/group": { "spacing": { "padding": true, "margin": true }, "border": { "color": true, "radius": true, "style": true, "width": true } } }, "appearanceTools": true } }However, that obviously nullified the the inner group container. So I can’t roll this out on pre-existing sites as it will break the layout. For this new site, I just double-grouped my content so that I could make an inner-container for styling purposes. Hopefully a way to allow inner-container will become available so I can retro-fit theme json benefits into existing sites.
Thanks!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Using the block settings in other themesThanks. I can be available for all blocks. I was more using that as an example.
I tried adding
"settings": { "appearanceTools": true }But I didn’t see any of those extra block options appearing sorry.
Forum: Plugins
In reply to: [LiteSpeed Cache] Keep pages cached when item in cartExcellent. That is what I needed. Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] Keep pages cached when item in cartThank you. OK to wait.
Forum: Plugins
In reply to: [LiteSpeed Cache] Keep pages cached when item in cartThe cart items display fine. The issue is that as soon as a customer adds a product to the cart, it then displays all the pages in the site as un-cached. Due to the cart has contents rule.
I want, if cart has contents to still show cached pages. But where I show that checkout link, which has the number of items in the cart, to use that ESI coding so that its dynamic. The pages are served cached, but the cart total is current.
Is that possible?