Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Repeating lists HELP
#11
(2015-04-24, 21:46:29)Antariksh Wrote:
(2015-04-24, 21:28:37)datiswous Wrote: I don't understand what you mean with a timeline, can you give an example?

http://rbista.com/demos/zwin/ 

If you check out the resume section there is an employment and education space. It's a list I want it such that my client can fill it up on his own. The client doesn't have programming knowledge that's the problem

In the source of that page I see:
Code:
<!-- Personal info section -->
                   <ul class="personal-info">
                        <li><label>Name</label><span>Anderson smith</span></li>
                       <li><label>Birthday</label><span>March 13, 1988</span></li>
                       <li><label>Address</label><span>Melbourne Victoria 3000 Australia</span></li>
                       <li><label>Email</label><span class="word-wrap">Anderson.smith@gmail.com</span></li>
                       <li><label>Phone</label><span>+123 456 789 111</span></li>
                       <li><label>Website</label><span class="word-wrap"><a href="#">www.Andersonsmith.com</a></span></li>
                   </ul>

Now if I use that in comination with the plugin (in the plugin I make settings named birthday, address, etc.) , I get:

Code:
<!-- Personal info section -->
<ul class="personal-info">

<li><label>Name</label><span><?php get_setting('portfolio','name'); ?></span></li>
<li><label>Birthday</label><span><?php get_setting('portfolio','birthday'); ?></span></li>
<li><label>Address</label><span><?php get_setting('portfolio','address'); ?></span></li>
<li><label>Email</label><span class="word-wrap"><?php get_setting('portfolio','email'); ?></span></li>
<li><label>Phone</label><span><?php get_setting('portfolio','tel_numbr'); ?></span></li>
<li><label>Website</label><span class="word-wrap"><a href="#"><?php get_setting('portfolio','website'); ?></a></span></li>

</ul>
The person can fill in these settings to get the needed result.
Reply


Messages In This Thread
Repeating lists HELP - by Antariksh - 2015-04-23, 21:55:32
RE: Repeating lists HELP - by Antariksh - 2015-04-24, 14:52:07
RE: Repeating lists HELP - by Timbow - 2015-04-24, 16:48:27
RE: Repeating lists HELP - by Antariksh - 2015-04-24, 16:54:40
RE: Repeating lists HELP - by Antariksh - 2015-04-24, 17:10:08
RE: Repeating lists HELP - by datiswous - 2015-04-24, 18:39:25
RE: Repeating lists HELP - by Antariksh - 2015-04-24, 19:20:38
RE: Repeating lists HELP - by datiswous - 2015-04-24, 20:32:38
RE: Repeating lists HELP - by datiswous - 2015-04-24, 21:28:37
RE: Repeating lists HELP - by Antariksh - 2015-04-24, 21:46:29
RE: Repeating lists HELP - by datiswous - 2015-04-24, 22:40:57
RE: Repeating lists HELP - by Antariksh - 2015-04-25, 03:33:20
RE: Repeating lists HELP - by datiswous - 2015-04-25, 20:31:43
RE: Repeating lists HELP - by hameau - 2015-04-26, 01:37:50



Users browsing this thread: 1 Guest(s)