How can I changing posts scheme in wordpress ?
Do I need to use for this plugin?
e.g : here - posts scheme on home page
I'm not entirely sure I understand the question, but will try to answer it.
If you want to change the way your posts look, you can do one of these methods:
1) Use a different theme. Download and install new theme, then activate it.
2) Use custom CSS. Some themes support adding custom CSS. If your theme does not support it, you can make a Child Theme and edit the "style.css" file.
Related
I'm new to wordpress, and I want to know if it is possible to put a theme bought on shapedtheme.com for example on an existing wordpress.
And if so, how to do it. I don't know where to put the code of the theme. I saw the wordpress page builder with text, but I see tags with [] and not <>.
I saw on this thread that pages can be linked to php files. I don't see how.
I have full access to the hosting service's filesystem and can see all wordpress files.
I would also like to transpose the theme header and footer and if possible, use the theme cards to adapt to blog articles written in wordpress.
How can I do this ?
I searched for tutorials on google or related threads on SO with no luck.
Any ressource would be appreciated.
Thanks to anyone who will take the time to read/answer this post.
No, you can't use a non-WordPress theme in a WordPress installation since WordPress will look for specific templates and pass certain objects to the template to be displayed.
You could adapt it to work with WordPress, though. Here's the theming guide to get you started.
But you'll probably be able to find a WordPress-ready theme with the features you want. This is the WordPress theme directory link for themes using bootstrap.
Unless you go for a from-scratch development of a pure php theme, and you need some level of theme customization I'd strongly suggest looking into child themes, as it'll allow you to update the base theme minimizing the changes you'd have to do to yours.
The [ ] syntax you mention are shortcodes, small, safe php functions that can be executed by inserting them in the editor, templates, etc, and provide kind of an api that exposes WordPress or plugins functionality.
And regarding your link, OP already has a WordPress theme, but is looking for a way of using a different, specialized template on specific pages. This template still has to follow to certain WordPress conventions.
I try to modify a theme in WP and I just noticed that modifying a template part doesn't do anything. How is that possible? Tried on different browser to check if its cached and its not, how do I modify a theme part?
I'm using Academia Theme with LearnPress Plugin. I've made a Child theme and I'm trying to modify a file that is a theme part called content-course_list.php which is exactly the html that appears in the segment I want to modify. I just try to change a simple text that is "Read more". I found it, changed it and it doesn't update. I even put it in the child theme folder to make sure it gets it from there and nothing..
I don't use any cache plugins and the host is local (xampp).
It seems the theme has a "core" plugin (academia-core) as well, where its using some shortcode templates for parts of the website. I managed to find the text by its css class (found with chrome inspect in the page) while I searched in all the php files from theme and plugins. I hope this answer helps someone in the future.
I want to change admin theme in wordpress. I have created a simple admin theme plugin (including CSS and js files) to change some simple CSS, however, there are some layout page need to be totally changed. I am wondering if anyone can help me to find an easy to change the whole layout theme without changing source code. Is it possible to overwrite the layout in the admin theme plugin? If yes, how to do it?
You should create "Theme Option Page" instead of creating plugin for Theme setting like colors and other style in wordpress ! For reference :
https://codex.wordpress.org/Creating_Options_Pages
It will be best option as per my experience in wordpress !
I am using a premium woocommerce theme.I don't like the position and look of the search-bar.Its tiny and I want to make it look like Google search-bar.So I want to change it.I don't know coding that well.What specific thing should I do to make it happen.What coding language I have to learn to do this?
If you are lucky the Premium WooCommerce theme which you have bought must have an option to add Custom Code(CSS) through the WordPress dashboard itself.
If not please go through the following procedure:
You can change the look and position of the WordPress searchbar using CSS. In order to add the CSS to your WordPress site you need to know basics of PHP how exactly WordPress works.
You need to enqueue style in theme's(Creating a child theme of your theme is more preferable to avoid the loss of code due to theme update) function.php file or using you own custom plugin.
Both these options are given in details in this link.
Languages you need to know:
PHP, CSS
You need not have to be master of PHP to do the changes just the basics of php is fine.
I have a wordpress website which includes a member area to allow each user to edit his profile.
For this member area, I found these bootstrap templates that would be perfect for what I need.
http://themeforest.net/item/caplet-admin-responsive-html-theme-/6537086
http://themeforest.net/item/webarch-responsive-admin-dashboard-template/6157416
So, I wanted to know if it's possible to convert or use in some way these templates on wordpress ?
Since I already use a wordpress theme, it would be easier to include the bootstrap template as a plugin, do you think it's possible ?
I also heard of child themes features on wordpress but don't know much about it, do you know if it could be a solution ?
Thanks !
You would have to use those templates and custom make your own theme, which is not an easy task. Themeforest has some nice themes for wordpress based on bootstrap. I would check those out instead.