Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have a wordpress theme of 'Couponis' and I want to edit some code inside a popup window of the coupon when pressing on 'Get Code' but I do not know which file to edit.
here is example of the theme:
http://demo.spoonthemes.net/themes/couponis/home-2/
So how to know which file I should go to
To know which file to edit, simply install the Show Current Template plugin.
Having said that, the best practice to add custom code into a WordPress theme is by creating a child-theme. This method allows your custom code to remain intact when the parent theme is updated. You can find more about child themes here.
I hope you find this useful.
Cheers
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need some help with wordpress, I'm not too experienced with it, and I need to add multiple pdf to the post/page edit screen back-end and display then the added files on the front-end to let the user download them. I've found this article but I'm not sure if this is the way to follow, I will not know the labels and I'm not sure if inside a custom metabox is possible to create dynamic fields (add more fields like label and file if needed). I don't want to use a bloated plugin, how I can proceed?
The easiest way to do this is upload the PDF using the media uploader and then linking them in the frontend while creating a post.
A simple sample at - https://www.wpmadesimple.org/supplementary-guides/adding-pdf-documents/
Let me know if you need more help. This is without a plugin, though there might be more solutions like CPT/Plugins but that is based on your needs.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to make a custom page template in wordpress to customized all section for a specific page. In my fully custom made theme using bootstrap.
create a file in your theme folder page-templatename.php
<?php
/**
* Template Name: templatename
*/
get_header(); ?>
and place this code in your created php file. Now you can found the page templte in your wordpress login.
You can use this link wordpress from scratch
and also this one codex wordpress
and also it is a good idea to copy wordpress twentyfifteen theme and use the theme structure for your custom wordpress theme
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am working on theme development in wordpress (and i am new to wordpress). i have started with Sage theme from Roots.
To archive what i need added image below
I am using Content Post Type UI plugin to do this. I have no idea how to do this any help for tutorials would really appreciated.
Thanks
Sandeep
You need to add this in supports
see this in screenshots
http://awesomescreenshot.com/0595nlpbde
Have you check those options when you created the post type?
See this screenshots
http://awesomescreenshot.com/0705nlqdff
You need to create custom post type by user plugin content post type ui plugin and then add your title content and image in each post and fetch all posts on front end that's it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new to WordPress. I have installed WordPress on my localhost and even installed and activated a new theme. Now, I want to add horizontal navigation to my wordpress, but I have no idea how to do that or which particular file I need to edit. Can anyone help me whit that or suggest any tutorial that has step by step instructions to learn word press..?
Any kind of suggestions are appreciated.
Depending on which theme you are using, in my case I refer to the default TwentyThirteen WordPress theme. Open up the folder WP is installed in and navigate to the header.php file in the path as follows:
your-wordpress-site/wp-content/themes/your-theme-name/header.php
In that file you can edit the navbar starting at this line:
<div id="navbar" class="navbar navbarShadow">
You must also find the style.css file and edit that for CSS.
I would start with the documentation
http://codex.wordpress.org/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am trying to create a WordPress theme and need to be able to change the images on each page outside the WP text editor. Can this be achived without plugins?
Many thanks for you help.
You can use FTP Manager and replace old images with the new ones.
do you mean you don't just want to use the featured image on a page? - you can create a different template for each page with its own image on. For example if your site has three pages, home, about and contact for example, in your themes folder, saving page.php as page-home.php, page-about.php and page-contact.php is one way to do it. - alternatively use different featured images on each page.