rodmacqp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Facebook fb:admins & fb:app_id meta tagsOK !!
META TAG in now discovered !!
In the following configuration of functions.php
(after adding the initial “<?php” that I supposed granted)<?php
add_action(‘wp_head’, ‘insert_fb_tags_in_head’);
function insert_fb_tags_in_head()
{
?>
<meta property=”fb:admins” content=”xxxxxxxxxxxxxxxxxxxxx” />
<?php
}Thank you all for your help
Regards,
PascalForum: Themes and Templates
In reply to: [Customizr] Facebook fb:admins & fb:app_id meta tagsI modified functions.php in that way, according to electricfeed pattern (Thank you for this)
functions.php
add_action(‘wp_head’, ‘insert_fb_tags_in_head’);
function insert_fb_tags_in_head()
{
?>
<meta property=”fb:admins” content=”xxxxxxxxxxxxxxxxxxxxx” />
<?php
}
———————————————————————–
But … Facebook still unable to detect the meta tag value.
———————————————————————–
Sniif !Forum: Themes and Templates
In reply to: [Customizr] Facebook fb:admins & fb:app_id meta tagsHi all,
Thanks to Nicolas, I did some progress, however, still not working, yet.
I’m now in the following state :A child theme activated.
Directory : /www/wp-content/themes/customizr-child
In this directory I have 3 files :
style.css
functions.php
screenshot.pngstyle.css
/*
Theme Name: Customizr-Child
Theme URI: http://themesandco.com/customizr
Description: A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr’s core code. In order to keep your code as clean and flexible as possible, try to use Customizr’s hooks API for your customizations. Do something awesome and have fun !
Author: Nicolas Guillaume (nikeo)
Author URI: http://themesandco.com
Template: customizr
Version: 1.0.0
*/
/* Your awesome customizations start right here !————————————————————– */
functions.php
<?php
add_action(‘wp_head’, ‘insert_fb_tags_in_head’);
function insert_fb_tags_in_head()
{
?>
<meta property=”fb:admins” content=”xxxxxxxxxxxxxxxxxxxxx” />
}
<?php
———————————————————————–
In this state, Facebook still unable to detect the meta tag value.
———————————————————————–
Could someone help, kindly ?Regarding the “Oops! Google Chrome could not find &top_oauth=1”
thing, I got out of this simply by :– don’t try to authenticate with Twitter at once
– do some tuning on the plugin (Time between tweet, hashtag, etc …)
– then save the chages
– then authenticate to twitterAnd BINGO ! It does work !
Tweet old post v 4.0.10 on WordPress 3.8.1
Hello,
just installed Tweet old post v 4.0.10 on WordPress 3.8.1
1- Authenticated in tweeter.
2- Trying to login from the plugin, to tweeter, and got the following :
Oops! Google Chrome could not find &top_oauth=1″Dn’t know what to do from there.
Forum: Plugins
In reply to: [BestWebSoft's Twitter] [follow_me] image won't displayHi EBurden,
this may be a consequence of the caching system you are using with WP.
May be your pages had been cached when the plugin was uninstalled, hence the “[follow_me]” text.
Then, after re-installing the plugin,the cache expired on normal timeout (you was having your lunch !)
Coming back, it’s working normally, because after cache expiration the page are processed again, this time with the plugin avtivated …
The magic is explained !
Pascal