Antonino Scarfì
Forum Replies Created
-
Forum: Plugins
In reply to: [MultiStep Checkout for WooCommerce] Email with special chars invalidWhat files do you need? ?? It’s simply a wrong (or too simply) regex which makes an email invalid in the checkout form. You can simply replicate by testing the checkout using an email with
+
for example (like [email protected]). You shouldn’t need any file or other info.However, ok. I will drop a ticket there tho.
Forum: Plugins
In reply to: [Pixel Caffeine] Conversion API and liteSpeed cache problem and solutionHi,
thanks for sharing this. I’ll try to integrate a similar solution into Pixel Caffeine too because I fear there are many users as you that have problems when using caching plugins.
I hope that developer of the cache plugins will help all users to find a solution with their plugin, but I’ll do my best to integrate a solution from the Pixel Caffeine side.
It’s not easy and it’s not immediate, but I’ll do the possible.
Thanks! ??Forum: Plugins
In reply to: [Pixel Caffeine] Category-Specific FieldsCiao @claudiozappi ,
Purtroppo non è possibile da admin associare degli attributi di WooCommerce ai parametri del feed per un item. è una caratteristica che ho intenzione di integrare quanto prima, ma purtroppo non so dire quando potrò farlo.
Un modo per farlo c’è, ma richiede un po’ di codice.
Usa il codice di seguito alla fine del
functions.php
del tuo tema o, meglio ancora, in un nuovo plugin:add_filter( 'aepc_feed_item', function( $fields, $item ) { if ( $product = wc_get_product( $item->get_item()->get_id() ) ) { // EDIT HERE $fields['g:gender'] = $product->get_attribute( 'gender' ); // END EDIT HERE } return $fields; }, 10, 2 );
Modifica la parte
$fields['g:gender'] = $product->get_attribute( 'gender' );
, doveg:gender
è il parametro/tag aggiunto dentro il feed, mentre$product->get_attribute( 'gender' )
è l’attributo di WooCommerce relativo al valore che devi recuperare. Chiaramente, cambia quel'gender'
con il nome reale dell’attributo che usi nella tua installazione.Se lo preferisci, puoi anche aggiungere altre righe rimili per aggiungere altri parametri/tag da altri attributi o anche altri valori di altro tipo, es:
add_filter( 'aepc_feed_item', function( $fields, $item ) { if ( $product = wc_get_product( $item->get_item()->get_id() ) ) { // EDIT HERE $fields['g:gender'] = $product->get_attribute( 'gender' ); $fields['g:size'] = $product->get_attribute( 'size' ); $fields['g:color'] = '...qualsiasi altra cosa...'; // END EDIT HERE } return $fields; }, 10, 2 );
Considera che questo codice verrà richiamato per ogni prodotto, quindi dinamicamente verrà recuperato il valore in base al prodotto/item (salvato nella variabile
$product
).Infine, mi rendo conto tutto ciò è di competenza di uno sviluppatore. Se non hai queste competenze, tutto ciò che ti ho scritto sarà riferimento al tuo sviluppatore di fiducia ??
Forum: Plugins
In reply to: [Pixel Caffeine] Pixel caffeine not compatible with Woo Commerce 5.0?Hi,
I can confirm that the plugin should work with WooCommerce 5.0 and the checkout works fine on my end.
Could you please list here if you have any WooCommerce extensions on your website or any other plugin that customize the WooCommerce features? And also what theme are you using? Does it have any customization for WooCommerce on it?
Forum: Plugins
In reply to: [Pixel Caffeine] Facebook Event ErrorHi,
I’m seeing you seem to have the “Debug mode” enabled in the Pixel Caffeine settings.
Go to Pixel Caffeine > General Settings > Advanced Settings > Developer tools (https://snipboard.io/KaniV4.jpg) and deactivate the Debug mode option.
Forum: Plugins
In reply to: [Pixel Caffeine] Parse error: syntax error, unexpected ‘:’Thank you for your confirmation! ??
I’m releasing the new version anyway, so everyone could update and solve the issue.
Thank you!
Forum: Reviews
In reply to: [Pixel Caffeine] Fast support, fast fix!Thank you for your feedback! Much appreciated! ??
Sorry here, if you downloaded it already and you’ve not tested it yet, please download it again from now because I made some other fixes related to this issue.
I post again the link to ease: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Thanks for your patience and your feedback!
Forum: Plugins
In reply to: [Pixel Caffeine] Parse error crashing my websiteSorry here, if you downloaded it already and you’ve not tested it yet, please download it again from now because I made some other fixes related to this issue.
I post again the link to ease: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Thanks for your patience and your feedback!
Wonderful, thanks @eusebiuoprinoiu !
For the others, if you downloaded it already and you’ve not tested it yet, please download it again from now because I made some other fixes related to this issue.
I post again the link to ease: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Thanks for your patience and your feedbacks!
Forum: Plugins
In reply to: [Pixel Caffeine] Fatal errorI’m really sorry, it was my fault! This issue is making me crazy ??
Anyway, I fixed it again (and I hope it’s the last time) in the same previous link, please download and upload it again: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Let me know,
thank you for your patience!Forum: Plugins
In reply to: [Pixel Caffeine] Parse error: syntax error, unexpected ‘:’I’m really sorry, it was my fault! This issue is making me crazy ??
Anyway, I fixed it again (and I hope it’s the last time) in the same previous link, please download and upload it again: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Let me know,
thank you for your patience!Forum: Plugins
In reply to: [Pixel Caffeine] Fatal errorSo, I was finally able to replicate the problem with the WPvivid Backup Plugin and I made some additional fixes to Pixel Caffeine to not interfere with it (and I hope the other plugins) and it works on my end now.
Please, download Pixel Caffeine again from the following link and try it: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Let me know if it works for you.
Forum: Plugins
In reply to: [Pixel Caffeine] Parse error: syntax error, unexpected ‘:’Hey,
thank you for reporting this!
I prepared the fixed version, but I’m not releasing it yet. Please, download the alpha version from the following link and upload it in your installation in order to fix the problem (it should fix I’m pretty sure). Download from here: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Let me know if it solves your issue so I’ll release the new version.
Forum: Plugins
In reply to: [Pixel Caffeine] Parse error crashing my websiteHey,
thank you for reporting this!
I prepared the fixed version, but I’m not releasing it yet. Please, download the alpha version from the following link and upload it in your installation in order to fix the problem (it should fix I’m pretty sure). Download from here: https://www.dropbox.com/s/py8n0oov8jr53yc/pixel-caffeine.fix-guzzle.2.3.0.zip?dl=0
Let me know if it solves your issue so I’ll release the new version.