ZeroGravity
Forum Replies Created
-
I am having a similar problem. Some sites have the window popup with “Please Wait …” that just sits there. On other sites it progresses to display a message “Your download is being generated …” with a progress bar.
What is the purpose of this popup window?!?! What is being generated?!?! The same thing happens when I test downloading a backup from the Dropbox folder within WP-Admin -> BackWPup -> Backups. The file is sitting in Dropbox and a copy on my PC so I can see the backup file. What has to be generated to download a copy of a tar.gz file? The backups used to download fine without this new popup window.
I’m not sure what has happened with v3.5 and v3.6 but between this, the issue with header errors when when opening .tar.gz with 7zip, the dot folder in the root, and the substantial increase in plugin size from the “aws” folder (but those are other threads) the quality of this plugin has plummeted.
Forum: Plugins
In reply to: [Registrations for WooCommerce] Product is currently out of stock errorThanks Allyson. That fixed the error. Another issue with the Prevent registrations to past events came up but will start a new thread for that.
Forum: Plugins
In reply to: [Registrations for WooCommerce] Product is currently out of stock errorThanks Allyson!
I agree. I don’t use JetPack and disable everything. Now I have a 20GB plugin on each website, on a limited hosting account, That I don’t use except to provide authentication to WordPress.com.
Forum: Plugins
In reply to: [Optima Express IDX] Total Cache and Performance setupI have installed W3 Total Cache and excluded all the listing pages from caching. Did you try this Alan? When you say better results what exactly do you mean by that? Better conversions from people viewing the listings?
After setting up W3 Total Cache with have seen a great increase in page load speed and performance for the rest of the website.
Forum: Fixing WordPress
In reply to: WP Not redirecting to HTTP from HTTPS if no certificateOK. Thanks Steve.
Forum: Fixing WordPress
In reply to: WP Not redirecting to HTTP from HTTPS if no certificateThanks for the quick reply Steve!
That is a nuisance. 🙁Why doesn’t WP redirect to HTTP if that is the setting when it does the reverse if it is HTTPS.
Forum: Plugins
In reply to: [WordPress Landing Pages] Text formatting doesn’t holdI am also having the same issue. I selected all the text and centered it. Then decided to do it via CSS. I used the source editor to remove the style attributes from the paragraph tags. Now the paragraph tags are being striped out when the landing page is displayed.
Forum: Plugins
In reply to: [WPC Product Bundles for WooCommerce] Virtual bundlePlus one on this. 🙂
Ahhh. Missed that. Thanks!
Yep. Still works. I used it on a clients site last week. 🙂
Can you provide a link to the site and what plugin(s) you are trying to remove styles/scripts for and I can possibly help you out.
- This reply was modified 8 years, 11 months ago by ZeroGravity.
Forum: Plugins
In reply to: [PixelYourSite - Your smart PIXEL (TAG) & API Manager] Editor AccessThanks I will be looking out for it! 🙂
Is there a capability I can use to add the permissions via functions.php in the interim or where can I edit the plugin so editors can have access. It is urgent that I set this up.
Many Thanks!
Forum: Plugins
In reply to: [Gallery by FooGallery] Album TemplateJust following up on this as I’m not sure your reply @bradvin answered the OPs question. It seems your answer is related to creating an album in the WP admin.
The OPs question, which I am also interested in, is about creating a custom template for an album. I have used the “Build Your Own” option to create a custom gallery template but would like to so the same for an album.
How do we go about creating a custom template for an Album the same as we can for a gallery.
Many Thanks!
Not sure if you are still looking for a solution but this should point you in the right direction.
http://www.position-relative.com/2010/wordpress/wordpress-only-load-plugins-on-pages-that-need-them/Forum: Plugins
In reply to: [Event Organiser] Events not showing below editorSolved!!! I had code to prevent access to the dashboard for anyone below editor level. I needed to add AJAX to the condition in the function.
The code now reads
// Disable access to dashboard for non admins and editors add_action('admin_init', 'zgwd1010_no_dashboard'); function zgwd1010_no_dashboard() { $user_meta=get_userdata( get_current_user_id() ); if ( !( in_array("administrator", $user_meta->roles) || in_array("editor", $user_meta->roles) || in_array("board", $user_meta->roles) ) && !( defined( 'DOING_AJAX' ) && DOING_AJAX )) { wp_redirect(home_url()); exit; } }