any 1 know its normal on google analytics sometimes i saw 2 ppl on my website ,but actually the question is i saw a referring website like forum 67556757 .com and when i clik o
Google analtic detected sometthing strange ?
any 1 know its normal on google analytics sometimes i saw 2 ppl on my website ,but actually the question is i saw a referring website like forum 67556757 .com and when i clik o
I don't know if you saw this already, but there is a free support number you can call... Free and good Google Support ! Adwords & Analytics Hope this helps...
grtz
See more comments
hello everyone ,how ican add a text picture in tagline cant find where to go in option,thanks
yannick p.
Hello,
You just have to add a new function, to your functions.php...
Sounds easy (and it is if you have some experience with PHP) but for most people it isn't...
Very important in this case is to create a child theme, more info: How To Create A Child Theme in Wealthy Affiliate Then you add this function in your child theme functions.php file:
add_filter( 'tc_tagline_display' , 'my_icon_in_tagline');
function my_icon_in_tagline() {
global $wp_current_filter;
?>
<?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?>
<?php bloginfo( 'description' ); ?>
<?php else : //when hooked on __navbar ?>
<?php bloginfo( 'description' ); ?>
<?php endif; ?>
<?php
}
The icon in the example is just some buzz icon, you need to replace it with the link to your icon. If you need more icons, just make few more tag lines.
This is only 1 way you can do this...
A great info site regarding the tagline is this one:
http://presscustomizr.com/snippet-target/tagline/
I hope this helps and when you cannot sort it out, don't hesitate to tell your problem...
Grtz,
Bert
How too add text picture to tagline?
hello everyone ,how ican add a text picture in tagline cant find where to go in option,thanks
yannick p.
Hello,
You just have to add a new function, to your functions.php...
Sounds easy (and it is if you have some experience with PHP) but for most people it isn't...
Very important in this case is to create a child theme, more info: How To Create A Child Theme in Wealthy Affiliate Then you add this function in your child theme functions.php file:
add_filter( 'tc_tagline_display' , 'my_icon_in_tagline');
function my_icon_in_tagline() {
global $wp_current_filter;
?>
<?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?>
<?php bloginfo( 'description' ); ?>
<?php else : //when hooked on __navbar ?>
<?php bloginfo( 'description' ); ?>
<?php endif; ?>
<?php
}
The icon in the example is just some buzz icon, you need to replace it with the link to your icon. If you need more icons, just make few more tag lines.
This is only 1 way you can do this...
A great info site regarding the tagline is this one:
http://presscustomizr.com/snippet-target/tagline/
I hope this helps and when you cannot sort it out, don't hesitate to tell your problem...
Grtz,
Bert
I don't know if you saw this already, but there is a free support number you can call... Free and good Google Support ! Adwords & Analytics Hope this helps...
grtz
thank you mate
Your Welcome!