In Magento there is an option to show each path from a template file that is loaded on the current page.
Is there something for Wordpress, I need to change parts of a page were a search thing is loaded but I can't find in which file it is...
Regards,
Robert
This plugin will help you out:
https://wordpress.org/plugins/woocommerce-template-hints/#description
You just need to activate it and it will show you template hints like Magento, and if you want to remove template hint, just deactivate plugin
Related
I have a WordPress site and I am using the Hestia theme. There is a file named editor-style.css in my theme directory. I don't know what exactly it is.
Can anyone tell me? Or a link to another website for more details?
It allows you to edit the style of the back end, post editor page. Usually not required, but useful if creating a blog with many authors.
i am trying to edit the single-product template of my website but this file seems to be lost or hidden as i show you below:
As you can see on folder's root there are no such file neither in the other folders. So i found a plugin that tells me what template is the current page using (What The File) , so i go to my single product page and check and voila:
You see that there's a template called: taxonomy-product-cat.php but it's nowhere!
I have set my settings to show all hidden files but still i can find this template.
Can someone help me find it please?
That file is not in your current theme. It can be found in WooCommerce plugin.
Look here: https://github.com/woocommerce/woocommerce/tree/3.8.0/templates
Or read more about WooCommerce Template structure & Overriding templates via a theme
I am trying to edit a WordPress site. When I try to edit the x.com/blog/ page nothing happens.
I am trying to find out which PHP files are related to set up the blog page, but I do not know how.
If I can find the right files I can edit those. So how can I edit the /blog page in Wordpress?
Open Admin Dashboard and edit page blog page and check which template is currently using for that page.Then go to "/wp-content/themes/[your-theme-name]/" and find that template.
https://developer.wordpress.org/themes/template-files-section/page-template-files/
Alternative you can check if x.com/blog/ is coming from archive page which is custom post type page. You can find it via go to "/wp-content/themes/[your-theme-name]/archive-blog.php"
https://codex.wordpress.org/Post_Type_Templates
Go to /wp-content/themes/[your-theme-name]/. All files which are responsible for rendering the output can be found there.
Most likely index.php, home.php, front-page.php or page.php are responsible. The exact responsibility depends on the structure of the used theme.
Simple drop a
echo "This file is used currently.";
into the top of those themes and check if this appears in the source code if you are reloading the page.
Also make sure that any caching plugins are temporarily deactivated.
The basics on how WordPress themes are made and which template part is called can be found here: https://codex.wordpress.org/Theme_Development
I am using one page checkout extension,and my firebug is displaying this path..
checkout/onepage/#2.css
but i am unable to find this page,can anyone help me..
Check the view source of your magento checkout page to find the one page checkout css path and file name accordingly.
Or
Check the page.xml file in your current store theme folder to findout the path.
Or
Check your onepage checkout Extension layout file in your current theme to know the path.
I recently created a new template page, I put the obligatory
<?php
/*
Template Name: New Page Template for testing
*/
?>
as the first part of the code.
Then I uploaded it to the /www/wp-content/themes/neoclassical (where all of the other custom page templates are located).
I now try to change the Template of any page to the new theme, and the new page template does not show!
Any ideas on what I need to do to get this to show up as an option on the "Add Page" area?
I have tried changing the theme to another one and back to the original theme, all to no avail.
Thanks everyone.
For future visitors:
I just had this problem in WordPress 4.8. Turns out I had removed the index.php file from my theme, which was causing the theme not to show the template dropdown.
To fix this just create an empty index.php file in your theme folder.
(WordPress does try to warn you this file is missing on the Themes page in the admin panel — but you might not visit that page while trying to fix this bug.)
Update: Trace has mentioned in the comment below that a missing style.css can also cause this to happen.
if the code of the custom template is not good. it wont show.
try using one of the examples here.
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
So, it turns out that the original developer had put the backup copy of the site in the "LiveFiles" directory, and had pointed the site to "Stuff". I was just uploading to the wrong area.
you just write this sentence and go to admin panal and add new page than you see Template box and find your template page name.
In case this suddenly happens in a working theme, try to delete delete the row starting with _transient_files from wp_options table. That solved the issue for me.