David
Forum Replies Created
-
It happens on all the browsers, but FF is the worst. However, like I said on your demo site it is not an issue. I am working locally with all the other plugins disabled and it lags. In some cases really bad to the point the color selector never matched the mouse selection.
Forum: Networking WordPress
In reply to: 3.9 update install breaks if network path has uppercase lettersForum: Networking WordPress
In reply to: 3.9 update install breaks if network path has uppercase lettersI did another test, but this time it was on my live testing environment vs my local as explained above.
After doing the update on the live multisite, things seem to be just fine and work as it should. I have 2 local multi sites that are broken after the update.Not sure where the issue lies at this point.
Forum: Networking WordPress
In reply to: 3.9 update install breaks if network path has uppercase lettersI forgot to mention that my database prefixes have not been changed in anyway so I am assuming there is a redirect issue happening somewhere.
Forum: Networking WordPress
In reply to: 3.9 update install breaks if network path has uppercase lettersI am having similar issues on my local testing system. I just updated to 3.9 and all my sites are now the main (first) site on the network.
If I go to a subsite admin page the url will say that I am on my subsite but I am actually on the admin for the main site of the network. The admin bar will also show that the current site is the main network site, but the url says I should be on the subsite.
I created a new testing environment with multi site and the same thing happens. If I create a new subsite it will alway direct me to the main site, but the urls will show the subsite address. (front end and backend/admin).
Forum: Localhost Installs
In reply to: quite lost in installationYou can go into the mamp setting and find the right url path. You can even change it there also.
Forum: Everything else WordPress
In reply to: Teaching WordPress in High schoolWhy don’t you start a blog and use it as a teaching journal. Seems like your experience will be helpful to other teachers.
Forum: Localhost Installs
In reply to: First Time word Press and MAMPMake sure the folder path in the Mamp settings matches where you put wordpress. Also make sure your path is right localhost:8888/JustinCrawford_wp/ if that is where the WP files are at.
Forum: Themes and Templates
In reply to: Hey guys, need some help!You will need edit your theme files. I will help you, but are you willing to do a little codeing?
Forum: Fixing WordPress
In reply to: I need a website!You want to use WordPress as it will handle all your needs. Even though a lot of themes are bloggish, they can be customized for your needs. You will need to take a little time to learn a few things, but WP has a large community to help you out.
Forum: Plugins
In reply to: Adding page template via pluginany one?
Forum: Plugins
In reply to: Adding page template via pluginhere is a link i found that shows a snippet that I tried with no luck. However it seems to be close to what I need…any ideas?
http://wpsnipp.com/index.php/functions-php/create-page-on-theme-activation/
Forum: Developing with WordPress
In reply to: Major Database ChallengeThanks again for the reply. As for right now I will have static times that the user can enter. I will have option boxes for special times such as holidays and such or to announce a schedule change. I am trying to keep the system basic for now, but I am also extracting all the details about the group to show in an lightbox overlay for every class in the loop.
Thanks again for the help and I might tap into your knowledge at some point for tips on including actual dates into the system.
Thanks.
DavidForum: Developing with WordPress
In reply to: Major Database ChallengeOne other question?
what is the best way with WP to prevent double form submission…meaning if the user hits submit more then once? not sure if WP already has a hidden function for this. ThanksForum: Developing with WordPress
In reply to: Major Database ChallengeCan I confirm what happens about dates? You seem to be listing every class on a Tuesday with start and end times so this Tuesday and next Tuesday would be shown – is this right?
Thanks so much for the response. Great advice on the aliases and I will play with that at some point. I am not sure what you mean by the above quote?
This line here…
?><tr><th><?php echo $Day ?></th><th><?php if ($Day == 'Monday'){echo 'Yoga Class';}?></th><th><?php if ($Day == 'Monday'){echo 'Teacher';}?></th><th></th><th></th><th></th></tr><?phpthis line creates the header for the table of results and the results start on Monday looping and ends on Sunday. The header of the first loop is designed to show Monday Yoga Class Teacher across the top of the table with the classes for Mondays showing below. The next loop and for the rest of the loops till Sunday only show the day of the week and does not need to show “Yoga Class” and “Teacher” in the headings for that day as the main table now holds those heading values for the rest of the week. Very clean look and works slick.
I think I will run it as is for awhile before I make any more changes and see if the overall design is what I want. As I am new to all this I wanted to make sure a loop inside a loop like such was ok. As long as it is ok for some then I will leave it and have it as a side project to streamline it as time goes.
As for the prefix…yes it is yoga and I made a mistake on setup and did not add the underscore…still should be fine. And thanks for pointing out line 21 as I missed that wpdb-> prefix.
Thanks for the help…you rock. I bookmarked your website for future whatevers. Thanks again.