coleatkinson1
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] amazon s3 and w3tcThanks for the fast reply!
I forgot to also ask:
1. Is there anyway to do a bulk upload of my current Media Library to S3 using W3TC?
2. If I use a plugin like EWWWW to optimize/resize the images, will this conflict with W3TC and this S3 functionality?Thanks!
There are no errors in the console.
No I don’t have any caching plugins installed
I’ve found a solution, which is to append <script> tags to the dynamically loaded content, with src set to the appropriate siteorigin JS files.
If there is no other preferred method, then this can be marked as solved.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] php errorI should have given more info, sorry.
The error occurred when accessing any of the WCK pages.
I can’t be sure when the error began, because I had not accessed the WCK admin page in a while, but I had recently disabled Elementor, and installed a CSSigniter theme (Noozbeat), and the site is also running WPML. There are no other errors or warnings in my php log.
I have fixed the error on my end, but this problem could occur for other users.
Forum: Plugins
In reply to: [LiveChat - WP live chat plugin for WordPress] Auto response from agentWhere in the plugin can I customize the first message that is sent?
thanks ??Forum: Plugins
In reply to: [Adminimize] How to remove “Edit Page” on front-end admin barYes, the setting is there, however it doesn’t do anything. I fixed the issue with a code snippet that was included in another issue thread:
add_action( ‘admin_bar_menu’, ‘remove_wp_logo’, 999 ); function remove_wp_logo( $wp_admin_bar ) { $wp_admin_bar->remove_node( ‘edit’ ); }
The only issue is that this will also remove the ‘edit product’ that appears for shop managers/admins of woocommerce, so some extra code is needed to target only the ‘edit page’ button.
Forum: Plugins
In reply to: [MaxSlider] Mobile nav wrap causing empty slideSorry, I should have provided the theme name in my initial comment. Thanks for the solution ??
Forum: Plugins
In reply to: [MaxSlider] Mobile nav wrap causing empty slideNo issues with the link you gave.
I’ve seen the bug on two separate occasions on the ‘nozama’ theme. I created a slideshow with default settings, batch uploaded some images as slides, and then placed the shortcode on a page/post. I have not used maxslider on any other themes before.
Issue appears in firefox and chrome.
Forum: Plugins
In reply to: [MaxSlider] Mobile nav wrap causing empty slideSorry, I do not have a URL for you.
Forum: Plugins
In reply to: [W3 Total Cache] JS File management for external scriptsSorry, I should be more clear:
On the page “Performance -> Minify” under JS / JS File management, you can add scripts. I use this feature to improve page load time, as per my results on Pagespeed Insights.
The problem is when a plugin or theme includes an external javascript, e.g.
<script src=”https://www.someexternalsite.com/myscripts.js”></script>
If this script depends on a script that I have loaded in the W3TC JS File management section, then I will get a dependency error.How to get around this problem?