Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
pbagenzi
tagDiv Member

I figure it out .

pbagenzi
tagDiv Member

I was able to modify the tdb_search_form script but this change only appear on Desktop Version. Mobile still shows Your original search. Where can I change the Mobile search function

pbagenzi
tagDiv Member

Thank you. One other question , I want to add a page that queries table that is not WP. So My previous template , I create a logic to displace different pages based on categories . See the example below. Which file can I modify to achieve the same goal.
<?php
global $post;
$thepostId = $post->ID;
$thepostTitle =$post_title;
if ($thepostId ==”73251″) //videos
{
if ( wp_is_mobile() )
{
include TEMPLATEPATH. ‘/home_mobile_videos.php’;
}
else
{
include ‘home_videos.php’;
}
}
else if ($thepostId ==”90542″)
{
include TEMPLATEPATH. ‘/artist_news.php’;
}

?>

Viewing 3 posts - 1 through 3 (of 3 total)