gabelloyd
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Callback on post loadThank you, this was very helpful. Great plugin!
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Fatal error on Settings page line 29Sorry for the delay. I’m still trying to isolate this error. This is working locally for me, but doesn’t seem to work when I push it up to WPEngine. I will continue to work on this and let you know what I find out. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after update@greggashley – that seems to be working in the cart, too. Please start a new thread if you continue to have a problem that others can help you with. Thanks.
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after update@mike, You are a wizard, sir. Had a code snippet hooked into
content-product.php
from 2.3 that was forcing some column counting. Removed that hook and we’re good.Thanks!
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after update@mike, I will check with the team, but I don’t think we’ve done a template override on this project. Thanks
Forum: Plugins
In reply to: [WooCommerce] Product per row function broken after updateI have a similar issue.
Using
[featured_products per_page="3" columns="3"]
The
.first
and.last
classes are being assigned in the wrong order.I was going to post to Github, but wasn’t sure if this was a support issue.
Forum: Plugins
In reply to: [Timeline Express] Massive issues with you plugin your site is down alsoThis patch does seem to work for me, too. Thanks Evan!
Forum: Plugins
In reply to: [Timeline Express] Attachment images not being sourcedSounds good. Looking forward to the new release.
Forum: Plugins
In reply to: [Theme My Login] Password Reset ProblemI also host with WP Engine. You cannot exclude specific pages yourself, so when you call into support, you’ll need to know the TML pages you want to have excluded.
- login
- logout
- lostpass
- register
- resetpass
- your-profile
Forum: Plugins
In reply to: [Theme My Login] Password Reset ProblemI disabled the wp-login, but we are still getting this error:
Your password reset link appears to be invalid. Please request a new link below.
Forum: Plugins
In reply to: [Theme My Login] Password Reset ProblemI’d like the same functionality as Walter – disable wp-login.php. I have the same issues, currently, with reset password.
David,
Thanks for your response. I had only set the memory to 64M. Setting it to 256M solved this problem.
Thank you!
Forum: Plugins
In reply to: [WP Store Locator] CSV upload?Just wanted to add my vote for the CSV premium option. I have to hand over a project to the client where they’ll need to be able to update the site by uploading an updated csv file, so we had to choose another plugin even though this was the most beautiful. Please let us know when you have this available and we may look at transferring back to this plugin!
I’m running into the same issue. I can create new user roles, but we can’t assign users with these roles to posts, pages or custom post types. I went into the phpmyadmin and changed the _user_level to something other than 0, and that will display the users, but this is not a solution because we can’t be going into the database every time a user is created.
The docs have a function for activating the now depreciated User Levels with this function:
remove_filter( 'members_get_capabilities', 'members_remove_old_levels' );
It shows levels when assigning user capabilities, but it does not change the user_level in the db.
A function for something if the user is a certain capability, then change user_level to 1 (or whatever will have it display in the author dropdown menu) would be much appreciated! Thanks!
You could try adding a function in functions.php in your child theme. If you continue to modify the plugin, you might lose the changes if the plugin is updated.
You can look at focusing this to a post type. (https://codex.www.ads-software.com/Post_Types)
I quickly googled for something, and you can try getting more specific with post types, too using something like:
if (is_archive()) // if displaying any archive elseif (is_page()) // if displaying a wp Page (write -> page) elseif (is_single()) // if displaying single post else // everything else