RonaldS
Forum Replies Created
-
Forum: Plugins
In reply to: [Reduce Bounce Rate] Undefined indexes in plugin when save a settingDo a PM with your skypename then I share the screen.
Forum: Plugins
In reply to: [Reduce Bounce Rate] Undefined indexes in plugin when save a settingWhen saving in admin > settings > Reduce Bounce Rate > button Save
wp-admin/options-general.php?page=rbrok I do it.
Problem is solved. I included your plugin within my plugin. My .js file had a wrong
old code:for (var h = 0, tbody; tbody = tablebody[h]; h++) { headertext[h]= []; for (var i = 0, row; row = tbody.rows[i]; i++) { for (var j = 0, col; col = row.cells[j]; j++) { col.setAttribute("data-th", headertext[h][j]); } } }New code:
for (var h = 0, tbody; tbody = tablebody[h]; h++) { headertext[h]= []; for (var i = 0, row; row = tbody.rows[i]; i++) { for (var j = 0, col; col = row.cells[j]; j++) { if ( typeof headertext[h][j] !=='undefined') { col.setAttribute("data-th", headertext[h][j]); } } } }Thanks for your replies.
Sure I can. Here it is:
http://prntscr.com/cx64f4Forum: Plugins
In reply to: [WooCommerce Order Search] Error on Undefined variableI have add this direct under
$tip = ”;if ( ! function_exists( ‘get_serach_fields_multi_select’ ) ) {
function get_serach_fields_multi_select($value) {
$selections = (array) get_option( $value[‘id’] );Forum: Plugins
In reply to: [WooCommerce Fixed Quantity] rolesI have the code. It works very good with all kinds of discounts. Here the url to it:
http://www.norus.nl/wordpress-woocommerce-dynamic-pricing-tiered-pricing-table/Thanks for the reply. Meanwhile I have test several options and still have the problem that a customer always get the EU vat number field. Does not matter if he is located in shop base country (NL) or in other EU country for instance Germany.
When customer write a company name and is located in NL he should not get the EU vat number field. But the field is always shown.Settings:
EU VAT number: required if entered EU company
Show EU VAT field when customer is located in base country: noHave no idea how to solve this strange behavior.
Maybe you have a better solution for me (I hope).Forum: Plugins
In reply to: Woocommerce How do I get the standard order-received page?Found the problem maker in functions.php
You can put any kind of template file in it.
add_action( ‘template_redirect’, ‘wc_custom_redirect_after_purchase’ );
function wc_custom_redirect_after_purchase() {
global $wp;if ( is_checkout() && ! empty( $wp->query_vars[‘order-received’] ) ) {
wp_redirect( ‘http://www.yoururl.com/your-page/’ );
exit;
}
}Forum: Plugins
In reply to: [WooCommerce] Undefined index: rules in class-wcml-dynamic-pricing.phpHello Mike. Thanks but it would help very much to write where to put that extra row of code.
It is a little tricky to put it somewhere in the function.
I suspect:foreach($available_rulesets as $rule_key=>$available_ruleset){ $available_ruleset['rules'] = isset( $available_ruleset['rules'] ) ? $available_ruleset['rules'] : '';Plugin is to complex for simple tasks like menu’s – pages and access.
Found a simpler and better one.If someone tell me where to set them. Then I can do it.
But if not set, then the system must not come with an system error.I did that already but I do not get a reply.
That is the reason I post it here also.
Hope to get a solution soon.Forum: Fixing WordPress
In reply to: Error message on woocommerce checkout page, but order is addedI just did it. Thanks.
No backups are fine. I only want to solve the errors caused by your plugin.