duncmorley
Forum Replies Created
-
Hi @ninjateamwp, no, it’s hosted with WP Engine. I have other sites using this hosted on WP Engine where the plugin works with no issues.
FYI I am using WP 5.5 and Popup maker 1.11.2
- This reply was modified 4 years, 2 months ago by duncmorley.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Field broken 404 error CDN 5.0.6Until it gets fixed, try adding this to your functions.php file. Worked for me.
function override_fontawesome_version() { return '4.7.0'; } add_filter('ACFFA_override_version', 'override_fontawesome_version');
Thanks for replying. These are the messages typed and received:
Message Typed
Thank you for your order {first_name} and choosing Company Name.
We can confirm your order:
Order Date: {purchase_date}
Details: {product_details}
Total Amount: {purchase_amt}All communications from Company Name, in reference to your order, will be sent to: {payer_email}.
If you’d like us to send communications to another email address please contact us, quoting {transaction_id}.
Message received
Thank you for your order Duncan and choosing Company Name.
We can confirm your order:
Order Date: 2016-10-11
Details: Product Name x 1 – £0.01
Total Amount: 0.01All communications from Company Name, in reference to your order, will be sent to:.
If you’d like us to send communications to another email address please contact us, quoting XXXXXXXXXXXXXXXXX.
Forum: Plugins
In reply to: [WP Page Widget] Featured image not working with WP Page Widget enabledI’ll have a further dig around then and see what might be causing it. Thank you for your reply.
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Theme selection has no effectI found out what my issue was. The datepicker plugin loads the CSS using CF7’s
wpcf7_enqueue_styles
hook. As I had defined in my wp_config.php file not to load the CF7 CSS (define ('WPCF7_LOAD_CSS', false);
) the datepicker CSS never gets loaded. If this is what you have done then a workaround is to enqueue the CSS using thewpcf7_enqueue_scripts
hook instead. Hope this helps.Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Theme selection has no effectI am also experiencing this. Did you find a solution?
I cannot supply a link at this time as the website is in development locally and contains sensitive data.
In the mean time I have marked up the columns using divs and classes instead of shortcode and that works fine.
I can probably get a test site up to illustrate the problem. Is there nothing you guys can check without me having to do this? Let me know.
Forum: Plugins
In reply to: [Contact Form 7] Using placeholders and required fieldI have found a bit of javascript that I created a while ago that was causing this to happen. Panic over!!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Advanced Excerpt plugin issueJust checked and this function works fine without the ‘Advanced Excerpt Plugin’ being switched on. Anything to suggest getting this plugin working with the ‘Advanced Excerpt Plugin’??
I agree that this would be extremely useful as I’ve just run into the same issue.
Forum: Plugins
In reply to: [Flexible Posts Widget] Adding HTML within widget titleThat is absolutely wicked, thank you.
Forum: Plugins
In reply to: [Flexible Posts Widget] Adding HTML within widget titleYou’ll have to forgive me as taxonomies and terms etc are still a bit confusing for me (which is why I’m using your plugin to show them). I have this code but it is echoing all 3 terms and not just the one I have selected for the widget. I know that is because I’m using a foreach loop. Any chance of showing the correct way of doing it?
<?php $terms = get_terms('tax_services_cat'); foreach ($terms as $term) { echo '<a href="'.get_term_link($term->slug, 'tax_services_cat').'"><h4 class="widgettitle">'.$term->name.'</h4></a>'; } ?>
Many thanks
Forum: Plugins
In reply to: [Flexible Posts Widget] Adding HTML within widget titleIs it possible to show an example of how to implement this? Many thanks.
Forum: Plugins
In reply to: [Flexible Posts Widget] Adding HTML within widget titleI really can’t work out how to do this. I’m using
<?php echo get_term_link($term->slug); ?>
with zero success.