xenio2000
Forum Replies Created
-
Forum: Plugins
In reply to: [Gestpay for WooCommerce] Errore visualizzazione icone carteCi sta che vogliano abbandonarlo, purtroppo ho solamente un cliente che ha un conto con Banca Sella e vuole assolutamente usare Gestpay, cercherò ancora una volta di convincerlo di abbandonare questo sistema di pagamento.
Forum: Plugins
In reply to: [Gestpay for WooCommerce] Errore visualizzazione icone carteRidicolo che ci dobbiamo fixare noi un plugin così importante di Banca Sella.
Forum: Plugins
In reply to: [Gestpay for WooCommerce] Errore visualizzazione icone carteStesso problema per me, l’aggiornamento a Woocommerce 9 ha fatto sparire le icone delle carte di credito lasciando scritte che incasinano il layout.
Anche l’aggiornamento a php 8.3 fa generare a questo plugin log assurdi di PHP Deprecated
Ok, I’ll try both solutions.
Thanks!!!Not working for me, I am getting different results on Firefox, Chrome and Safari.
I’ll try to reinstall the original theme, looks like it is working on it.It does not work ??
there is no .content-title-style-above in the page, and just targeting .entry-content push the module down but the scroll to top still cut the heading.This is the page.
https://www.ilgiardinodilu.org/sostienici/Yep I was testing “Search & Filter” and this is ok but this kind of plugins triggers the wordpress search and redirect to the search page results of the theme, but this is not what I am looking for.
As you can see on my screenshot, my pods template show the results as a table list.
Filtering with the select –Famiglie– (custom taxonomy) show the result on the same page always as a table list (template) and this is perfect.
Would be nice if the free search could find results on the custom fields “Nome Comune” and keep the table view of the pods template.Forum: Plugins
In reply to: [Meta pixel for WordPress] Plugin keeps returning to “Get Started”Same problem, and I did not found any way to get it works.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Missing Credit Card IconsMhmhmhm yep, I forgot to check the changelog.
= 5.6.2 – 2021-10-06 =
* Tweak – Remove animated credit card icons from payment method option on the checkout page.I hope this is a bug and they forgot to bring back static icons.
With icons users can spot the cc box much faster.- This reply was modified 3 years, 1 month ago by xenio2000.
I am already testing it but it does not work on details page of the product.
Anyway I did it by myself, thanks.I am using a custom code on functions.php to add a badge “SALE” under the price, this is working with standard discount applied via Woocommerce but it does not show for sale price managed via the plugin.
The red badge “SCONTO” is triggered when $product->is_on_sale() is true.
Screenshot.Forum: Plugins
In reply to: [Gestpay for WooCommerce] Errore (475) operazione non permessaHo aggiornato il plugin all’ultima versione, ma gli ordini continuano a fallire.
I’ve found a way editing the kbe_knoledgebase.php file
foreach($kbe_terms as $kbe_taxonomy){ $kbe_term_id = $kbe_taxonomy->term_id; $kbe_term_slug = $kbe_taxonomy->slug; $kbe_term_name = $kbe_taxonomy->name; $kbe_term_description = $kbe_taxonomy->description;
The last line is the one I added
the description is available via
<?php echo $kbe_term_description; ?>The reset option does not fix anything, I had to write a code in nodejs to fix it, same as mmorselli did in php.
var mysql = require('mysql'); var connection = mysql.createConnection( { host : 'localhost', user : 'root', password : 'root', database : 'cns_yachts', } ); connection.connect(); var queryString = "SELECT * FROM cns_posts where post_type = 'displayed_gallery'"; connection.query(queryString, function(err, rows, fields) { if (err) throw err; for (var i in rows) { str = new Buffer(rows[i].post_content, 'base64').toString('ascii'); var newstr = str.replace(/template":"(.*?)"/g,'template":"gallery-caption.php"'); strEncoded = new Buffer(newstr).toString('base64'); console.log(strEncoded + " \n"); connection.query('UPDATE cns_posts SET post_content = ?, post_content_filtered = ? WHERE ID = ?', [strEncoded, strEncoded, rows[i].ID],function (err,results){ console.log(err,results); } }); console.log("fine");