chaaban
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: watermark?did someone hacked ur site ?
because i see this : owned by VidaLoKa
VidaLoKa
Forum: Themes and Templates
In reply to: Release of Emire themesimple and nice (Y)
Forum: Plugins
In reply to: Voice messages plugin🙂
i think’ this issue is very advanced …
it require external programs , its not an easy thing to do .
Forum: Your WordPress
In reply to: Review of ulblog.org?the sidebar is messed up in IE .
Forum: Fixing WordPress
In reply to: How to create home page separate from blog?just install the wordpress on the top
if the top was : public_html/
public_html/wp-content
public_html/wp-admin
public_html/…are here and all other wp-files
then just update your site url and blog url .
it should work .
Forum: Fixing WordPress
In reply to: issues with a double installation of WordPresswhen u install a new wordpress on the same database you have 2 change 1 thing :
$table_prefix = ‘ik_’
if the first wordpress was installed using this prefix
when you make the second database change this to be something liek
$table_prefix = ‘ik_2’ // or anything else …
this is the only difference .
i tested it and it work , i have 13 wordpress installed on 1 db and its working fine .
or you can try MU wordpress.. if you are able to install it 🙂
Forum: Fixing WordPress
In reply to: Placing AdSense adds on the pageIt should be in your themes file .
you can integrate it directly in the theme 1 time placment like here :
or you can use adsense deluxe plugin .
when you insert a tag <!–adsense–> it will automatically add the adsense code …
it depend what you want to do , if you want to insert adsense in a topic like in the middle or some where specific you have to go with adsense deluxe .
if no .. just insert your code in your template .
good luck .
Forum: Plugins
In reply to: Currency Converter / Exchange Ratedo u want it to be fixed or the currency depend on other site “live currency value” ?
Forum: Your WordPress
In reply to: How to call PHP in your CSS: specifically changing header imgsmake a php function that will generate the css style header , you pass the info to the function and function will generate the stylle depending of what it get ..
function php_generate_css ($image_name , $more_if_needed) {echo " <style>
background: url(\"images/$image_name.jpg\");
</style>
";}
and when u want to call :
php_generate_css ("1.jpg","more variables if needed") ;Forum: Fixing WordPress
In reply to: Login broken after changing site url and blog urltry editing it using mysql (phpmyadmin) if you have it
its under
wp-options table
Forum: Everything else WordPress
In reply to: One Year On with WordPress…1 month 🙂
WordPress is one of the best blog software .
but the only problem is search issue …
that’s a big mess in wordpress .
i think they should work on this
just try 2 search for anything in this forum and you will see what i mean 🙂
Forum: Themes and Templates
In reply to: Newbie Questionsjust upload your theme to
wp-content/themes/here
using ftp or any transfer file pgm
usualy you can log to your ftp by going
ftp://domain (file -> login as)
Forum: Everything else WordPress
In reply to: feed make my adsense go awayok i think i got the solution .
i edited my
comments_rss_link function (wp-includes/feed-functions.php)
to add : rel=’nofollow’
on the rss feed link .
function comments_rss_link($link_text = 'Comments RSS', $commentsrssfilename = '') {
$url = comments_rss($commentsrssfilename);
echo "<a rel='nofollow' href='$url'>$link_text </a>";
}Forum: Themes and Templates
In reply to: Internet Jobs [WordPress Theme]nice theme (Y)
Forum: Themes and Templates
In reply to: display just headlines of blogs on home pageyou can if u want only show the title , <?php the_title(); ?> in the loop .
if u want to show like first few lines , you can add the tag <more>