Erik86
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-PostRatings] Rating keeps loadingMay I thank you for your awesome support.
Forum: Plugins
In reply to: [WP-PostRatings] Rating keeps loadingSorry man, it breaks my site (504 Gateway Timeout)
I deactived the plugin.
Removed all content in /plugins/wp-postratings-master/.
Renamed the folder to plugins/wp-postratings/
Uploaden the content of the master zip file.
Activate the plugin
Clear Cache
Then the website is down.Tthe same thing happens when uploading it to /plugins/wp-postratings-master/
I have no idea what is going wrong.
Forum: Plugins
In reply to: [WP-PostRatings] Rating keeps loadingHi Lester,
I installed the master-version but the problem still exists.
So the errors indicate that the css files and js-files can’t be found. Could you maybe tell me in which file the path to these files are stated? That way I can check if they are the same. I didn’t change any folder-name so I don’t understand why this is going wrong.
Not so familiar with this, I really appriciate your help.
Kind regards,
Forum: Plugins
In reply to: [WP-PostRatings] Rating keeps loadingHi Lester,
Thank you for your help. I tried SCRIPT_DEBUG but the problem is unsolved. In Chrome console I see the following errors:
https://www.magnetenkopen.nl/wp-content/uploads/2016/08/console-error.png
Do you have an idea what is wrong?
The loading error is only in Chrome. But in Explorer it is even a little bit worse: the stars aren’t displayed.
Kind regards,
Forum: Plugins
In reply to: [WooCommerce] AggregateRating on custom category pageOk, thank you for your reply Mike. Have a nice day.
Forum: Plugins
In reply to: [WooCommerce] AggregateRating on custom category pageIs it possible to take a part of this code and place it manually on each custom category-page?
Forum: Plugins
In reply to: [WooCommerce] Change default shipping classI finally found the right code for this! I added this to my functions.php
add_filter( 'woocommerce_package_rates' , 'xa_sort_shipping_services_by_cost', 10, 2 ); function xa_sort_shipping_services_by_cost( $rates, $package ) { if ( ! $rates ) return; $rate_cost = array(); foreach( $rates as $rate ) { $rate_cost[] = $rate->cost; } // using rate_cost, sort rates. array_multisort( $rate_cost, $rates ); return $rates; }
Found it on: https://www.xadapter.com/2016/06/03/woocommerce-sort-shipping-options-methods-services-by-shipment-cost/
Forum: Plugins
In reply to: [WooCommerce] Change default shipping classOk Mike, Thank you.
I’m not an expert in coding so I’ll try to find someone who can. Thank you for your responses.
Thanks a lot,
Erik
Forum: Plugins
In reply to: [WooCommerce] Change default shipping classHi Mike,
It adds another page to Woocommerce -> settings -> shipping methods. See this picture: https://postimg.org/image/8qm65u65d/
I made a Shipping Zone for the SameDayDelivery.
On the checkout page it’s now displayed like this: https://postimg.org/image/8qm65u65d/
Anyone?
Hi aviatorathome,
You can find this at Woocommerce -> Settings -> E-mails.
“Confirm subscriber” is the email that will be sent to the customer when subscribing to the product.
“Alert Subscriber” is the email that will be sent to the customer when the product is set to “in stock”.
Forum: Fixing WordPress
In reply to: xmlrpc.php receive 405 error !! how to solve?Hi,
I’m having the same problem. Have you found a solution yet? I submitted Google Search Console with Yoast SEO plugin.
Forum: Plugins
In reply to: [WooCommerce] Undefined variable order-details-item.phpI’ve been busy with it a few hours, but this seems to do the trick:
I’ve compared the order-details-item.php-file with antoher Woocommerce installation (with an older version 2.4.12) and line 46 was like this:
<?php if ( $order->has_status( array( ‘completed’, ‘processing’ ) ) && ( $purchase_note = get_post_meta( $product->id, ‘_purchase_note’, true ) ) ) : ?>
I replaced line 46 with above and now it seems to be working OK. I’m not sure if there will be problems, I’ll keep you posted if so.
Forum: Themes and Templates
In reply to: Remove H1 tag from site-title, except on homepageHi pdxchabers,
Thank you.
The testing part must be if (is_front_page() right?
What is the second part? And where should I put his code? In every page on my website?
Forum: Themes and Templates
In reply to: Remove H1 tag from site-title, except on homepageAnyone?