No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
19 Posted Topics
So the localization file I am getting is an xliff file. I am trying to find a tutorial or a starter to help me call in a key and return its value. I have seen some tools but not what I am looking for. Any help will be appreciated. Thanks. | |
I have several different computers that I work on the same code. So on my server I have the master git repo. I have noticed that some code when I push then try to pull and or fetch on other computer it does not pull some of it down. Not … | |
Ok so let me explain what I am looking for. I have one repo where the new code is being written that lives on one repository. On another repository I have pulled a snapshot of their code and edited to work in a certain environment. In a couple of weeks … | |
Of so if I use this in a template on the index page I get what I want. If this code lives on a page.php page it shows me the recent pages created. [CODE] <?php $i = 1; while (have_posts() && $i < 6) : the_post(); ?> <li><a href="<?php the_permalink(); … | |
I am assuming I will use the date function but I want to get the day that is the 3rd wednesday of the month. My site has dates for meetings and they are always the 3rd wed of the month. I like to show the next 3 meeting dates. Could … | |
Ok so I am writing a PHP script that will gather some information into a file and the push it up via SVN. I am running into a problem with pushing it up via SVN. [CODE=php] shell_exec("svn commit -m $message store-webapp-test-selenium-$storeCode --password $svnPassword"); [/CODE] I have even tried it like … | |
Re: Another way to do it is you push your data to one file. Then write what you need the internal file and the rest just push to the other. | |
Ok so I am trying to setup on my site to have 6 of my recent tweets. I am trying to use the .getJSON method and it is just not working. [CODE] $.getJSON("http://api.twitter.com/1/statuses/user_timeline/jrock2004.json", function(data) { $.each(data, function(){ $('<div></div>') .hide() .append('<span>' + this.text + '</span>') .appendTo('#tweets') .fadeIn(); }); }); [/CODE] Any … | |
Re: Well more information is needed? Are the images stored in the database themselves or do you have a field in the db that just points to the file location and filename? | |
Re: You could use jquery or javascript for this. You could use PHP as well. | |
Re: Is this running on a linux server? Do you have sendmail running? | |
Ok I have a page that has a list of teachers on it that has their email address. What I want to do is when the teacher's email link is clicked a lightbox type form comes up. So would it best to code what my form is in a separate … | |
Re: So you are saying is if you put your main stylesheet above that code and you open your site in firefox that it is all messed up? How? Do you have a link we can view this? | |
Re: Not sure if you are using jquery at all but you could do it like this [code=javascript] $(document).ready(function() { tallest = 0; group.each(function() { thisHeight = $(this).height(); if(thisHeight > tallest) { tallest = thisHeight; } }); group.height(tallest); equalHeight($("#left")); equalHeight($("#right")); }); [/code] | |
Re: Well there are many ways of doing this. The quick and dirty way of doing this is wrap a form around the table. Change edit to a submit button and store the username in the name attr so you can post it on the next file. Then do a db … | |
Re: Well you would need to have a webserver running. If you do not then in the terminal do the following: [code] sudo tasksel install lamp-server [/code] | |
Re: You could use jQuery to detect if the person is on an iPad/iPhone and if they are rewrite your nav to not use the flash. | |
Re: Well when I am coding checkboxes in the DB I usually put them in as either a 0 or 1. You set it to 1 if they check it. If this is not what you are looking for please let me know. Thanks [QUOTE=idane;1274842]I have a site that im trying … | |
I am trying to make an expandable div that has a background image. Below is the code I am using. I am just trying to make a quick example of this. Attached is a screenshot. In the bottom right corner of the div you see that white is outside the … |
The End.