cybmeta
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Cannot add new redirects, delete logs or change configurationIt is definitely something in the JavaScript. It is crazy. Even reloading the page by clicking the “reload” button of the browser gives you different results in the admin screen of the plugin.
For example, I click on the menu item pointing to
wp-admin/tools.php?page=redirection.php
. I get the plugin admin screen with 119 elements. Without touching anything, I click on “reload” button of the browser, now I have 122 elements.This issue happens also by repeatedly clicking on the plugin menu. I get different items each time I click on it.
Now, I’m not sure what I’m editing. Frustrating.
Forum: Plugins
In reply to: [Redirection] Cannot add new redirects, delete logs or change configurationIt is happening again. It is strange; I think it started when I had open two tabs with the admin dashboard of the plugin. I had to log out and log in to see changes and to work again with the plugin.
Sorry, I missed that feature. Anyway, it seems broken here. The old slug is imported with two slashes in the front and the redirection doesn’t work.
For exmaple:
301 //old-slug
/current-slugThen, the redirection from https://example.com/old-slug doesn’t work. All the old slugs has been imported in the same way.
Forum: Plugins
In reply to: [Redirection] Cannot add new redirects, delete logs or change configurationIt seems wp rest api URL gets cached some where and it is the cause of the problem. I can work with plugin now.
Forum: Plugins
In reply to: [Redirection] Cannot add new redirects, delete logs or change configurationNo, the only message I get says that chnages have been saved.
Forum: Plugins
In reply to: [WooCommerce] Extraer atributos y términos de categoría?Has mirado la REST API de WooCommerce? Ya tiene opción para obtener productos (con sus términos y atributos) de las categorías que quieras.
Si no te vale, ?puedes elaborar un poco más que es lo que necesitas exactamente?
PD: me acabo de dar cuenta que no estamos en es.www.remarpro.com … ?se podrá migrar este post al foro espa?ol?
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify HTML not workingAny update on this?
I’ve found out that “wp-cron control” plugin set
DOING_CRON
constant totrue
to disablewp-cron.php
andspawn_cron()
execution, and also setWP_CRON
tofalse
to disablewp_cron()
call.It seems that the conflict with LiteSpeed is the
DOING_CRON
constant. If it istrue
, then LiteSpeed evaluates HTML checking asfalse
. (litespeed-cache.class.php), making the minification feature stop working.private function _check_is_html( $buffer = null ) { // .... if ( defined( 'DOING_CRON' ) ) { LiteSpeed_Cache_Log::debug2( '[Core] CHK html bypass: doing cron' ) ; return ; } // .... }
Any reason you do/need that?
Finally I manage to use the support contact form vía https://jetpack.com/contact-support/
The address you posted is not working (https://jetpack.me/contact-support/).I’m trying to contact privately but https://jetpack.me/contact-support/ keeps displaying the message “You are not logged in” even after I correctly log in. After login, I can access to any private part of jetpack.me except to the support’s form. Not sure what happens, I’ve used the support form several times before. Do you have any problem in your sie? The username is the same ad here (cybmeta).
- This reply was modified 6 years, 7 months ago by cybmeta.
Yes, I know it is a file from the core, but several modules of JetPack use it on the frontend. The problem is that from last update, it is loaded even if there are no active modules that need that file.
I’ve tried to deactivate JetPack entirely as we. If I deactivate JetPack,
dashicons.min.css
file is no loaded in the frontend. If activate JetPack again,dashicons.min.css
appears again in the frontend.- This reply was modified 6 years, 7 months ago by cybmeta.
Forum: Plugins
In reply to: [LiteSpeed Cache] No way to disable critical CSS?Thank you!!
Forum: Plugins
In reply to: [LiteSpeed Cache] No way to disable critical CSS?No. The theme doesn’t generate critical CSS for each page. The theme is a PWA with shell architecture. The critical CSS for the shell is already in the head. I only need to async CSS files for all the other CSS files.
I hope you understand what i mean. The critical CSS is already built into the theme.
For now i’m reverting to previous version of your plugin.
Forum: Plugins
In reply to: [LiteSpeed Cache] No way to disable critical CSS?Basically because my theme already injects a carefully crafted critical CSS in the
<head>
. But I still want to async loading a bunch of non-critical CSS files.Ok, I will try to find an example and contact with you directly (I’m currently reoptimizing thousands of images, I will try to contact with you later today or tomorrow).
Thank you!
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify HTML not workingYes, I know, but when you have the site cached, wp-cron is not trigered at all until the cache expires, this is a limitation: or you set a low expire time to have wp-cron executed often enough, or you execute wp-cron independently from the site visits/hits and don’t care about how site caching impacts over wp-cron.
I tried before a system cron without the plugin “wp-cron control”, not as good as with it. wp-cron is a mess, I know, I tried a lot fixes and combinations, “wp-cron control” is by far the best I’ve found.
Anyway, I’ve tested other optimization plugins (Autoptimize and W3TC specifically) and they work beside “wp-cron control” with no problem, so I guess you will find the issue.
Thanks again.