
QuickOldCar
Staff Alumni-
Content Count
2,972 -
Joined
-
Last visited
-
Days Won
28
QuickOldCar last won the day on July 11 2016
QuickOldCar had the most liked content!
Community Reputation
119 ExcellentAbout QuickOldCar

-
Rank
Prolific Member
- Birthday 06/23/1971
Contact Methods
-
AIM
quickoldcar
-
Website URL
http://dynainternet.com
Profile Information
-
Gender
Male
-
Location
NorthEast Pennsylvania
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
In your style.css are these rules #sitename { font-size: 60px; color: #7272DE; padding: 20px; text-align: center;} #banner { margin-left: 210px; background: #000; text-align: right;} Yet when viewing the header.tpl file I do not see these rules applied <!-- START BLOCK : header --> <body> <div id="{page_id}"> <div id="leftcontainer"> <div id="maincontainer"> <div id="leftcolumn"> <div class="leftblock"> <div class="lefttitle"><div class="lefttitle2">{menu2_title}</div></div> <div class="blockbox"&g
-
Need to show the code that actually does the pagination.
-
css .centeredImage { text-align:center; margin-top:0px; margin-bottom:0px; margin-right: auto; margin-left: auto; padding:0px; } html <p class="centeredImage"><a href="http://site.com"><img src="http://site.com/images/default.png" alt="Logo" style="max-width:98%;max-height:90px;"/></a> </p>
-
Trying to add a click counting code.
QuickOldCar replied to canadacatman9's topic in PHP Coding Help
You don't need to add a href link, place a hidden field in the form. <input type="hidden" name="click" value="yes"> -
header() must be used before any output is displayed. I don't see anywhere in your header.php code you posted that SYSTEM_HELPER.PHP is included or your redirect function is being called upon.
-
Welcome to the forum.
-
What do i need to clone this table/widget?
QuickOldCar replied to Evolutionsic's topic in Applications
Maybe should be looking at the developers site and also wordpress related. If this was made as a plugin everything should be included to work, possibly they require a special custom theme to work right. To try and make this simple, adding functions to theme itself or use as a plugin that injects into themes. -
Modifying code for Buddypress community
QuickOldCar replied to RoberJames's topic in PHP Coding Help
Pretty much you have to query the counts sorted in the order you desire. Then fetch the post_id's information for each so is something of value to show and possibly click on as well. -
Modifying code for Buddypress community
QuickOldCar replied to RoberJames's topic in PHP Coding Help
Is my understanding you want the totals for votes somewhere like the sidebar and to refresh every so often. Is no need to modify the current script have, that either adds a vote or not upon casting a vote via POST. You need to write a script to query and fetch all the results, can use a header or meta refresh and include or iframe the script in a sidebar text widget. I would think refreshing it more often be needed as well. Must be before any output at the beginning of the script. header( "refresh:30;url=script_name.php" ); Meta does not need to be at the beginning. <meta htt -
Are you aware you just need to have the video id and and use it in place of video_id any one of the following urls for the image? http://img.youtube.com/vi/video_id/0.jpg http://img.youtube.com/vi/video_id/1.jpg http://img.youtube.com/vi/video_id/2.jpg http://img.youtube.com/vi/video_id/3.jpg
-
If you need to stay on the page and reload only that look into jquery or ajax codes pertaining to it, otherwise can use a form with POST or GET so it loads your specific image size requested. That will reload entire page with the set image size. You can use css to change the image being displayed or even gd or imagmagic and store these images for future use. Is quite a few image resize scripts around. Then can cache the images.
-
Ternary operator https://en.wikipedia.org/wiki/%3F:
-
How do I install wordpress to php hosted server?
QuickOldCar replied to sonnieboy's topic in Applications
Wordpress can be installed in root, subdomain or directory. Can follow the instructions here. https://codex.wordpress.org/Installing_WordPress -
how to make this pagination work with search results?
QuickOldCar replied to lovephp's topic in PHP Coding Help
You also want to never use a negative value so if less than 1 make it one again. if($page < 1){ $page = 1; }