rkoms
Forum Replies Created
-
ta
We appreciate your support ))
Same here, any news?
Hello,
I thought there was an option to target/exclude Variations and Single products on specific categories.
Have made a small plugin modifications, so I was able to use it as I wanted to.
Thanks
Forum: Plugins
In reply to: [Ajax Login/Register for WooCommerce] Redirect based on user role.By user roles with combination with referer url, we are using something like:
// start global session for saving the referer url function wcalr_ref_session() { if(!session_id()) { session_start(); } } add_action('init', 'wcalr_ref_session'); // get referer url and save it function wcalr_redirect_url() { if ( !is_user_logged_in() && !is_checkout() ) { $_SESSION['referer_url'] = $_SERVER['HTTP_REFERER']; } // Exclude Checkout page elseif ( !is_user_logged_in() && is_checkout() ) { $_SESSION['referer_url'] = '/payment'; } else { if(session_id()){ session_destroy(); } } } add_action( 'template_redirect', 'wcalr_redirect_url' ); // redirect after LOGIN add_filter( "wcalr_login_redirect", "wcalr_login_redirect_link", 10, 1); function wcalr_login_redirect_link($link){ $link = $_SESSION['referer_url']; if(current_user_can('administrator')) { $link = admin_url(); } /**** ... ***/ return $link; }
Forum: Plugins
In reply to: [W3 Total Cache] Disable Late inLate initialisation for logged out usersI was asking for logged out users , if they can pass the late initialization,
Fragment cache is working fine with dynamic content, for logged users, i just want to exclude logged out users of fragment caching, which i did, and that’s fine,
The only thing i need to do is to exclude late initialization for logged out users and serve for them super fast cached pages without late initialization.
Thanks
- This reply was modified 3 years, 10 months ago by rkoms.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Export audience from wp adminI got list of all users via api, through other plugin, so yes it was possible to get.
Also found a email, which in this case are unnecessary, cos owner doesn’t know a pass also. We will build a new acc and will import users list, and happily will continue to use your plugin, as always. ((:
thanks
- This reply was modified 3 years, 11 months ago by rkoms.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Export audience from wp adminI thought so too ??
For now I have the whole api key, and will try other solutions and post results here, if anyone gets stuck in the same way.
Thanks
- This reply was modified 3 years, 11 months ago by rkoms.
Forum: Plugins
In reply to: [WooCommerce] Slow Initial Page Load1. STEP for much better performance
I have deployed new projects on NameHero host…2. STEP
Was created a cron job to visit a home page on every 2 or 5 minutes.((:
Forum: Plugins
In reply to: [WooCommerce] Slow Initial Page LoadNo there is not problem with slow queries in my case, we always use lightweight themes and it is happening to all of our woocommerce sites, with siteground also, not just with namehero hosting.
Page load are perfect, just initial page load is struggling (2-5s of delay) for non cached pages. Second page load of non cached page is really fast, almost as cached one, but after 5-10mins of inactivity it is happening again and again..
Forum: Plugins
In reply to: [WooCommerce] Slow Initial Page LoadHaving the same issue with woocommerce, just for non cached pages (logged users)..
Initial page load is unacceptable, either after 5-10min of inactivity. After that first server response, page load is back to normal, and is really fast almost like Cached pages (non logged users) which have score on gtmetrix 98/89.
Using NameHero VPS.
After latest update, problem is gone ((((:
Dont know where conflict was, but sure we will take some tests in the coming days, and will back with status.
Thanks
- This reply was modified 4 years, 3 months ago by rkoms.
Type of discount rules are Price Discount Rules. There is no any other rule applied. Those are simple fixed discounts for specific categories which are applied then for specific business customers.
For example:
-10% shoes (John, Jasper, Lancelot …)
-15% trainers (Leonard, Lewis, Laurence, Lawrence ..)
-20% jackets (Michael, Nicholas, Oswald …)It is working just fine, when there are a few customers applied to them.
But, the trouble is happening (most noticeable on the home page – slow page load)
when there are a lot customers “attached” to those rules. When we disable all price rules, loading home page is back to normal, even if we disable a few discounts there is improvement in page load. We also tried with a clean woocommerce install an result is the same, only disabling rules or deactivating plugin helps to page load normal.Problem exists for logged and non logged users, there is no matter if customer or admin is logged, or is it a guest visit.
Ofc, When we cache pages there is no problem for non logged users, cos visited page is cached, but for any logged user problem staysHow are discounts processed in FE?
Will open a ticket for sure.
Thanks- This reply was modified 4 years, 3 months ago by rkoms.
You can activate different price discount on all pages, for specific customer/s.
Create a rule, and add apply to specific customer in conditional section.
Forum: Plugins
In reply to: [Product Attachment for WooCommerce] No product attachment visibleYou have missed to check “Show on Product Page” for every single attached file,
and blame us, for willing to help you. Weird.
- This reply was modified 4 years, 6 months ago by rkoms.
Usable. thanks