When I try to change from one theme to another Wordpress seems to load the pages that I created within an existing theme along with the same content in the header and footer. I dont understanding why the same header and footer it being applied to all themes and the same pages showing up. If I remove a page it removes it from all of my themes.
I want each theme to be individually to each other. I cant seem to fix this problem. I have look everywhere
Related
I am using this theme:
https://www.templatemonster.com/wordpress-themes/50603.html
How you can change the site logo URL on the header section?
I followed a lot of steps from may sites such as the following, and nothing worked:
https://docs.oceanwp.org/article/473-change-custom-logo-url
https://crunchify.com/how-to-change-logo-url-link-for-any-wordpress-themes-including-genesis-themes/
https://docs.oceanwp.org/article/473-change-custom-logo-url
None of the above links were helpful.
I appreciate your help.
Tarek
you can try from the admin dashboard Appearance -> Customize -> Header
generally site logos can be changed from there
Edit:
My apologies, I just realized that you are looking to change the site logo URL.
You will want to install a child theme first if there's one for your theme or create one Child Themes - Wordpress
Then, you will want to dive into the original theme files and see if there are any filters within your header.php and use it to replace the anchor with a the one that you specify in functions.php in your child theme Filters and Hooks - Wordpress
Do take note that if you modify the theme functions.php directly without using a child theme it will be reset everytime you update the theme.
I'm creating a child theme of Quality (https://wordpress.org/themes/quality/). I´m using the Business Template for the main page.
These are the sections of the template in Quality:
And these ones are the sections of my child theme:
As can be seen, most of the sections disappeared in the child theme.
How can I use those sections in my theme?
Seems like theres something thats already added when you are using the Quality template, which isn't activated in your child theme.
Isn't there some kind of setting page, where you can enable stuff like this?
Maybe under "Appearance" in the wordpress backend menu.
I had not found any option to change that in the menu before post my question.
It does not seem to be a WordPress problem, but theme problem
I'm having trouble adapting a Magento Theme.
I'm using a child theme of a custom theme in order to be able to update this theme in the future. It has worked fine in home page and product pages linked from this page, but when I enter a category page and from there go to a product page, my child theme is not applied anymore (custom theme instead).
I tried a lot of things but oddly, no changes were visible. I even commented a css I was importing from the custom css style field in the admin, and it was still being applied. I flushed cache of course, but no results.
I must say that originally I had a folder with css inside the main theme default folder (magma/default/child_theme/css/style.css) and it was linked in the field as mentioned above. Then I made a copy of it and put it in magma/child_theme/css/style.css, which is the way a child theme must be, as I understand. I changed a color in this new css and no changes made. The first css is still being called. I don't know from where, since I commented the import, as I said.
Any idea where to look into?
Thanks!
You mentioned it's specifically categories and their products. I would check Catalog > Manage Categories then, specifically the Custom Design tab on whatever category/categories are giving you trouble.
I have installed Mantra as my WP theme, can't find help to this two issues.
1) Sidebars are not showing. I have a child theme with funtions.php and stylesheet.php folders. The theme comes with possibilities for 1-4 columns and sidebars left, right or both. I was explained can't have sidebars in the frontpage or as theme calls it, presentation page. If I could still add them, I would be extremely happy. However, my main issue is, I can't get sidebars to display in my post pages. I removed the view of pages and I'm using Categories instead since my page is news based. The main theme has sidebar php and action as been called into my child theme. Sidebars do exist since I can insert in the footer. It's just sidebars that are not working. I use for choosing where to display the Jetpack widget visibility. I need the sidebars so visitors can navigate my site between categories and want to display other content as well.
2) I have created an image, to the exact size theme advises and as per theme, it will be posted as is if the image has the exact measurements. However, no matter what I do, it does not displays as is and keeps cropping my image in half when I try to submit it.
This may help you to solve sidebar & crop issue
http://wordpress.org/support/theme/mantra
I am using a WordPress theme in a site. I want to edit the bottom of the page, replacing the WordPress default message and replace it with a custom message. The problem is, the change I want to make should be independent of the theme. I can change that editing footer.php using admin panel. Problem is, I do not want the changes to be reverted as soon as I change the theme. Can anyone suggest how to achieve that? Besides I want to remove the WordPress logo, too.
This isn't the way wordpress works I am afraid.
Anything that is tied to the database (posts, pages etc etc) will remain from theme to theme, but any changes you make to the theme files directly (editing default footer text) are tied to not just that theme, but those specific files. If you change the theme, or update the theme to a new version, your changes will be lost.
You are editing a file, and that file will no longer be in use when you switch theme.
You could use a plugin to create an overlay layer at the bottom of the page but this would be a fairly nasty solution and would be liable to appear differently when you change the theme.
Alternately, a plugin could be used to inject some javascript that modifies the footer but again, would depend on the theme as to what classes/IDs you'd be wanting to modify.
Basically this isn't something that's done!