mabe23
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Сannot save “Exclude categories from sync”Hi!
I’ve the same problem.
If I choose a category or a tags, I can’t save this settings. If I dont’t choose cat or tag, I can save the settings.
So… impossible to exclude categories from sync.
It’s important because FB rejects some product (like alcohol).Hi!
I’m using plugin version 2.1.5 with WP 5.4.
If someone try to register by from, the admin is not receiving any notification by email.
On the same time the registered user is receiving email notification.
If I delete a user, admin and user are receiving the emails.So, only new user notification to admin not works.
I’m using Contact Form 7 too and it’s works fine!
I try SendGrid and WP MAIL SMTP. I’ve verified the domain on SendGrid via DNS-Zone …and I find the same issue: new user email to admin non working, other notification woriking.
Can you help me please?
Forum: Plugins
In reply to: [Custom Post Type UI] CPT search shows duplicates result on bachendI can see only posts… no drafts or revisions.
Now I see the wp admin search system is searching through all fields… so my code is not necessary.
I’m confuse… I worked for nothing!Forum: Plugins
In reply to: [Custom Post Type UI] CPT search shows duplicates result on bachendHi Michael,
I found the cause…
I want to search in custom fields by admin panel… so I’ve added this code in function.php:/*****************************************
add_filter( ‘posts_join’, ‘ricercavendita_search_join’ );
function ricercavendita_search_join ( $join ) {
global $pagenow, $wpdb;
if ( is_admin() && ‘edit.php’ === $pagenow && ‘vendita’ === $_GET[‘post_type’] && ! empty( $_GET[‘s’] ) ) { // Custom Post Type named “vendita”
$join .= ‘LEFT JOIN ‘ . $wpdb->postmeta . ‘ ON ‘ . $wpdb->posts . ‘.ID = ‘ . $wpdb->postmeta . ‘.post_id ‘;
}
return $join;
}
add_filter( ‘posts_where’, ‘ricercavendita_search_where’ );
function ricercavendita_search_where( $where ) {
global $pagenow, $wpdb;
if ( is_admin() && ‘edit.php’ === $pagenow && ‘vendita’ === $_GET[‘post_type’] && ! empty( $_GET[‘s’] ) ) { // Custom Post Type named “vendita”
$where = preg_replace(
“/\(\s*” . $wpdb->posts . “.post_title\s+LIKE\s*(\'[^\’]+\’)\s*\)/”,
“(” . $wpdb->posts . “.post_title LIKE $1) OR (” . $wpdb->postmeta . “.meta_value LIKE $1)”, $where );
}
return $where;
}
********************************************/If I remove this code.. the results are ok!
So… can I search in CPT custom field?Forum: Plugins
In reply to: [Custom Post Type UI] CPT search shows duplicates result on bachendHi Michael,
thank you for your messagge and sorry for my late reply… I’ve not see the notification.
I’ve customized some files but only frontend files/theme files. Not change pre_get_posts hook.
I’ve just installed only two plugin. Disabled they and problem remain.
There is something strange because the problem hit only one CPT… and not booth CPTs…Hi @pullox and @webdevmattcrom,
I’ve followed your suggest and it’s ok!
Now I need to work on template.php file (it’s located in /wp-content/plugins/give/includes/forms/template.php).
I would like to get the donation value and send it to Facebook Pixel Function when user click on “Donate” button. So, now, I’m working to track ‘events on-click’ and shortcode-receipt.php is not the right file.
In template.php I use…
$mydonationval = give_format_amount( $total, array( ‘sanitize’ => false ) );
The problem is this: $mydonationval is ever the low level price and not the effective total value of donation.
Do you can tell me the right var fot total value of donation?
Thank you so much!Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesHi Diana! I’ve reinstalled the plugin and I’ve solved. I’ll test WP Image Zoom plugin but I think it works very well. I think it’s the best zoom plugin for woocommerce.
Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesWonderful! I’ll try it asap and reply to you a report.
Thank you very much.Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesHi diana!
Sorry for my late reply but are hard days for me.I’ve removed the image with .full-size class (in this page -> https://www.comfee.eu/prodotto/condizionatori-portatili/condizionatore-portatile-fresko-12/) and now your plugin works!
But… There are problems with other pages. These don’t have images with full-size class.
Example: https://www.comfee.eu/prodotto/congelatori/congelatore-verticale-hs338fwen1in/In your post, you suggest to “add a .entry-footer class to the footer element, as that is required by the twentysixteen theme”.
I must add .entry-footer class to the article element (<article><header><content><footer></article>) or to the site element?
If is this the solution…Thanks!
Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesAnother note …I’ve forgot this particlar. Sorry! ??
Before to write this topic, I try to load the original wp theme: twentysixteen. I’ve the same problme with the twentysixteen theme.
Now you see my child-theme but I try your plugin with original twentysixteen theme (without my changing)… and some images have zoom and other images have not zomm.
This is the very strange factor!Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesThanks to try to help me! Many pages are identical but someone have the zoom active and someone have not a zoom. For example…
In this page the zoom is ok:
https://www.comfee.eu/prodotto/condizionatori-portatili/condizionatore-portatile-fresko-10/In this page the zoom doesn’t work: https://www.comfee.eu/prodotto/condizionatori-portatili/condizionatore-portatile-fresko-12/
If you check boot, you find the same code. It’s very strange… or not?
Forum: Plugins
In reply to: [WP Image Zoom] The zoom doesn't work with some imagesForum: Fixing WordPress
In reply to: Error with httpsHi to all!
claire44… did you solve this problem?
I change my domain from https to http… and i want to redirect all external links from https to http.
I try it via htaccess but all browser send a “certifcate error”.
I explain my problem to my hosting provider and they reply: “It isn’t possible! There are not a solution for redirect https to http”.
So my doubt is: are they sure?!
Do you have a solution for me?Thank you!
I use ACF plugin.
This code in a page and here, ACF calls an event.
I would like to replace the text link ‘VIEW THIS EVENT’ with the event starting date.<?php if( get_field(‘allega_evento’) ): ?> <!– if empty, acf doesn’t show the field –>
<p class=”mb-titleunderline”>Date, disponibilità e costi di questo corso</p>
<p>…</p>
<?php endif; ?><?php
$currenturl = $_SERVER[‘REQUEST_URI’];
$pos1 = strpos($currenturl, “formazione”);
if ($pos1 == false){
// if false -> don’t view nothing
echo ”;
} elseif($pos1 == true) {
// if true -> ACF code load AI1EC event:
$posts = get_field(‘allega_evento’);
if( $posts ): ?><ul style=”list-style:none;”>
<?php foreach( $posts as $post): // variable must be called $post (IMPORTANT) ?>
<?php setup_postdata($post); ?>
<li style=”decoration:none;”>
“>>VIEW THIS EVENT<?php endforeach; ?>
<?php wp_reset_postdata(); // IMPORTANT – reset the $post object so the rest of the page works correctly ?>
<?php endif;
}
?>
<!– ./LINK AGLI EVENTI –>Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Serious translation problemsI’ve translated the most important words and not all. I think there is a problem in some italian words but I don’t know these words.
However I can’t use lang pack it_IT