tergra
Forum Replies Created
-
Ok I’ll install WP-CLI first and I’ll let you know how it goes in 1 week ??
Yes, here it is !
https://ibb.co/bJpP2cAlso sometimes the “temporary location” goes red :
https://ibb.co/n5C0ax
And then it comes back green again for no reason, without any change on my part.Any hint on what to do besides setting up the cron CLI command ?
Hi, I wish I read your review sooner. Same here, I paid to upgrade 2 tickets and none of them has received an answer… Pretty pissed at how disrespectfully I am being treated right now.
It’s not a shortcode, I have an affiliate url parameter which should be transformed into a cookie by the plugin MyCred, and it doesn’t :/
So Pro version won’t change anything regards this issue I guess ?Thanks for your answer ?? That means I can activate the 3rd party plugins I want on the pro version right ?
I have a website (mydomain.com) and also a staging (test) website on subdomain.mydomain.com, I guess it all counts as one domain for the pro version license ?Thanks for your prompt answer, you rock ??
Now if I understood well your plugin makes all the other ones inactive while on coming soon mode right ? If want to call all the files of a specific plugin, as if it were normally activated, what should I do then ?Forum: Developing with WordPress
In reply to: the_post_thumbnail() as og:image infamous bug ;-)Thanks ! I tried and get_queried_object_id() always gives the same result on every Question : 4. Not sure this is the right function though, as this is a custom post type (“Question”, so not a page or a post)
(PS : The code I have so far is the following :
<?php wp_head(); ?> <?php $idforthumb=get_queried_object_id() ; ?> <meta property="og:image" content="<?php echo get_the_post_thumbnail_url( $idforthumb ); ?>" /> </head>
I’m quite lost… Thanks again for your help !!
Forum: Developing with WordPress
In reply to: the_post_thumbnail() as og:image infamous bug ;-)Ok thanks, I tried this then :
<?php $idforthumb=get_post_meta( get_the_ID() ) ; ?>
<meta property=”og:image” content=”<?php echo get_the_post_thumbnail_url( $idforthumb, ‘large’ ); ?>” />
</head>But still nothing. Sorry but I am not a developer so these things, even though they may seem very simple to you, are very hard for me !
Again, thanks for your time
[Moderator note: Please, no bumping.]
- This reply was modified 7 years, 9 months ago by Steven Stern (sterndata).
Forum: Developing with WordPress
In reply to: the_post_thumbnail() as og:image infamous bug ;-)Thank you. I tried this and unfortunately the same bug keeps being there… ??
But maybe @bcworks has it right when he says “the_post_thumbnail() has to be within a WP Loop because it depends on a valid $post value which is not yet set in page headers.” too ? I put your code just before </head> though, if it changes anything.
Thanks for your help guys !- This reply was modified 7 years, 9 months ago by tergra.
Forum: Developing with WordPress
In reply to: the_post_thumbnail() as og:image infamous bug ;-)Yes sure ??
For instance, for the above statement and this page , Facebook debugguer says the following : https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fbeastof.com%2Ffr%2Fq%2Ffaut-il-imposer-le-volontariat-a-lecole%2F- This reply was modified 7 years, 9 months ago by tergra.
Forum: Developing with WordPress
In reply to: the_post_thumbnail() as og:image infamous bug ;-)Oh I see, thank you. Indeed I tried with <meta property=”og:image” content=”<?php the_post_thumbnail_url(large); ?>” /> and it doesn’t work either ??
Then how to achieve what I wanna do ? Thanks !
Forum: Plugins
In reply to: [AccessPress Social Share] Counter issues on Facebook / PinterestHey, I see. Is there a way to fix this ourselves, to code something along the way that would count private shares for instance, and deduce them from the global Facebook share count ? Thank you !