Naji Amer
Forum Replies Created
-
upload it somewhere so that i and others can download it, maybe rapidshare.com or megaupload.com
send me the whole file and i will upload it and replace the old one.
breadcrumb_navxt_class.php
maybe i am missing something, i already replaced what you said
i tried your solution but nothing changed, that’s why i though you were probably fixing the microdata format instead of the “displayed-twice” trail.
i still see the home link displayed twice.
i don’t know about your solution but breadcrumbs works perfectly without modifying the code and the google test tool reads the micro data just fine from my page
i use : bcn_display_nested(false,true,’span’,”);
the only problem is “Home” displayed twice in the trailer and that’s annoying, i debugged the code and i can manage to remove it by a condition check.
“The sad thing about this is I have not seen microformats improve Google’s ability to generate breadcrumbs in its results.”you never know what google is up too, we got the panda algortihm after google published it and it was a disaster for some of the biggest websites, frankly i think google is using microdata formats to crawl the site in an ordered way and to build his own sitemap from those trails.
Forum: Plugins
In reply to: Using same database for different domainsyes, place it in your functions.php, it should work fine for a new domain
Forum: Plugins
In reply to: Using same database for different domainsi didn’t try it for a different domain name, but i think it will work because if you change the domain name you will be able to see the index page which will make this code work
replace the function below
function filter_site_url($url)
{
$url = str_replace('www.domain.com','www.newdomain.com',$url);
return $url;
}
by the way, https://www.betabookings.com and fb.betabookings.com use the same database ??Forum: Plugins
In reply to: Using same database for different domainsthis is how you do it
add_filter( 'site_url', 'filter_site_url','high' );
add_filter( 'home_url', 'filter_site_url','high' );
add_filter( 'admin_url', 'filter_site_url','high' );
add_filter( 'post_link', 'filter_site_url','high' );
add_filter( 'page_link', 'filter_site_url','high' );
add_filter( 'post_type_link', 'filter_site_url','high' );
add_filter( 'attachment_link', 'filter_site_url','high' );
add_filter( 'category_link', 'filter_site_url','high' );
function filter_site_url($url)
{
$url = str_replace('www.','subdomain.',$url);
return $url;
}
the code above will replace the domain url with a subdomain url and will trick wordpress to use the main domain name but with a subdomain url, this is implemented here on an accommodation website that uses wordpress as the main cms betabookings.comif it exists then it should work, it is not good for the reputation of the plugin that the function exist but doesn’t work, if it doesn’t exist at all it is much better.
also the microdata and rdfa is the future of the internet and it is getting wider to use schema.org, and also the a similar schema is being used socially with open graph protocol.
you have to implement this feature, i hope that will be fixed in version 4
thank you for your reply