Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PROBLEM Modifying Images
#9
You can check the wiki on template tags. http://get-simple.info/wiki/themes:template_tags
You don't really need php knowledge just know what these template tags do and where you position them.

It's also good to know the file structure of a GS site. Then you see that the uploads folder is: /data/uploads , while your theme folder is somewhere in /theme

Code:
img src="<?php get_theme_url(); ?>/data/uploads/static_tiles/dj-qf-logo-links.jpg

You can see here that the /data/uploads folder is supposed to be in the theme location, which is actually not the case.

If you would use instead something like:

Code:
img src="<?php get_site_url(); ?>/data/uploads/static_tiles/dj-qf-logo-links.jpg
Reply


Messages In This Thread
Modifying Images - by Dan71 - 2016-09-08, 02:40:58
RE: Modifying Images - by shawn_a - 2016-09-08, 02:56:12
RE: Modifying Images - by Dan71 - 2016-09-08, 03:05:56
RE: Modifying Images - by shawn_a - 2016-09-08, 03:13:21
RE: Modifying Images - by Dan71 - 2016-09-08, 03:32:32
RE: Modifying Images - by shawn_a - 2016-09-08, 03:36:52
RE: Modifying Images - by Dan71 - 2016-09-08, 03:41:31
RE: Modifying Images - by shawn_a - 2016-09-08, 03:51:31
RE: Modifying Images - by datiswous - 2016-09-08, 03:51:58
RE: Modifying Images - by Dan71 - 2016-09-08, 04:21:26
RE: Modifying Images - by Oleg06 - 2016-09-08, 05:28:45



Users browsing this thread: 1 Guest(s)