mpiet.opis
Forum Replies Created
-
Figured it out. The database.sql file that is created to inject the data into the new database was still in the website’s root and not deleted. The duplicator plugin didn’t overwrite this. It is probably deleted when you unpack the duplicate and are given that message to clean up files.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Font Awesome issueThanks for the info!
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Font Awesome issueTurns out the theme I am using has an outdated version of Font Awesome. Version 3.2 to be specific. The theme creator claims to have a new version coming out with the updated font, but in the mean time I have added the latest Font Awesome to my child theme to fix the issue. To do this, I added the latest Font Awesome files to the child theme and then added the following to the child theme’s functions.php:
add_action( 'wp_enqueue_scripts', 'remove_default_stylesheet', 25 ); function remove_default_stylesheet() { wp_dequeue_style( 'font-awesome' ); wp_deregister_style( 'font-awesome' ); wp_register_style( 'font-awesome', get_stylesheet_directory_uri() . '/css/font-awesome.min.css', false, '1.0.0' ); wp_enqueue_style( 'font-awesome' ); }
Hope this helps some peeps.
I tested the plugin you linked and it works just fine specifying one IP address at a time. This can suit our needs, but we are looking into something that would allow us to input a combination of IP ranges and individual IP addresses. So something like this:
10.0.0.0/10.255.255.255
192.168.1.150
204.11.52.100/204.11.52.200
123.2.1.34Forum: Plugins
In reply to: [WP-EMail] Hide comments and comment formNever mind, I figured it out. I had copied the page.php file and renamed it to email.php. However, I had removed a line too many in the comment section, so it broke the page.
Bump
Forum: Plugins
In reply to: [Contact Form 7] Unable to send large attachmentsBump
Forum: Plugins
In reply to: [Easy Table] Error after updating to 1.5Confirmed the update is working. You can close this topic.