dingdang
Forum Replies Created
-
OK I can confirm it works the problem was with the theme.
But you can test this with any theme, just put do_shortcode() somewhere in the header.php
Any page, my try was to put it in the header. Another plugin with the same functionality was working at the same point.
I do it in functions.php in a child theme, not sure what you want to show.. In that case the shortcode is not processed and is printed as is.
Forum: Plugins
In reply to: [WP Mobile Menu - The Mobile-Friendly Responsive Menu] Unhide defaultsOK but have you added this to your current version?
P.S. To be more precise here is a lot simpler question how to do:
I want the home page to be able to be seen by logged out users and any other logged in user except with a role X.I hope you see here the problem of your implementation: if I set a rule for logged our users (to be able to see the home page), that would make all the logged in to be forbidden; if I first set the rule for logged in except.. then the logged out will get forbidden. And the next rule in the chain is ignored.
Forum: Plugins
In reply to: [Imsanity] Process all images🙂 Well I haven’t find it, I have to patch your code to achieve what I need… You could think of a little extension to the plugin, it would be usable to others.
Forum: Plugins
In reply to: [Imsanity] Process all imagesHello,
I think you didn’t understood my question, but unfortunately I checked the code and the answer to my question is NO.
Once again – it is about forcing rewrite of images even when there is no need to resize – just to apply different quality of JPEG.
No it is not resolved at all.
Forum: Plugins
In reply to: [Premmerce Brands for WooCommerce] Polylang TranslationDo you have any ETA for a fix, or if it is not soon any info that you have that causes this would be helpful, so I fix it myself instead of digging in your plugin. Thanks
Forum: Plugins
In reply to: [Advanced Product Fields (Product Addons) for WooCommerce] URL to add to cartAnd just to clarify again – the URL in my initial question was an example “before” and my question is how it should look “after” if I would like to add specific product with specific predefined custom field. In my previous reply I show how to do it and it is doable. Thanks!
- This reply was modified 3 years, 4 months ago by dingdang.
Forum: Plugins
In reply to: [Advanced Product Fields (Product Addons) for WooCommerce] URL to add to cartDone – just to close the case (I asked in my first question “is there also additional variables to pass in addition to b)” – after some more checking of the form you generate it happens that also the variable wapf_field_groups must be passed. In that case it works. So if anyone else needs this the format is the following:
where SOMETHING must be replaced with appropriate values based on the specific product’s data.
Forum: Plugins
In reply to: [Advanced Product Fields (Product Addons) for WooCommerce] URL to add to cartAnd to add here some of my tests:
- if I send the add-to-cart url without the specific variable (I’ve got its name from the form) – yes as you suggested it will not be added to the cart
- however if I do include the variable in the url with some value – the product is added to the cart but surprisingly WITHOUT the variable value’s taken into consideration – is this a bug?
Forum: Plugins
In reply to: [Advanced Product Fields (Product Addons) for WooCommerce] URL to add to cartI think you misunderstood me – I’d like to add the required field as well i.e. to add to cart a specific product with some predefined additional field using your plugin. Is this possible?
Also I’ve found a bug:
- if the country is hidden (trough your plugin) I can use the woocomerce woocommerce_billing_fields filter and make some of the fields as NOT mandatory (even though in your plugin and by default in woo they are mandatory) Note that I use priority larger than yours which is 1000 by default
- if however the country is not hidden (trough your plugin) then THERE IS NO WAY for some reason to make other fields from the address not mandatory (using the same code that works above.
Could you give me an idea how to fix this, is it a bug, can you fix it, and WHY I can’t overwrite the fields’ required option?
ALSO as per my initial question I need info what to call from inside this filter (woocommerce_billing_fields) to access the value of a field defined in your plugin. (The goal is to have conditional logic based on the field; I doubt what I need is implemented by you in the pro version, so don’t offer me the pro version, just provide the required info and a way to overpass the bug described here).