scandinaviannerd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Price filter NOT visible in customized sidebarHi Amit,
Yes, I’m using latest version and also updates, but it is still not displaying the “Filter by price” feature in sidebar. It is displaying search bar in sidebarForum: Themes and Templates
In reply to: [OceanWP] remove subheading from Shop pageThanks! Replied via facebook group!
Forum: Themes and Templates
In reply to: [OceanWP] Can’t edit shop page with free elementorHi Marko,
Thanks!!I’m not a webdesigner and therefor not bought any pro plugin yet…However I edited images by editing category image ??
Yes, read everything.
Will contact you as soon we have completed websiteThanks,
I have both SPAI, and shortpixel image optimizer. We are using one.com and do not have any CDN. Can this be the reason?I checked w3 total cache settings and this artcile does not show setting with w3.
However, once we switch over to siteground, we will try againHi,
We are using W3 total cache plugin, we do not have CDN since our shared server, one.com do not offer CDN.SPAI is NOT minifying CSS?? According to GTmetirx
Forum: Plugins
In reply to: [WooCommerce] Sales price not working when setting price to scheduled timeHi Kelly,
For sales page, I’m using shortcode: [sale_products per_page=”12″]Yes, it is now displaying sales product on sales page.
https://iqm.no/Dummy/sale-products/
So, now I understood that the sales date has to start, we cannot show sales that is upcoming next week on sales page.Is your issue that it is displaying the original price instead of the sale price? YES, before sales date started.
Or that it is displaying on your “On sale page” even if the sale has not started yet? Yes, but now I understood that the sales price will be displayed once the sales date has started, not before.Thank you again to make it clear!!
Forum: Plugins
In reply to: [WooCommerce] Sales price not working when setting price to scheduled timeThank you very much Sir,
– You have set a scheduled sale price with dates in the future: YES
– You are seeing the original price displayed on your page: YESThe behavior above sounds like what should be expected: the sale price will not be displayed until that scheduled date is reached. Until that date, it will display the original price. After the start date is reached, then the sale will begin and it will show the sale price instead.
YES, this is correct. I scheduled price like if today is 24.march, I set the sales price from 27th march to 15th april. So, this will not be displayed? Only if we schedule sales price from current start date will be displayed?
Forum: Plugins
In reply to: [WooCommerce] Sales price not working when setting price to scheduled timeI cannot switch my theme as this will make that I will lost all the work done until now.
This does not make any sense.
and yes, the sales dates are correct, in future, so this answer is not correct.Forum: Plugins
In reply to: [WooCommerce] User approval by admin after sending register account requestNow I added this in my function.php file:
add_filter( ‘woocommerce_registration_redirect’, ‘user_verification_woocommerce_registration_redirect’, 10, 1 );
function user_verification_woocommerce_registration_redirect(){
if ( is_user_logged_in() ) {
$current_user = wp_get_current_user();
$user_id = $current_user->ID;
$approved_status = get_user_meta($user_id, ‘user_activation_status’, true);
//if the user hasn’t been approved destroy the cookie to kill the session and log them out
if ( $approved_status == 1 ){
return get_permalink(wc_get_page_id(‘myaccount’));
}
else{
wp_logout();
return get_permalink(wc_get_page_id(‘myaccount’)) . “?approved=false”;
}
}
}
function registration_message(){
$not_approved_message = ‘<p class=”registration”>Send in your registration application today!<br /> NOTE: Your account will be held for moderation and you will be unable to login until it is approved.</p>’;
if( isset($_REQUEST[‘approved’]) ){
$approved = sanitize_text_field($_REQUEST[‘approved’]);
if ($approved == ‘false’) echo ‘<p class=”registration successful”>Registration successful! You will be notified upon approval of your account.</p>’;
else echo $not_approved_message;
}
else echo $not_approved_message;
}
add_action(‘woocommerce_before_customer_login_form’, ‘registration_message’, 2);and this seems to work, but the “user” is coming up under wp user, NOT under verification or wc-user approval.
Should I rather purchase a plugin for that?Forum: Plugins
In reply to: [WooCommerce] User approval by admin after sending register account requestThanks, I tried by adding this plugin you suggested, but in stead I got debugging error on my website.
After adding this code, I am getting this message on my-account page:
Send in your registration application today!
NOTE: Your account will be held for moderation and you will be unable to login until it is approved.Despite this, I am not getting any “user approval pending” in my wp dashboard. I am building a B2B ecommerce and therefor trying to add a code.
My topic is NOT replied.
Waste of time to check this Q&A on accessPress, that is NOT user friendly!Thank you very much for quick reply.
1. I also added EWWW plugin. Can SPAI and EWWW be used together?
2. Minify JavaScript and CSS: According to GTmetrix, JS and CSS are not minifized. Is not this function also done by SPAI`?I am also getting this issue on gtmetrix:
The following resources are missing a cache validator. Resources that do not specify a cache validator cannot be refreshed efficiently. Specify a Last-Modified or ETag header to enable cache validation for the following resources:What does that mean?
Please check the site under development: https://iqm.no/Dummy
The search bar, I used ajax search bar. If I put this on menu line horisontal, this is displaying a code. Therefor I had to put this as a submenu. How can this search bar be displayed in main menu ?If you integrate ajax search bar in AP mega menu, it is NOT working.