daniellefrappier
Forum Replies Created
-
I’m having the same problem too and I have the paid version. Were you able to get the fields back when you rolled back?
I’m having the same issue, but the pro version isn’t showing an update available.
I’m having the same issue. The members are getting a 404 error. Also it seems to be blocking and javascript from Membermouse.
that worked. thank you!
Forum: Fixing WordPress
In reply to: Completely blank template to be used for emailsSo I think I found a solution to the blank template problem.
wp_dequeue_script
Forum: Fixing WordPress
In reply to: Completely blank template to be used for emails@hardeep Sorry I should have mentioned this template is just to generate the html newsletter. Then the html will be copied out and sent through active campaign.
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Shortcode NOT workingAh ok I see now. I need to have all posts and enable shortcode checked. Thank you. Working great now.
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Shortcode NOT workingI’m not sure I follow. So if I wanted the ad to appear on all posts but only if that particular shortcode is present, can I do that?
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Shortcode NOT workingFor right now I rolled the plugin back to 1.6.6 and the shortcode are working.
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Shortcode NOT workingI am also having a problem with the shortcode not showing. I’m only using the plugin by shortcode and not on all posts.
Here is the site with a post that has the shortcode inside it but it’s not displaying.
And here is a screenshot of the settings:
https://electronichouse.s3.amazonaws.com/images/Untitled-2.jpg
Forum: Plugins
In reply to: [W3 Total Cache] https, css breaking when a published post is updatedForum: Fixing WordPress
In reply to: Counter inside a foreach loopthanks that really helped. I got it working with this:
<ul class=”slides”>
<?php $count = ‘1’; ?>
<?php foreach( $images as $image ): ?>
‘, <?php echo $count; ?>);”>- <img src=”<?php echo $image[‘sizes’][‘small-thumbnail’]; ?>” alt=”<?php echo $image[‘alt’]; ?>” />
<?php $count++; ?>
<?php endforeach; ?>Forum: Fixing WordPress
In reply to: Counter inside a foreach loopIt generates a syntax error. I edited to this which i think is closer but i’m still getting synatx errors.
<ul class="slides"> <?php $counter = 0; foreach( $images as $image ) { $i++; <a href="#" onClick="ga('send', 'event', 'Slideshow', 'slideshowclick', '<?php the_title(); ?>', '<?php echo $counter; ?>');"> <li> <img src="<?php echo $image['sizes']['small-thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" /> </li> </a> $counter++; } ?> </ul>
Forum: Fixing WordPress
In reply to: Counter inside a foreach loopIt generates an syntax error. I also tried:
<ul class="slides"> <?php $counter = 0; foreach( $images as $image ) { $i++; <a href="#"> <li> <img src="echo $image['sizes']['small-thumbnail'];" alt="echo $image['alt'];" /> </li> </a> $counter++; } ?>