hdaackda
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Find a specific link inside codeThe vector was within my laptop (local system) sir..
and since its not html, I think it was not generated by a php file (or maybe I am wrong?)
I would like to first fix that line, then I can go backwords and double check… (e.g. if its from a plugin, then I know plugin is at fault)..
I think finding
<script type="text/javascript" src="link of malware here">
should not be difficult.. but… arrghhhForum: Fixing WordPress
In reply to: Find a specific link inside code^thanks a lot!
Read the guide… I can solve my issue by removing just 1 line.. problem is, this guide also doesnt tell me how to find that line!
You have any cache plugin? Clear cache and deactivate plugin. Then try
^^ THANKS A LOT!!! Jeremy!! I literally spent hours and hours going over this, searching google and wordpress.. but couldnt figure this out!!
cant thank u enough! hav also subscribed to ur posts, i m sure i’ll learn a lot!!
Forum: Fixing WordPress
In reply to: G Sharing issue! Doesnt appear like most websites dothanks @zota, but this is already there…
Forum: Fixing WordPress
In reply to: G Sharing issue! Doesnt appear like most websites doAsked google to recrawl.. has been 1 day, still same issue ??
Forum: Fixing WordPress
In reply to: G Sharing issue! Doesnt appear like most websites dothanks +zota marius! havent tried that. will do. (thought even for new posts, problem is the same, so I doubt re crawling would solve the issue), still worth a try!
Forum: Fixing WordPress
In reply to: G Sharing issue! Doesnt appear like most websites doI have this in my link..
<meta itemprop=”image” content=”link of image here”/>
(hav the actual link, not the words ‘link of image here)still google doesnt show the image
Forum: Plugins
In reply to: [W3 Total Cache] Fixing PageSpeed Insight IssuesFIGURED IT OUT!! finally!!
had to edit the .htaccess file to fix the browser leverage issue on my site (https://gadgtecs.com)
For more details and specific code, see https://www.ads-software.com/support/topic/google-pagespeed-insights-suggests-leverage-browser-caching?replies=12
Forum: Plugins
In reply to: [W3 Total Cache] Fixing PageSpeed Insight Issues@wilflare: how did you solve the browser cache issue?
My site is https://gadgtecs.com ( a technology related site ) yet I can’t figure out why google page insight keeps telling me to leverage browser cache (even for my own site!)
I am also using CloudFare and even turned its browser cache option on. Still getting the error!!! wht to do?!
Forum: Fixing WordPress
In reply to: font has changed.I think I got it, had to include this in the header (or anywhere)
<link href=’https://fonts.googleapis.com/css?family=Jura’ rel=’stylesheet’ type=’text/css’>
Forum: Fixing WordPress
In reply to: header logo image gets cutSOLVED
What was missing: A setting for header logo in responsiveness.style.css
Once I did those, it fit! Especial thanks to @evan Herman for helping me out!!
Forum: Fixing WordPress
In reply to: header logo image gets cutI think I got it!!!
I tried pasting urs too.. kinda compressed the background!!
can u chck? (basically logo should display top left side in desktop) and shuld not get cut in mobile/smaller window!
i hate clearing cache again and again and reloading
Forum: Fixing WordPress
In reply to: header logo image gets cut^^ thanks a lot!!! really, giving someon else time and trying to understand their problem! Salut!!
I guess I should go to basics first.. Will take time but I’ll learn in the process as well!
I’ll first try messing the with responsive style sheet.. if that doesnt work out, i’ll start with yours ??
pls dont mind my ramblings!! once again, loads of thanks!
Forum: Fixing WordPress
In reply to: header logo image gets cutthe header.png is the BLACK STRIP.. in normal mode it is shown..
in responsive mode.. it is not show (hence the .. before the URL)
my LOGO is the object114***…
I want One in absolute position
and one for responsive
for absolute, this will do
.art-object114961649
{
display: block;
left: 0%;
margin-left: -227px;
position: absolute;
top: 0px;
width: 337px;
height: 84px;
background-image: url(‘images/object114961649.png’);
background-position: 0 0;
background-repeat: no-repeat;
z-index: 1;
}AND IN responsive MODE, it should shift to:
.responsive .art-object114961649
{
display: block;
left: 0%;
margin-left: 0px;
position: relative;
top: 0px;
width: 337px;
height: 84px;
background-image: url(‘images/object114961649.png’);
background-position: 0 0;
background-repeat: no-repeat;
z-index: 1;
}HOW can I just achieve this?