supportverse
Forum Replies Created
-
Forum: Networking WordPress
In reply to: favicon on PDF being pulled from network primary siteThe PDF file does not have a favicon set, so browser requests http://www.cleonecapital.com/favicon.ico and is probably served with default favicon, Since its multisite, you may have to add a nginx/apache redirect from /favicon.ico to your actual favicon.
Forum: Fixing WordPress
In reply to: Picture not in ADD MEDIADid you upload them via FTP? If so they won’t show.
Please check :
https://ww.wp.xz.cn/support/topic/images-ftped-to-upload-folder-not-showing-in-media-library/Forum: Fixing WordPress
In reply to: Preload one single fileAdd
<link preload="">to heaader.php between<head></head>
First page will not have any benefit but subsequent pages will.
If you need benefit for first page the user loads, then you will need some JS to load that image after the page loads.Forum: Fixing WordPress
In reply to: customer ID to upload pluginOne Idea would be to use a plugin that allows you to add extra form field to registration form and then approve users manually.
Forum: Fixing WordPress
In reply to: problem in mobile view – search bar appears big in mobile viewFirst make it width:200px or whatever you want for mobile and then add this at the end of your css file :
@media screen and (min-width : 1201px) { section#dgwt_wcas_ajax_search-2 { width: 600px; } }Forum: Fixing WordPress
In reply to: Simple Social IconIn custom css section of customizer add this :
.simple-social-icons{overflow:visible;}Forum: Fixing WordPress
In reply to: Issue on HomePageAre you using any cache plugins or something like cloudflare?
- This reply was modified 6 years, 9 months ago by supportverse.
Forum: Fixing WordPress
In reply to: Change blog posts page layout/design/template ?Yes, you need to create a page template and use it as template for the page that lists all blog posts. Check out some of the page builder plugins to create that page.