technotip
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPress@ahmedkaludi Could you find any solution for this issue? Even tags pages have been included in this list of warnings pages on Google Webmasters tool account.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] AMP Content not displayedIs this issue because of the sites link structure? Because it’s working fine on my WordPress site, with my permalink structure.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPressYou can look at the source code at https://technotip.com/amp/
Here is the screenshot from my webmasters tool account:
Open image in new tab for clear picture
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPress@ahmedkaludi any solution for this bro?
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Error | amp-web-push-widget button.Bro I think the error has nothing to do with “Optimize CSS (beta)” option. Your error message got fixed because AMPforWP plugin released an emergency update to fix that issue. It got resolved on its own due to the plugin update. IMO.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPressAnd the issue is present only on my homepage and on tags pages. I want to mainly fix it on my homepage.
Error Message inside my Webmasters Tool a/c:
Content mismatch: Missing embedded videoForum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPressI’m not writing any short code specific to amp. The short code below is what I use for non-amp.
[youtube video_url]
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] YouTube Shortcode in WordPressThe exact error message I’m getting is this: “Content mismatch: Missing embedded video”
And I’m using [youtube video_url] shortcode for embedding my YouTube videos on my blog.
Example:
[youtube https://www.youtube.com/watch?v=k8oDbjGrENI ]
Forum: Plugins
In reply to: [Amazon Associates Link Builder] it showing error on front article pageno proper solution yet ..have to convert the output data to string then strip out the injected code and then convert it back to an object and then parse it. But this will slow down the application.
Amazon should produce better apps instead of interfering with the core of WordPress app.
@xshift, it’s not deprecated buddy. Its still working and many developers use it to develop apps. Now if amazon app interferes and injects something into the core, then it must be an issue with amazon plugin.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] it showing error on front article pageThis plugin is injecting some tracking code into the core, so all our apps which get data from wp-json plugin has stopped working. Stupid app from amazon.
any update on this??
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] How a user can unregister?or should I use
$cordovaPush.unregister(androidConfig).then(function(result) { $log.debug('android push notification unregistration success', result); }, function(err) { $log.error('android push notification unregistration error', err); });
Is it correct to pass ‘androidConfig’ to $cordovaPush.unregister() ??
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] How a user can unregister?I’m using this, and it works for registration API, but doesn’t work for unregister API ??
var androidConfig, iosConfig, register; androidConfig = { "senderID": "920573560210" }; iosConfig = { "badge": true, "sound": true, "alert": true }; register = function(os, token) { var baseUrl; baseUrl = 'https://thinkwithsatish.com/pnfw'; if (!baseUrl) { return $q.reject(); } return $http({ method: 'POST', url: baseUrl + '/unregister', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, transformRequest: function(obj) { var p, str; str = []; for (p in obj) { str.push(encodeURIComponent(p) + '=' + encodeURIComponent(obj[p])); } return str.join('&'); }, data: { os: os, token: token } }); }; $cordovaPush.register(androidConfig).then(function(result) { $log.debug('android push notification unregistration success', result); }, function(err) { $log.error('android push notification unregistration error', err); });
Please help ..
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] How a user can unregister?I tried this ..but still receiving the notification ??