Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: GetSimple Contact
Post: RE: GetSimple Contact

By chance, is there a way to make this submit, and not refresh the page? (Currently, when submitted, it reloads the page) Not sure if I'm missing something that could do this, or is this something ...
korey.badgley Plugins 178 511,160 2015-09-15, 05:09:53
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

Tyblitz Wrote: (2015-09-09, 09:03:12) -- What about doing a [c]scandir[/c] on [c]GSTHEMESPATH . $TEMPLATE . '/assets/images/' [/c], then prepend global [c]$SITEURL[/c] to each result and output. Voil...
korey.badgley Developer Discussions 30 60,833 2015-09-10, 04:50:55
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 23:12:16) -- No clue what your problem is, works fine for me. PHP Code: -- function my_get_files(){ GLOBAL $TEMPLATE; $folder = GSTHEMESPATH . $TEMPLATE . '/assets/i...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 23:49:58
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

I tried a new path, and moved my projects folder from the theme, to the data/uploads folder When I do this, I get a 403 Forbidden. (data/uploads is where I would like to have the projects folder...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 13:32:26
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

Code: -- -- The above code is what is being echo'd, as glob($pattern, GLOB_NOCHECK)will return the full pattern when there are no results that match the pattern. It seems that the glob functio...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 12:50:50
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 12:22:12) -- Folders have to be full paths. You do know the difference between urls and paths? -- Yes..... The problem is that on the index.php (Page loading all other p...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 12:34:26
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

I should also mention I have tried... $folder = 'assets/images/projects/'; it gives the path + file names, yet the IMG tags still will not echo to the page.
korey.badgley Developer Discussions 30 60,833 2015-09-09, 11:48:08
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

The folder should be named... path..... it needs to be a URL, as it needs to get the directory for the glob to search, and find the files that meet the *.* criteria (All files in this case.)
korey.badgley Developer Discussions 30 60,833 2015-09-09, 11:45:13
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 10:49:15) -- Hehe you gotta take smaller steps man. You keepmsaying img tags. How about you just take it one peice at a time. Print_r($folder); Print_r($images);...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 11:05:43
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

Tyblitz Wrote: (2015-09-09, 09:03:12) -- What about doing a [c]scandir[/c] on [c]GSTHEMESPATH . $TEMPLATE . '/assets/images/' [/c], then prepend global [c]$SITEURL[/c] to each result and output. Voil...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 09:51:40
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 08:41:54) -- Well like I said you are using a url as a file path. You should at least use debugLog() for tracing stuff. And the sa_dev plugin for front end debugging -...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 09:49:07
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 07:36:36) -- well not sure why you put it there, you shouldn't modify core files. But glob($folder.$filetype); $folder is not a folder its a url, you asked for url.....
korey.badgley Developer Discussions 30 60,833 2015-09-09, 08:02:00
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

PHP Code: -- function getImages() { $folder = get_theme_url(false) . '/assets/images/projects/'; $filetype = '*.*'; $images = glob($folder.$filetype); $j = 0; $column1 = array(); $column2...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 07:00:35
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 04:52:02) -- well first off its get_theme_url(false) -- Just tried that, still has the same issue. Google Drive link to Image (https://drive.google.com/open?id=0B43QfA...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 05:00:51
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 04:40:12) -- are you using functions.php or including your own php file from your template ? -- Trying to include my own php file.  Named: images.inc.php
korey.badgley Developer Discussions 30 60,833 2015-09-09, 04:48:36
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 04:15:51) -- what version of GS..... -- I should reword that.... I cannot use the get_theme_url() in the php file that I am trying to use. Code: -- $folder = 'a...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 04:46:24
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

korey.badgley Wrote: (2015-09-09, 04:26:44) -- shawn_a Wrote: (2015-09-09, 04:15:51) -- what version of GS..... -- GetSimple CMS (http://get-simple.info/) – Version 3.3.7 -- Should note... I am ...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 04:28:56
    Thread: Custom Theme PHP File Include Issue
Post: RE: Custom Theme PHP File Include Issue

shawn_a Wrote: (2015-09-09, 04:15:51) -- what version of GS..... -- GetSimple CMS (http://get-simple.info/) – Version 3.3.7
korey.badgley Developer Discussions 30 60,833 2015-09-09, 04:26:44
    Thread: Custom Theme PHP File Include Issue
Post: Custom Theme PHP File Include Issue

Hello, I am having an issue where I created a custom PHP file, that gets all the pictures in an image directory, and displays them on the page in correctly formatted DIV/IMG tags. It will work c...
korey.badgley Developer Discussions 30 60,833 2015-09-09, 04:13:02
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

OH MY GAWD! Contacted Manos (scroll creator) and he advised me that I needed to include... html, body { height: 100%; } It seems to work now!!!
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 04:47:43
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 04:31:03) -- and one more thing, can you change the GS version to load all scripts and css in the order that they are in the index.html file. -- Done
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 04:37:54
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 04:23:39) -- will you change the main.js back to the veriosn you have on the index.html version -- Done.
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 04:27:24
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

Here.... I set it up so that you can see the CMS vs HTML versions of the same files. GS CMS Version (PHP) (http://cmstesting.host22.com/index.php) Non-CMS version (HTML) (http://cmstesting.host2...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 03:57:11
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 03:23:47) -- also in main.css line 1 remove the overflow: hidden -- Completed, and you can see default scroll does have enough for scrolling, and should be replaced b...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 03:29:26
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

shawn_a Wrote: (2015-08-21, 03:13:11) -- you stuck window.load inside your function you should be calling your function after window.load you have it backwards. and if this uses jquery you need...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 03:19:08
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 03:10:00) -- you'll need to fill those sections with something, there is nothing to scroll... -- All sections have 400px height.... I would assume that should make it...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 03:13:37
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 03:01:20) -- you'll need to go into settings and change the base url to cmstesting.host22.com before it will work -- Updated, sorry forgot about that.
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 03:04:34
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 01:44:04) -- cool , throw it up and I'll have a quick luck.. -- http://cmstesting.host22.com/ Yes this is a free host.... but still shows... (With very Basic, single ...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 02:52:58
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 01:38:24) -- do you have a URL we could look at? -- Let me see..... All is local currently... however I think I have a free host I can throw it on..... for a second a...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 01:43:34
    Thread: Trying to integrate jQuery content Scoller
Post: RE: Trying to integrate jQuery content Scoller

n00dles101 Wrote: (2015-08-21, 01:30:05) -- Do you have the custom scroller CSS loaded? I cant help with specifics of this jquery script. I'd look at this video again, as it show you how to g...
korey.badgley General Questions and Problems 26 53,341 2015-08-21, 01:35:38