Malvyn
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Sticky header gaps on PWAUpdate: The problem still exist for logged-in user. I have disabled the wpadminbar for logged-in user (except for admin role), but apparently the sticky header bar still count it as a gap. Is there any way to force the sticky bar to the top for logged-in users?
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Sticky header gaps on PWAHi Ahmed,
Thanks for your concerns. I managed to solve this problem by clearing the PWA n browser cache.
Regards,
Hi @weweave
Thanks for your reply. I manage to solve this problem myself. Please close this topic and mark it as solved. ??
Best regards,
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] AMP Plugin Manager not workingHi @beingsmart,
I’m sorry I can not give you access to my admin panel since it’s a production site ??
The problem’s still existed until now (ver 0.9.85). I can’t remember since when this problem started.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] AMP Plugin Manager not workingHi @beingsmart
Thanks for your response. I’ve sent you an email. Please kindly check and advise.
Forum: Plugins
In reply to: [Super Progressive Web Apps] Onesignal IntegrationSame problem here, I hope it will be resolved soon..
BTW great works guys, I really love this plugin and see some potentials for future developments. Keep up the good works!
About AMP: this is not possibile, simply because jquery doesn’t work on AMP pages ??
How about using this AMP HTML component: https://ampbyexample.com/advanced/star_rating/ ?
Hi Dario,
if(!is_singular() && is_main_query() || is_404()){ return $content; }
in yasr_add_schema function to stop the queries on homepage and archive pages, am I correct?
Btw, is there any plan that YASR will supports AMP? Most of my visitors came from Google AMP cache. It would be nice if visitor can also vote within AMP article directly.
Hi Dario,
I’ve tested with version 1.5.2 and 1.5.3 but then I could not make visitors vote works. May be there’s a AJAX/javascript (rateit?) conflict within my site. When a visitor click the stars, it disapeared and vote didn’t saved into database.
So I revert to version 1.4.9 and use yasr-functions.php from ver 1.5.3. I confirm that there are no more YASR queries on my homepage and archive pages. Thank you.
Regards,
Hello Dario,
YASR for archive pages is disabled in the settings, but still there are queries from your plugin on the homepage.
Here is the screenshot: https://imgur.com/a/QgDld
There isn’t any error or success message on Log/History page indicating this manual “Post Now” feature. The “Message Posted” is indicated on the AJAX window, but no actual tweet was posted.
Other than that, the autoposter is working normal. Tweet and FB will be posted when the post is published.
Thanks, looking forward to this feature on the next updates.
One more thing, the “Post Now” feature (on post editor) is not working for me. It says “Sending update to Twitter” and then “Message Posted”, but no tweet was posted. Please advise.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Not working for TwitterSame issue here.. Twitter is not working too..
I get your point, thanks for pointing out for me.. ??
Here’s my code and it seems to be working:
function my_opengraph_url( $url ) {
global $post;
$pubDate = get_the_date( $d='U', $post->ID);
$sslDate = 1490832000;
if($pubDate < $sslDate) {
return str_replace( 'https://', 'https://', $url );
} else {
return $url;
}
}
add_filter( 'wpseo_opengraph_url', 'my_opengraph_url' );function rsssl_exclude_http_url($html) {
global $post;
$pubDate = get_the_date( $d='U', $post->ID);
$sslDate = 1490832000;
if($pubDate < $sslDate) {
//replace the https url back to http
$html = str_replace('og:url" content="https://', 'og:url" content="https://', $html); return $html;
} else {
return $html;
}
}
add_filter("rsssl_fixer_output","rsssl_exclude_http_url");
Do you have any better sugestions?