ZeroGravity
Forum Replies Created
-
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 7 years, 5 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!
Just 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.
https://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; } }
Forum: Plugins
In reply to: [Appointment Scheduler] Guest BookingOk. Thanks!
Hi Nikola,
I have the timezone in general settings set to Denver.
There is a service that takes 90 minutes.
A connection is setup for the service from 12:00 to 17:00 on Mondays.
When you select the date these times show.
12:00pm, 1:30pm, 3:00pm, 4:30pm.Is there something else I should check?
Forum: Plugins
In reply to: [Easy Appointments] Display color key under calendarThanks Nikola! What do you add to the shortcode to have the key appear. I have the two column layout on the page but can’t see an option or another shortcode to display a key for the colors.
Forum: Plugins
In reply to: [Easy Appointments] Easy way to set Holidays/Vacations (feature request)Thanks! Nikola
Forum: Plugins
In reply to: [Display Posts - Easy lists, grids, navigation, and more] OrderBy issues?I’m going back to bed. Feel like a complete twit. I wasn’t awake enough to realize the posts were ordering descending instead of what I expected, ascending. More Coffee!!!