Alberto Ziveri
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] What does "?doing_wp_cron" mean?W3 Total Cache doesn’t matter.
Probably that string there was also before you activated the plugin…
The cause of that string is surely the boolean constant you edited in the WP-Config.php file. You added this:
define(‘ALTERNATE_WP_CRON’, true);It is the alternative wp cron (https://codex.www.ads-software.com/Editing_wp-config.php#Alternative_Cron) you probably activated for some reasons. For example I activated it because I’m on Windows and the normal “cron” doesn’t work.
The cron is simply the process that wordpress does to publish scheduled posts.I CONFIRM! Please how can we fix it??
It imported over 100 comments duplicated for me!Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Author's posts count: bugOk thank you very much. Unfortunately I disabled Co-Authors Plus ??
Forum: Plugins
In reply to: Update (not show!) a feed after publish a custom post typeCould someone help me please?
Forum: Plugins
In reply to: [CleanAdmin] [Plugin: CleanAdmin] ThanksWe resolved the issue with version 0.2 and after Christmas we’ll work to make the icon menu cleaner and nicer.
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?I understood that there is no solution to overwrite the default css, I will resolve all the CSS problems…
Thank you for your help.Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?I’m trying from many days to overwrite what I don’t like in the default CSS, but it is a big work..
I uploaded edited css files..
WP-ADMIN.CSS : https://wordpress.pastebin.com/m7aa7b003
COLORS-CLASSIC.CSS : https://wordpress.pastebin.com/mc71f246I also edited global.css and widgets.css but it does not create errors..
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?I already designed and coded the admin theme, and I tried to put it in the wp-admin folder, so it worked.. But as you know it presents various bugs if I create the plugin that insert the calls to my css files. Can I send you the images and css files I created (and the plugin page)? So you can see the errors..
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?Thank you to apljdi and kz, tomorrow I will try the kz solution. So if you send me your websites I will thank you in the article that I will do in my blog and in the (future) plugin’s page. My mail is alby(at)skimbu(dot)it
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?Sincerely I am not very expert in php (I am learning it, I’m 15), I tried to paste the lines of the function wp_admin_css and wp_admin_css_uri in the php file of the plugin. But it does not work.
If you can help me, I will thank you in the homepage of my blog skimbu.it (pagerank 4) and in the (future) plugin’s page.
Thank youForum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?Thank you very much, but I also have to overwrite colors-classic.css… and I think wp_admin_css_uri doens’t resolve my problem..
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?(2) Help!! I will thank in the credits who will help me…
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?Help!! I will thank in the credits who will help me…
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?I checked all… But I still see some styles of the original wp-admin.css
Forum: Themes and Templates
In reply to: I am making a wordpress admin theme: how override wp-admin.css?up please… I tried to use this but it doesn’t replace the original wp-admin.css…
function my_wp_admin_css() { echo '<link rel="stylesheet" href="/wp-content/plugins/PLUGINAME/wp-admin.css" type="text/css" />'; } add_action('wp_admin_css','my_wp_admin_css');