Jump to content

okay so im doing web development for a few clients at the minute and they ideally need to be able to add pictures and things! currently using bootstrap! i am aware of some software that you are able to implement and add photos, but i cant for the life of me remember what it was? any ideas?

Check out my current projects: Selling site (Click Here)

If($reply == "for me to see"){

   $action = "Quote me!";

}else{

   $action = "Leave me alone!";

}

Link to comment
https://linustechtips.com/topic/371082-clients-and-web-development/
Share on other sites

Link to post
Share on other sites

What... do you mean? Like... <img> tags?

There is a gui somewhere where clients can add photos and descriptions without adding code

Check out my current projects: Selling site (Click Here)

If($reply == "for me to see"){

   $action = "Quote me!";

}else{

   $action = "Leave me alone!";

}

Link to post
Share on other sites

Do you have an admin panel? What is the site coded in? Bootstrap is an HTML framework--this tells us nothing.

 

That being said, you're probably looking for a WYSIWYG editor. I'm not sure what's common now, but TinyMCE was big a few years ago.

--Neil Hanlon

Operations Engineer

Link to post
Share on other sites

Do you have an admin panel? What is the site coded in? Bootstrap is an HTML framework--this tells us nothing.

No admin panel it has a little of everything but only the html will be editied

That being said, you're probably looking for a WYSIWYG editor. I'm not sure what's common now, but TinyMCE was big a few years ago.

Check out my current projects: Selling site (Click Here)

If($reply == "for me to see"){

   $action = "Quote me!";

}else{

   $action = "Leave me alone!";

}

Link to post
Share on other sites

I recommend Concrete5... You can convert the most complex of bootstrap sites into a C5 theme in a couple hours... tops.

 

The video tutorial for HTML site -> c5 Theme conversion is 22 minutes which is twice as long as it takes to figure out: http://www.concrete5.org/documentation/developers/5.7/designing-for-concrete5/building-a-concrete5-theme/converting-an-html-template-to-a-concrete5-theme/

 

As long as you know HTML and a smidgeon of PHP it's super easy and once you're done your clients can edit their content, add pictures, and so whatever the heck they want without bothering you... Which is why I use it a lot.

 

The short of it is you add some a couple lines of PHP at the top and bottom of your site... and then:

<div id="content-101">    Some block of hard coded text...</div>

becomes

<div id="content-101">   <?php        $a = new Area('content 1');        $a->display($c);   ?></div>

and now it can be edited using a WYSIWYG editor live:

 

TTTsAYM.jpg

 

if you do it right and use things like the built in auto-nav controller (which you can skin) your clients can add entire new pages to the site and it will take care of the menu and navigation for them... ie, add an "about" page and it will automatically show up in the main nav and footer nav.

Link to post
Share on other sites

I recommend Concrete5... You can convert the most complex of bootstrap sites into a C5 theme in a couple hours... tops.

 

The video tutorial for HTML site -> c5 Theme conversion is 22 minutes which is twice as long as it takes to figure out: http://www.concrete5.org/documentation/developers/5.7/designing-for-concrete5/building-a-concrete5-theme/converting-an-html-template-to-a-concrete5-theme/

 

As long as you know HTML and a smidgeon of PHP it's super easy and once you're done your clients can edit their content, add pictures, and so whatever the heck they want without bothering you... Which is why I use it a lot.

 

The short of it is you add some a couple lines of PHP at the top and bottom of your site... and then:

<div id="content-101">    Some block of hard coded text...</div>

becomes

<div id="content-101">   <?php        $a = new Area('content 1');        $a->display($c);   ?></div>

and now it can be edited using a WYSIWYG editor live:

 

TTTsAYM.jpg

 

That's actually pretty cool. I'll have to re-investigate Concrete. 

 

I still like my own CMS. :P

--Neil Hanlon

Operations Engineer

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×