leftfooted
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Making whole post from the posts page (index.php) CLICKABLEThank you. It is working now
Forum: Fixing WordPress
In reply to: Making whole post from the posts page (index.php) CLICKABLE1)i added this between <head></head> <script type=”text/javascript” src=”//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js”></script>
2) i added this under my step number 1
<script type=”text/javascript”>
$(“.myBox”).click(function(){
window.location=$(this).find(“a”).attr(“href”);
return false;
});
</script>3) i added this in my page content to try if this worksbut it’s nt working for me
<script type=”text/javascript”>
$(“.myBox”).click(function(){
window.location=$(this).find(“a”).attr(“href”);
return false;
});
</script>Where is mistake? does anybody know?
thanks
Forum: Plugins
In reply to: [Transposh WordPress Translation] Transposh problems with site's titlewhen i use this function for site’s
<title><?php
if(is_home()) {
echo bloginfo(‘name’).’ – Home’;
} elseif(is_category()) {
echo ‘Browsing the Category ‘;
wp_title(‘ ‘, true, ”);
} elseif(is_archive()){
echo ‘Browsing Archives of’;
wp_title(‘ ‘, true, ”);
} elseif(is_search()) {
echo ‘Search Results for “‘.$s.'”‘;
} elseif(is_404()) {
echo ‘404 – Page got lost!’;
} else {
bloginfo(‘name’); wp_title(‘-‘, true, ”);
}
?></title>title its not showing my site’s name which is UGE. it shows word “week” instead UGE.
i call the plugin with this function <?php if(function_exists(“transposh_widget”)) { transposh_widget(array(), array(‘title’ => ‘Translation’, ‘widget_file’ => ‘flags/tpw_flags.php’)); }?>