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.
Related
Created a page
The address bar says digitalelectronics.ru/elementor-7/. But there is no such folder in the site. Tell me which file contains the template of the file displayed in the browser under the address digitalelectronics.ru/elementor-7. Looked at a temporary file (needed, searched)
Then I searched for the file by the text found in the chrome code (see immediately above) -
but found nothing
Tell me how to find the Elementor file displayed in the website builder?
What you are seeing is not a folder, it is the permalink of the post/page. Wordpress rewrites the url path based on your settings:
You can change that slug when you edit a post/page.
Classic Editor:
Gutenberg Editor:
See here for more info about permalinks.
To find out what php template is responsible for the page you are viewing have a look at the template hierarchy. It would usually be single.php if it is a post or page.php if it is a page.
Alternatively you can use a plugin like this one, or similar, that would always show what templates make up the page you are currently viewing.
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
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
I have try to change UI of checkout page on woocommerce. I have try set checkout page same as a below link: http://demo.smartaddons.com/templates/joomla3/sj-tini/index.php/checkout
please suggest any idea regarding this problem.
In wordpress, you can change the UI of the checkout page.Although you can change all the pages.Follow some steps :1:Create a folder with name "woocommerce" in active theme.2: Copy the checkout folder in theme.Here is the syntax:
Plugin checkout folder : wp-content/plugins/woocommerce/templates/checkout.
Theme checkout folder : wp-content/themes/woocommerce/checkout.
Now when you copy the plugin checkout folder to the theme as per discussion above.Then your UI of the checkout page will be linked
to the theme checkout folder and you can easily change it.
For any dought,please email me.
Note:Difference of the folder structure is "templates" folder.
There are a set of several templates that control the checkout page. They can be found in the WooCommerce plugin folder in templates/checkout.
You can put a woocommerce/templates/checkout folder inside your theme's folder and copy the templates you want to alter into it.
Those will override the normal templates without altering the plugin itself. That way your changes won't get overwritten when WooCommerce is updated.
Hope it helps you.