Adnan Moqsood
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange layout when clicking a category on a postHi @rincon
When a user clicks on category page WordPress looks for a template file in the current theme’s directory that matches the category’s ID to generate the correct page. More specifically, WordPress follows this procedure:
1 – category-slug.php
2 – category-id.php
3 – category.php
4 – archive.php
5 – index.phpSo by using the above hierarchy please find the relevant template in your theme and style this template surely it will work for you.
Reference: https://developer.www.ads-software.com/themes/basics/template-hierarchy/
Thanks
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: Mailchimp Pop up windowPlease try after clearing the cache of W3 Total Cache Plugin, hopefully, it will solve your problem if you removed the exact MailChimp plugin embedded code.
Thanks
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: Gutenberg additional CSS ClassHi @kevinpat
Please add this
.hover-mail a:hover{color: #4e6766;}
instead of
.hover-mail.a:hover{color:#4e6766;}
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)Great don’t forget to resolve this topic.
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: I cannot access my wordpress website.The website is not opening for me I think you should need to contact with your hosting provider.
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)Please try again
function start_el(&$output, $category, $depth, $args)
to
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 )
and let me know if it will fix your issue.
Thanks
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: Wp-admin page is showing white blank pageHi @dunka19
Helpful articles:
https://kinsta.com/blog/wordpress-white-screen-of-death/
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/Thanks
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)You are welcome.
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)Please try
function start_el(&$output, $category, $depth, $args)
to
function start_el(&$output, $category, $depth, $args, $id)
and let me know if it will fix your issue.
Thanks
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
- This reply was modified 5 years, 5 months ago by Adnan Moqsood.
Forum: Fixing WordPress
In reply to: Logo on site disappearedHi @granger
You need to add this CSS snippet in your style.css or customizer CSS.
.site-logo img {
max-width: 100%;
max-height: inherit;
}Yes, definitely need to update WordPress core, plugins and themes because it’s necessary for website performance.
Please read this article:
https://cyberchimps.com/why-update-wordpress/
https://optimwise.com/why-update-wordpress-and-plugins/Let me know if you have any questions.
Thanks
Forum: Fixing WordPress
In reply to: Customer DataI open the website and add an item to the cart and go through the whole process but I can not see any user information on the checkout page might be its cache issue.
Please clear the cache and test it out, hopefully, it will solve your issue.
Thanks
Forum: Fixing WordPress
In reply to: I cannot access my wordpress website.Can you please share the website URL for inspecting the website? then I can share possible solution with you.
Thanks.
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)Hi @vdwerff
But I can clearly see the $args = Array in warning message in your topic, so that’s why I have shared this solution.
Can you please share code with me for further tracking the issue?
Thanks.
Forum: Fixing WordPress
In reply to: WordPress rest api for getting wordpress themes and templatesPlease see this link below hopefully it will solve your problem.
Rest API Reference: https://developer.www.ads-software.com/rest-api/reference/themes/Please let me know if it work for you or not?.
Thanks
Forum: Fixing WordPress
In reply to: Problems when upgrading PHP from 5.6 to 7(.3)Hi @vdwerff,
Array is a type. You’re looking for array() (or []), since you’re assigning a default value. I.e. $args = Array should be $args = array().
See the reference: https://stackoverflow.com/questions/42013978/declaration-should-be-compatible-with-php-7
Please let me know if this fixed your issue.
Thanks.