fullworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Event Manager] Feature image in calendar pop upThanks, I will investigate.
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] SDF HelpHi,
Your host / domain provider should be able to provide support for this.
Alternatively there are lots of how to do it on Google and YouTube.
Hope that helps.
Alan
Forum: Plugins
In reply to: [Quick Event Manager] text in calenderThanks for letting me know you got it working.
Forum: Plugins
In reply to: [Quick Event Manager] text in calenderThank you for using the free version of this plugin.
On the settings page there is a calendar settings.
Scroll down and you will find some settings related to Small Screen and Small Screen Text Sizes – adjust these until you have the result you desire.
https://fullworks.net/wp-content/uploads/2020/02/Selection_316.png
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] Changing the SPF Record.I hope you are now sorted.
Thanks
Wow, thank you for your comprehensive analysis. I’m sure it will help many with a similar problem.
Hi I’m not entirely clear what you mean by “Private Email Subscription from Namecheap”
The plugin works with the native php mail from your host ( unless you have specifically install an SMTP plugin or a transactional mail plugin like Mialgun or Sendgrid )
Getting to the bottom of deliverability issues is a complex and time consuming activity.
There are several tools you can use e.g. mxtoolbox(dot)com ( run your server IP address through that first ) and also spam checkers like isnotspam(dot)com that you can use to help work out what is going wrong.
In some cases it may be best to give up with local phpmail and switch to an SMTP or transactional mail servuce, especially if your doamin is hosted on a larged shared service where the IP reputation could be damaged.
Forum: Plugins
In reply to: [Get Directions Map] The map does not appear in free versionThey do become speech mark when you put it in the wordpress forum – it is awful for changing things
I have taken your shortcode – as above replaced the speech marks and added it to my test system and it works perfectly
[get-directions latlng='40.748021,-73.98512' controls='false']If you can’t get it working using this then there is a local issue with your system – there are many moving parts – from incorrect API keys – to plugin or theme javascript conflicts to hosting php versions so the nextstep would be for you to debug systematically.
The first step to take would be to check your browser console for javascript errors – any API issue would be clear in the error messages, see https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/ if you are unfamiliar with basic checking for errors
Forum: Plugins
In reply to: [Get Directions Map] The map does not appear in free versionHi,
From what I can see in your post your shortcode has open speech marks, not quotes, WordPress does not like that.
The first thing I suggest you do is retype the shortcode manually, using single quotes or double quotes, and let me know how you get in.
The plugin does work, and has nothing to do with Google API keys.
Alan
Forum: Plugins
In reply to: [Quick Event Manager] Prev and Next button reloads entire pageAh our messages crossed in the post …
Forum: Plugins
In reply to: [Quick Event Manager] Prev and Next button reloads entire pageBeyond this I think you need to refer to the theme developer or page builder developer to change the underlying way the theme operates its smooth scroll.
What is interesting is the scrolling doesn’t happen if you first just go to the home page, so something in the theme / page builder’s javascript is recognising that it shouldn’t intercept – but clearly ‘switches on’ once you visit another page. So a logic issue there in the theme / page builder js library.
Forum: Plugins
In reply to: [Quick Event Manager] Prev and Next button reloads entire pageOne solution that just came to me – is if in your theme / page builder you can change the name of the calendar section
so instead of
<div data-q_id=”#calendar”
it reads
<div data-q_id=”#qem_calreload”( and change in your nav too )
It may well be enough to trick your theme to operate in the way you want
Forum: Plugins
In reply to: [Quick Event Manager] Prev and Next button reloads entire pageJust to explain it very clearly in technical terms, your theme /page builder is using data-q_id to anchor #calendar, this data- … is an attribute used by a javascript library
e.g.
<div data-q_id=”#calendar” class=”vc_row wpb_row section vc_row-fluid vc_custom_1581236131306 grid_section” style=” text-align:center;”>
The calendar uses an HTML standard anchor #qem_calreload
The issue is your theme’s javascript library is ‘taking control’ of scrolling rather than using standard HTML anchors.
I hope that points you in the right direction.
Forum: Plugins
In reply to: [Quick Event Manager] Prev and Next button reloads entire pageI have turned off javascript and a javascript library ( in your theme/ page builder ) is intercepting the standard reload ID hence causing this action.
Fixing the way you theme interacts with standard HTML is way outside the free support I can provide here.
Perhaps some one else in the free community can offer advice.