Nihad Nagi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Yslow improvementWhich browser are you using?
Forum: Fixing WordPress
In reply to: Yslow improvementLet’s cover your issues, one by one:
YSlow provides you SEO tips to reduce page load times. These grades (F) given only indicate that there are available techniques, you haven’t used and hence tips for further optimization. SEO is an ongoing optimization process and there is no one time out-of a box solution. I will be briefing you about some tips and tools.
YSlow gives you SEO tips for yahoo search engine, while “Page Speed” is google’s, each search engine has its own algorithm of calculating page rank.So you will have different statistics for each one.
For example,for the first link given,
your YSlow overall grade is C with score of 71
your PageSpeed overall score is 94.The first step is ensuring that we are utilizing the caching techniques properly, and from examining your page source, the All-in-one plugin should be deleted, as long as w3 will be used.Keep only the ONE SEO plugin that you will be using.
Forum: Fixing WordPress
In reply to: New WordPress Custom Post type interacting with databaseThe approach you are following will consume too much time. Try using “Custom Types” plugins, there are plenty of good plugins in this category, and the normal way they operate is that they deal with the new added fields as custom fields, stored in postmeta and bound to posts, to utilize all post action filters and handlers. Your attempt means that you will recreate all of these filters and handlers that by the end should be bound to wordpress triggers and events.
Watch the following video tutorial for one of the available custom types plugins, to understand the concept, once you have it, try search the available plugins to choose the one that fully suits your needs:Forum: Fixing WordPress
In reply to: Yslow improvementW3 is one of the best, if not the best SEO plugin.
However, it requires very accurate setting, otherwise, it will not function as required. Please send me a link to your website, so I can see “YSlow” issues and tell me, whether you are on a shared hosting or a VPS?.
RegardsForum: Plugins
In reply to: Need Help Placing A Code Please!This is a normal thing, when using these libraries, because of JS conflicts.
Could you send me a link to your website?
or
paste the “header.php” in the pastebin, if you don’t know pastebin, paste it here and you will know.No problem, I wanted to ensure that everything is fine.
Note the following:
background: url(https://smartsaveranu.com/wp-content/themes/tarnished/images/page-bg-black.png)
In this line of code, note that url(http…….)
there are no quotations after the brackets.
it should be:
background: url(“…………”).Have you noted the difference, look above again and you will note it.
You have mixed between CSS syntax and HTML syntax. The syntax you wrote above only works inside CSS files (*.css). In a PHP file you use HTML tags, so you can either call an external stylesheet like the following you made:
<link rel=”stylesheet” href=”https://smartsaveranu.com/wp-content/themes/tarnished/css/reset.css” media=”screen” />
<link rel=”stylesheet” href=”https://smartsaveranu.com/wp-content/themes/tarnished/style.css” media=”screen” />
<link rel=”stylesheet” href=”https://smartsaveranu.com/wp-content/themes/tarnished/css/prettyPhoto.css” media=”screen” />or use the HTML style tags. When you use Style tags in HTML, you don’t use the CSS syntax,that you use in CSS files.
The whole problem lies in that you are using CSS syntax in HTML tags. As you already know,PHP only processes PHP and HTML. CSS syntax is not recognized.
Check out xxxPAGE.php, and add the ” “, which is HTML syntax and revise any other PHP files, you dealt with HTML tags using CSS syntax.
This make the HTML tags broken, a starting tag without no ending tag.So when you click on the menu, the page goes to the specified page, but your code is not processed, and your menu is set that on these circumstances it shows the homepage.
I hope, I made my point clear and you understand what I mean.A tip of advice, consider using “Advanced Code Editors” plugins, that uses color coding, so you can identify if there are errors in your code, the default wordpress code editor makes these errors very hard to find. Consider it.
Did it work? I hope so.
From the silence, I can tell you are busy fixing things.But at-least, you should tell me, if it did.
Anyway,
RegardsForum: Plugins
In reply to: Need Help Placing A Code Please!Don’t say that, no you are not.
Switching is done very easily, without affecting or ruining anything.
Go to Appearance, Activate another theme, go test your plugin, and if it works then we know it’s a theme related issue, and when you are done, activate your theme again, and nothing is gone or changed.
That’s why theme files are stored and edited separately, so you can change the look of your website every day, with all of your things the same they are.It’s just a press of a button.By the way, I really like helping younger ??
I debugged your website, and I got this warning:
Resource interpreted as Image but transferred with MIME type text/html: “https://smartsaveranu.com/wp-content/themes/tarnished/images/page-stripe-brown.png”.
I browsed the page source to check it out, and found:
<link rel=”stylesheet” href=”https://smartsaveranu.com/wp-content/themes/tarnished/css/style-brown.css” media=”screen” />
<style>body {background: url(https://smartsaveranu.com/wp-content/themes/tarnished/images/page-bg-black.png) repeat;}</style>
As you can see from the above that your URL based is not between ” “.So, an image URL was expected but text was passed as an argument. This scrambled the rest of the page html tags.
Go to your theme “header.php” and
All you have to do is to place the url between quotes, like the following:
<style>body {background: url(“https://smartsaveranu.com/wp-content/themes/tarnished/images/page-bg-black.png“) repeat;}</style>.I think this is the problem, try it.
Please let me know, if it’s fixed.
RegardsAdditionally, send me a link to your homepage?\
Specify the name of the Menu plugin, you are using.?
What other menu plugins have you installed (activated or deactivated), and not deleted, in your pursuit for the menu you like?
Anyway, I am scanning it for you, tell me what type of plugin “Ghost Pool” is?
Is that your header, or you probably copied single-post.php, too?.
Use the Pastebin to paste your code and send me the link.
Forum: Plugins
In reply to: Need Help Placing A Code Please!Additionally, before further troubleshooting, watch this instructional video, and make sure you complied with all the steps.
Featured Content Gallery – Instructional Video – iePlexus
Let me know, how it went.
Regards.