giovanicrim
Forum Replies Created
-
Forum: Plugins
In reply to: [Progressive WordPress (PWA)] OneSignal integration not workingI have problem with OneSignal integration, too.
After OneSignal plugin activation, PWA service worker stops to work. Any ideas?
Forum: Plugins
In reply to: [Progressive WordPress (PWA)] Problem with Start PageThanks! It works!
news about this issue?
Forum: Plugins
In reply to: [WooCommerce] Problems with 3.2.3 version and W3 Total CacheThanks superkot.
I’ve opened an issue in W3TC support forum and in few minutes, other people wrote with the same problem. I’m waiting for some ideas there.
Thanks again!
Forum: Plugins
In reply to: [WooCommerce] Problems with 3.2.3 version and W3 Total CacheThanks lorro and optimizing matters.
For testing, I’ve completely disabled autoptimize plugin and javascript error in checkput seems resolved. But main problem is not resolved: after checkout order items have 0 as price and quantity.
Any other ideas?
Thanks a lot!
Forum: Plugins
In reply to: [WooCommerce] Problems with 3.2.3 version and W3 Total CacheSorry, but it didn’t work… moreover in woocommerce documentation page we find the note:
“Note, WC 1.4.2+ sets the DONOTCACHEPAGE, constant which means you can skip this step”
i’ve tried to set manually the DONOTCACHEPAGE, DONOTCACHEDB and DONOTCACHEOBJECT constants to true with this code in cart and checkout page:
define('DONOTCACHEPAGE', true);
but nothing… order items take price 0.Any possibile ideas?
Thanks!Perfect! Thanks a lot!
Forum: Plugins
In reply to: [Meta Box] key_value examplesThanks Manny!
Forum: Fixing WordPress
In reply to: Get_terms and meta_query not workingHi, i’ve the same problem:
$special_stars = get_terms( 'prodotticat2', array ( 'meta_query' => array ( 'key' => 'special_star', 'value' => '1', 'compare' => '=' ) ) );
$special_stars show each term in taxonomy ignoring the meta_query parameter. I don’t understand why!
Thanks for the aid.
Danilo
Forum: Plugins
In reply to: [Meta Box] Update causes Meta tags to disappearHi Tran,
I’ve found the problem and i’ve solved it. In metabox register function i declare the $meta_boxes[] array if some conditions are verified in back-end. The same conditions were not verified in front-end, too. Then, without $meta_boxes[] declaration, those values didn’t appear. I think that, with updating plugin, something is changed about this because with 4.7.3 version i hadn’t got this problem.
Thanks again!
Forum: Plugins
In reply to: [Meta Box] Update causes Meta tags to disappearHi Tran, i don’t understand what do you mean.
Yes, my field is a text field but return a post id of a custom post type.I use
get_permalink(rwmb_meta('_lnw-meta_titolo_percorso','',$page_children->ID ))
inside a page loop and convert it in a link to custom post type page.
What’s wrong? Thanks again!
Forum: Plugins
In reply to: [Meta Box] Update causes Meta tags to disappearHi, this is my code to register meta boxes:
add_filter( 'rwmb_meta_boxes', 'lnw_register_meta_boxes' ); function lnw_register_meta_boxes( $meta_boxes ) { $prefix = '_lnw-meta_'; $meta_boxes[] = array( 'id' => 'impostazioni_seo', 'title' => __( 'Impostazioni SEO', 'lnw-impostazioni-seo' ), 'post_types' => array( 'post', 'page' ), 'context' => 'normal', 'priority' => 'high', 'autosave' => true, 'fields' => array( array( 'name' => __( 'Titolo Percorso', 'lnw-impostazioni-seo' ), 'id' => "{$prefix}titolo_percorso", 'desc' => __( 'Titolo del Percorso', 'lnw-impostazioni-seo' ), 'type' => 'text', 'clone' => false, ), ) ); return $meta_boxes; }
and this is then code for the frontend:
<?php echo get_permalink(rwmb_meta('_lnw-meta_titolo_percorso','',$page_children->ID )); ?>
$page_children->ID return correct page id.
Thanks!
Forum: Plugins
In reply to: [Meta Box] Update causes Meta tags to disappearHi,
i’ve read the post.
I already have the latest version and i register metaboxes with rwmb_meta_boxes filter. But yet custom metaboxes don’t appear in front end. They appear instead in back-end with right values…
Now i’ve installed again the 4.7.3 version waiting for a solution…
How to resolve? Thanks again!
Forum: Plugins
In reply to: [Meta Box] Update causes Meta tags to disappearI have the same issue, too. I’ve updated to 4.8.1 and all my custom field data area disappeared from the site.
I create the metabox with rwmb_meta_boxes filter.
How resolve it?
Thanks!