ZeroGravity
Forum Replies Created
-
We get a 404 error when trying to authenticate with GA. Can only put the code in manually.
Forum: Plugins
In reply to: [Genesis Simple Sidebars] custom sidebar for posts page not possible?Did you find a fix for this? I am having the same issue.
In Settings->Reading I set the front page to a static page and set the posts page. I created a sidebar and added widgets to it. On the page I set as the posts page I changed the sidebar to the one I created. The posts page is showing the default primary sidebar not the one I created and assigned.
Forum: Plugins
In reply to: [Gallery by FooGallery] Gallery cut off in Chrome and on Mac in SafariTesting this morning it stopped working again. Then I noticed WP was adding paragraph tags (
<p>) into the custom CSS. I went into the gallery and removed the blank lines between the classes and it works again.My laptop almost went flying out the window! 🙂
Forum: Fixing WordPress
In reply to: Gallery cut off on Mac in SafariIt was a CSS fix for FooGallery that was applied to this one gallery on the website home page.
https://wordpress.org/support/topic/gallery-cut-off-in-chrome-and-on-mac-in-safari?replies=3Forum: Plugins
In reply to: [Gallery by FooGallery] Gallery cut off in Chrome and on Mac in SafariThat worked!!! Thank you! Thank you! Thank you!
Forum: Fixing WordPress
In reply to: Gallery cut off on Mac in SafariThanks, I will do that! I wasn’t sure if it was theme or plugin related so thought I would cast the net wide here first. 🙂
Forum: Plugins
In reply to: [Gallery by FooGallery] Album link broken if no slash at the end of permalinkJust wondering if this is being looked into? I like this plugin and wouldn’t want to do this but at the moment I would have to mark the plugin as broken.
Thanks!
Forum: Fixing WordPress
In reply to: Video Plugin that loads thumbnails for private Vimeo Videos?I found that Advanced Responsive Video Embedder does the trick. It doesn’t lazy load without the pro version but seeing as it’s being used on private pages on a membership site I can live with that.
Forum: Plugins
In reply to: [Simple Membership] Redirect / popup if not logged inWelcome!
It could be expanded as well to check a users access level and other ways I imagine. I noticed I didn’t include the registration page in the “is_page” check if people are wanting to allow registration.Forum: Plugins
In reply to: [Simple Membership] Redirect / popup if not logged inI was wanting to do the same thing. We added the plugin to an existing site and wanted to protect the whole site. There is only one access level so this made it easier to implement, but there is another function that tests if a user has access to a page which could be used to extend what I have written.
We didn’t want to go to every page and update the protection and the user updating the site didn’t want the “pressure” 🙂 of remembering to check the protection settings.
I put this code in the theme functions.php and it seems to be working from the testing I have done.
//* Redirect a user who isn't logged in add_filter( 'pre_get_posts', 'zgwd1010_rediredt_user' ); function zgwd1010_rediredt_user() { if( !SwpmMemberUtils::is_member_logged_in() && !is_page( array( 'membership-login', 'membership-join' )) ) { wp_redirect( 'http://www.mydomain.com/membership-login' ); exit; } }Forum: Fixing WordPress
In reply to: Ho to create an Organization Chart from GF form dataI should have mentioned I need to have this in a file that can be sent to a client.
Forum: Plugins
In reply to: [Widgets on Pages] widget on pages doesn't work after wp 4.0 updateInteresting. I have a site running 4.1.1 and the plugin is working. I was about to update to 4.2.2 but am a little concerned now. Is there anyone else who didn’t have issues with the plugin not working?
Forum: Plugins
In reply to: [Testimonial Rotator] Hiding Title in Rotator WidgetIt’s best not to edit the core of a plugin if you can avoid it. Your changes will be overwritten when you update. There is another method you can use that seems to have more options than the widget provides.
Add the shortcode to a text widget.
[testimonial_rotator id=121 hide_title="true"]You may need to add this to your functions.php to enable shortcodes in widgets.
add_filter('widget_text', 'do_shortcode');Using this method it also picked up the scrolling transition effect I had in the settings. Using the widget it only seems to use fade. I would like to see a list off all the shortcode attributes.
Another option would be to ask the author to add the option to the rotator settings and/or the widget settings. 🙂 Please. 🙂
Forum: Plugins
In reply to: [Genesis Featured Page Advanced] Select Page drop-down not showing all pagesNick,
I had another look and the page I was wanting to add is listed now. Not sure if there is a reason it wasn’t listed before or if I just didn’t see it. I’m thinking it is more likely to be the later. If it is the later I apologize for sending you off to do some testing. Feeling slightly embarrassed.
Thanks,
DarrenThanks Nick! Don’t forget the title for the links as well as the alt for the images. 🙂
Darren.