drZivil
Forum Replies Created
-
Forum: Plugins
In reply to: [ElasticPress] Main WP Query filtered by EPThis seems to be the solution: https://www.ads-software.com/support/topic/how-does-elasticsearch-under-the-hood/#post-11354675
Sorry for the spam.
Hi John,
I changed the taxonomy configuration to hirachical, and now it works.
Thanks a million for your Help!cheers,
PhilippForum: Plugins
In reply to: [WP Fastest Cache] javascript not combined in WP Fastest CacheHy,
I recently purchased your premium plugin.
Unfortunately the js files are not combined:
view-source:https://www.helloagain.at/https://ibb.co/mxWqAv
https://ibb.co/im9MHasettings should be ok.
- This reply was modified 7 years, 6 months ago by drZivil.
hi, i still have the same issue on several pages with version 3.3.4 and 3.3.7
Is it possible that there is still something wrong?[14-May-2017 07:20:56] Database backup done! [14-May-2017 07:20:56] 1. Trying to make a list of folders to back up … [14-May-2017 07:20:57] Added "wp-config.php" to backup file list [14-May-2017 07:20:57] 231 folders to backup. [14-May-2017 07:20:57] 1. Trying to generate a file with installed plugin names … [14-May-2017 07:20:57] Added plugin list file "Bye-Maxene.pluginlist.2017-05-14.txt" with 1.96 KB to backup file list. [14-May-2017 07:20:57] 1. Trying to generate a manifest file … [14-May-2017 07:20:57] Added manifest.json file with 5.33 KB to backup file list. [14-May-2017 07:20:57] 1. Trying to create backup archive … [14-May-2017 07:20:57] Compressing files as ZipArchive. Please be patient, this may take a moment. [14-May-2017 07:27:19] WARNING: mysqli_ping(): MySQL server has gone away [14-May-2017 07:29:18] WARNING: mysqli_query(): MySQL server has gone away [14-May-2017 07:29:18] WARNING: mysqli_query(): Error reading result set's header [14-May-2017 07:31:49] WARNING: mysqli_ping(): MySQL server has gone away
thanks for the cool plugin btw. ??
Forum: Themes and Templates
In reply to: Remove grey icon below postsyou allso can use:
display: none!important;
on the selectors you tried. but the suggestion by Maria should work to. i checked it. did you put it in the correct css file? maybe try adding
content: “”!important;
to her suggestion.
Forum: Themes and Templates
In reply to: [azeria] Remove "Category" from the title pagecan you please share the (php) error you received?
Forum: Themes and Templates
In reply to: How to remove white space/ blank space between postsif you wrote the css exactly the way you posted it the problem is that the css is commented out. you need to remove the “/*” before and the “*/” after your block of css so you finaly get:
article.post {
width: 31.6%;
float: left;
margin-bottom: 1px;
margin-right: .3%;
background: #FFF;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}is your custom css plugin works this should solve the problem.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Best practice for global css changes?https://www.smashingmagazine.com/2007/07/css-specificity-things-you-should-know/
i would suggest to read a little deeper into specificty and overwrite the things you want by unsing the proper specificty.
in short:
browser > inline > id > class > tagi dont think your problem is neither theme nor responsive related, you just have to figure out how to build your css selectors.
and yes, you should do it in the child theme. how is up to you.