pushka
Forum Replies Created
-
But of course – Google can change their policy at any moment, remove the free $200 credit, and you’ll start being charged – they can also change their prices for usage at any time…
Forum: Plugins
In reply to: [Material Design for Contact Form 7] PHP WarningHi – I just tried to download the plugin again and install it (after removing some other plugins ) – and the site is fine
Maybe there was an upgrade error, or plugin conflict
(it would be a nightmare to redo all my contact forms)
Forum: Plugins
In reply to: [Material Design for Contact Form 7] PHP WarningEDIT// see my next message
material
1.7.4WP
$wp_version = ‘4.7.10’;I know we have an old version – I’d like to upgrade, but we neet to test with our booking system first.
is there an old version of material-cf-7 I can install?
I upgraded it when we got the PHP warning/ other site issues –- This reply was modified 6 years, 5 months ago by pushka.
Forum: Plugins
In reply to: [Material Design for Contact Form 7] PHP WarningFatal error: Cannot use object of type FS_Admin_Menu_Manager as array in /home/jtbtrave/public_html/wp-content/plugins/material-design-for-contact-form-7-premium/freemius/includes/managers/class-fs-admin-menu-manager.php on line 124
I have fixed this myself:
1) when someone clicks a button – store the scroll location in a global JS variable
2) when clicking “close-button” or “background behind popup”
– scroll down to where that saved position is.Javascript:
function scroll_to_button(){
window.scrollTo(0,global_page_pos);
}jQuery(“.md-overlay”).click(function() {
scroll_to_hotel();
setTimeout(scroll_to_hotel, 111);
});jQuery(“.md-close”).click(function() {
scroll_to_hotel();
setTimeout(scroll_to_hotel, 111);
});var global_page_pos = 0;
$(“.mpb-shotcode-buttons div”).click(function () {
global_page_pos = window.pageYOffset;
});Error when upgrading plugin:
I use an old WordPress: ‘4.7.8’;
PHP Version 5.3.29Parse error: syntax error, unexpected ‘[‘ in /home/jtbtrave/public_html/wp-content/plugins/advanced-access-manager/Application/Core/Object/Menu.php on line 132
replaced the plugin with the linked-to package and it works fine now.
- This reply was modified 6 years, 11 months ago by pushka.