andrewenz
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [PWA — easy way to Progressive Web App] Offline Content pageNice. Thank you! Deleting the service workers fixed the problem. Much appreciated.
Forum: Plugins
In reply to: [PWA — easy way to Progressive Web App] Offline Content pageThanks for your reply Marcin!
I’m using Advanced Ads Pro. After installing the PWA plugin, if I go to Groups & Rotation in Advanced Ads:

Then create a new group

Pick any type, give a name and click Save

I end up at this screen:

This error page has this in the meta: content=”PWA — easy way to Progressive Web App – 1.5.3″ even after deactivating and deleting the plugin.
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] Groups and Rotation no longer workingThanks for the reply. Looks like it’s an issue caused by a PWA plugin.
- This reply was modified 2 years, 11 months ago by andrewenz.
Forum: Plugins
In reply to: [IssueM] Display Article tagsNever mind. Figured it out. For anybody looking in future, this seems to work. It’s in the content-single.php file under the theme.
$terms = get_the_terms( $post, 'issuem_issue_tags' ); $posttags = apply_filters( 'get_the_tags', $terms ); if ($posttags) { $array = []; foreach($posttags as $tag) { $array[] = '<a href="/article-tags/' . $tag->slug . '/">' . $tag->name . '</a>'; } echo "<h2>Tags: </h2><p>" . implode(', ', $array) . "</p><br>"; } else { echo "<script>console.log('No tags');</script>"; }- This reply was modified 3 years, 6 months ago by andrewenz.
Viewing 4 replies - 1 through 4 (of 4 total)