kenrichman
Forum Replies Created
-
Forum: Plugins
In reply to: [AceIDE] Can DEACTIVATE this plugin after already “done its job?”Deactivating it will make your site respond a tiny bit faster because there is less to load. It’s just an editor, so it’s like if you close Microsoft Word on your computer, that won’t affect documents you have edited with Word but without it loaded, your PC may run a bit quicker.
Forum: Plugins
In reply to: [AceIDE] Can DEACTIVATE this plugin after already “done its job?”You can safely deactivate it and delete it.
If you delete it, you will lose the ability to revert to previous versions – the plugin makes its own backups of edited files, and you can restore them – but if you are sure you don’t need them, go ahead.here you go Craig
https://bookclubsinschools.org/Update: I do have a lazy loading setting, I changed it but this has not solved the issue.
I have the same issue and also with the Facebook feed plugin by Smash Balloon.
I have tried “Disable JS Image Loading” and this did not help.Forum: Plugins
In reply to: [BuddyDrive] Buddi Drive Not VisibleDo you have Yoast SEO installed? If so, try disabling it, that did the trick for me.
Of course it’s only a workaround.Forum: Plugins
In reply to: [Print Flyers Lite] custom fields product informationPrint-flyers would not recognise your custom fields data.
This would need custom coding.I had this issue using the Gravity Forms user registration plug-in, but your addons may be similar. I changed the code in that plug-in as follows:
public function init() { // Add functionality from the parent GFAddon class parent::init(); $this->add_delayed_payment_support( array( 'option_label' => ! is_multisite() ? esc_html__( 'Register user only when a payment is received.', 'gravityformsuserregistration' ) : esc_html__( 'Register user and create site only when a payment is received.', 'gravityformsuserregistration' ) ) ); add_filter( 'gform_entry_post_save', array( $this, 'maybe_process_feed' ), 9, 2 ); /* KR - run this before the GoCardless feed */
See the commented line, that’s the only altered one. I could probably have done it a neater way by overriding the function.
I actually don’t think GoCardless permits an initial payment followed by different regular payments. It allows for one-off payments or subscriptions, and subscriptions are (usually) the same amount each week, month or year, i.e. a regular fixed payment at a regular interval, either until cancelled or for a set number of payments.
So if your initial payment is a different amount than subsequent payments it isn’t going to work, with just the one set-up.
Forum: Plugins
In reply to: [Print Flyers Lite] Small Flyer (business card or gift card size)NO it only prints single flyers consisting of the product information. It sounds like you want something quite specialised.
It doesn’t offer you much control out of the box, but if you need to change what it does you can – you have to read the GoCardless API docs carefully and then go in and amend the code to fill in the fields how you want.
Sandbox mode emulates the live mode exactly, so no. It must be something else.
This article helped me to resolve this:
https://gravityplus.pro/how-to/change-feed-priority-when-using-the-gravity-forms-add-on-framework/
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Problems with apostropheI’m guessing here but there are opening and closing quotation characters and the apostrophe character which is often used for both, and they look similar but are different – check what you have stored in the answer and compare it carefully with what your keyboard is outputting when you type the apostrophe key. If you have used cut and paste to enter your answers it might give rise to this.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Can I duplicate a quiz?Great news. Can you fix these too:
Remove the !important from all the css so it can be easily overridden.Fix this bug: When activating the option to ‘Show only specific number of questions’, the custom fields ( $form{0} $form{1} etc ) are no longer translated in the results area. (I have a fix for this now)
Add a front-end way for a user to see just their own statistics and results.
Stop users from cheating by viewing the answers in the page source. This is obviously a severe limitation of the plugin.