pahedomotica
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Error establishing a database connectionThis are the complete lines! the message is only an A.
When I try to make a feed now, I see this also:WP Product Feed Manager
MailPoet-fout: Kon niet verbinden met de database (de database kon een bestand of map niet openen), de verbinding is waarschijnlijk niet juist geconfigureerd. Lees ons Kennisbank-artikel met stappen over hoe dit op te lossen is.
Manage your feeds with ease
etc.After a little while it’s working again.
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Error establishing a database connectionHi Michel,
In the debug.log of the plug-in is this:
2018-09-21 09:23:28 – Debug Message: A
2018-09-21 09:24:15 – Debug Message: A
2018-09-21 09:27:36 – Debug Message: A
2018-09-21 09:27:55 – Debug Message: A
2018-09-21 09:41:17 – Debug Message: A
2018-09-21 09:43:57 – Debug Message: A
2018-09-21 09:48:16 – Debug Message: A
2018-09-21 10:43:27 – Debug Message: A
2018-09-21 10:45:25 – Debug Message: A
2018-09-21 10:58:20 – Debug Message: A
2018-09-21 11:06:23 – Debug Message: A
2018-09-21 11:14:27 – Debug Message: A
2018-09-21 11:17:20 – Debug Message: A
2018-09-21 11:34:39 – Debug Message: A
2018-09-21 11:36:29 – Debug Message: A
2018-09-21 11:44:53 – Debug Message: A
2018-09-21 12:02:29 – Debug Message: A
2018-09-21 21:11:38 – Debug Message: A
2018-09-22 13:32:58 – Debug Message: A
2018-09-22 13:35:42 – Debug Message: A
2018-09-22 13:36:21 – Debug Message: A
2018-09-22 13:36:49 – Debug Message: A
2018-09-22 14:17:34 – Debug Message: A
2018-09-22 14:21:15 – Debug Message: A
2018-09-22 14:22:54 – Debug Message: AHope that can help you!
Regards PaulForum: Plugins
In reply to: [WooCommerce Google Feed Manager] Error establishing a database connectionNo errors in the logging “error_log”
The error is only during creating the file.Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Unsubscripe link in email not workingTHis was for me the solution: change this {{{unsubscribeLink}}} to {{unsubscribeLink}}
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Unsubscripe link in email not workingNo problem, email with example is sent.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Unsubscripe link in email not workingI have sent it yesterday to [email protected] ??
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Unsubscripe link in email not workingI have this under the emails
Deze e-mail is verzonden door de plug-in voor klant productbeoordelingen in opdracht van {{{shop.name}}}.<br>Als u geen e-mails van deze plug-in meer wilt ontvangen, klik dan alstublieft op Afmelden.
But it’s not working ??
And where can the list with unsubscribed customers be found?
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Unsubscripe link in email not working@nmagic, no WPML here.
The “problem” is that when a customer orders 10 different product, he has to review them all.
He cannot choose the review a few products.Labels are now also gone ??
With your code!Thanks for the good support
Hi Damian,
Thanks for the codes.
Regenarate thumbnails did a lot ??
This fixed the other image sizes:
body .dgwt-wcas-tpd-image img {
max-width:64px;
}
body .dgwt-wcas-tpd-image img {
max-height:64px;
}
body .dgwt-wcas-si img {
max-width:32px;
}
body .dgwt-wcas-si img {
max-height:32px;
}Hiding the labels is not yet fix, but i geep trying ??
Regards Paul.
Update:
It is caused by a plug-in I use!
“YITH WooCommerce Product Add-ons Premium”I will contact them for a solution
I found it for the detail box:
.dgwt-wcas-pd-price .wifi {display: none;}Anny idea for the search list?
Hi Damian,
Thanks for the plug-in update, it works now better ??
Only one question:
In the old version I used this to hide the “custon price labels”:
#header .paars {display: none;} /* prijslabels verbergen in Woo search */But that doesn’t work in the new version, I treid this:
.dgwt-wcas-suggestion .paars {display: none;} /* prijslabels verbergen in Woo search */But no result, anny ideas?
Regards Paul.Forum: Plugins
In reply to: [WooCommerce] Breadcrumbs for products in multiple categoriesHi Serge,
I don’t have the file ‘your_theme/woocommerce/global/breadcrumb.php’
In my functions.php of the theme, are some lines for the breadcrumb.
Is it then also possible with this lines?//breadcrumbs function the_breadcrumb() { echo '<div id="linkpad">'; if (!is_front_page()) { echo '<a href="'; echo home_url(); echo '">'; echo 'Home'; echo "</a> » "; if (is_category() || is_single()) { echo ''; the_category(' » '); if (is_single()) { echo " » "; the_title(); echo ''; } } elseif (is_page()) { echo ''; echo the_title(); echo ''; } elseif (is_home()) { echo wp_title(''); } } elseif (is_tag()) {single_tag_title();} elseif (is_day()) {echo"Archive for "; the_time('F jS, Y'); echo'';} elseif (is_month()) {echo"Archive for "; the_time('F, Y'); echo'';} elseif (is_year()) {echo"Archive for "; the_time('Y'); echo'';} elseif (is_author()) {echo"Author Archive"; echo'';} elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {echo "Blog Archives"; echo'';} elseif (is_search()) {echo"Search Results"; echo'';} echo '</div>'; }
Thanks for your reply. Paul