intarwebsdeveloper
Forum Replies Created
-
What’s strange is that I cloned the production site (which is showing that message) to my local dev and the local dev doesn’t have that message. So I wonder if it’s a server configuration issue.
Forum: Plugins
In reply to: [Error Manager] Continually sends same 2 php logs to inbox every 2 to 4 mins.I’m experiencing this issue also. The only setting that is turned on is supposed to be the “Instant Alerts – 404 Errors”. But I keep getting emails about “PHP Error Log Changes” which is supposed to be turned off. The plugin is not working correctly.
Forum: Plugins
In reply to: [Gravity Forms Personality Quiz Add-On] TiesHow difficult would it be if the separator was an option? So a user can choose what separator they want, such as a “/”, “&”, “-“, a “<br>” or a ” ” (space).
Either way, I think as long as you add a class or ID to the separator it should be fine. That way it can always be changed/customized with jQuery or CSS.
I figured out why I was getting the 500 Internal Server error on my website with the Yoast 3.5 update. There were two other plugins installed that were having unrelated issues (they needed to be reinstalled because they got messed up somehow during a remote update with MainWP. Basically, they were appearing on the server but not in the back end). After I got those issues worked out, the Yoast 3.5 update installed correctly without the 500 Internal Server error. @herick09 – try disabling your other plugins before installing the 3.5 update and see if the error still occurs.
- This reply was modified 9 years, 9 months ago by intarwebsdeveloper.
I’m also experiencing this with Yoast SEO version 3.5 . After upgrading to 3.5 I got the 500 Internal Server Error and could not access the website or WordPress at all (not even the login page). I logged in via SFTP and disabled each plugin one by one and narrowed it down to the Yoast 3.5 plugin. I downgraded back down to 3.4.2 and the 500 Internal Server error went away. There seems to be an issue or conflict with version 3.5
I was able to get the taxonomy terms to display in a hierarchical order. First I installed the Category Order and Taxonomy Terms Order plugin – https://ww.wp.xz.cn/plugins/taxonomy-terms-order/ . This plugin will put your taxonomies into a term group. Then I added a filter to change the order the taxonomy terms are being display. I put this in my functions.php file:
// Filter to change the order of taxonomy terms function custom_taxterm_order($args) { $args = gf_apply_filters( 'gfcpt_taxonomy_args', array( $field->formId, $field->id ), array( 'taxonomy' => $taxonomy, 'orderby' => 'term_group', 'hierarchical' => 1, 'hide_empty' => 0 ), $field ); return $args; } add_filter('load_taxonomy_hierarchical', 'custom_taxterm_order');This won’t put them in a full hierarchical order (with parent/child relationships) but the taxonomy terms won’t be displayed in alphabetical order anymore, it will be in the order you have them in with the Category Order and Taxonomy Terms Order plugin .
Forum: Plugins
In reply to: [Ajax Pagination and Infinite Scroll] Not working in Search pageAwesome, thanks!
Forum: Plugins
In reply to: [Convert Post Types] Will it work with 10,000 records?I think you should be able to do 11,000. I was able to convert 8,000 with no issues. The only thing I suggest is to bump up the memory that WP is using by adding this to your functions.php file.
define( 'WP_MEMORY_LIMIT', '512M' );Forum: Plugins
In reply to: [Ajax Pagination and Infinite Scroll] Not working in Search pageNevermind, figured it out. Needed to add || is_search() to two lines in malinky-ajax-pagination-functions.php
Hopefully your next update will have this fix so I don’t have to worry about my edits getting overwritten.
Forum: Plugins
In reply to: [Ajax Pagination and Infinite Scroll] Not working in Search pageAny update on getting it to work with search pages yet? Maybe a temporary solution until your update is released?
Forum: Plugins
In reply to: [Login Widget With Shortcode] Peter's Login Re-directI noticed this issue too. The Login Widget With Shortcode overrides any redirects added by Peter’s Login Re-direct. Bummer.
I’m seeing something with issue also. It is currently 1:47PM GMT-7, October 20, 2015. When I create a milestone and set it so it’s due October 20, 2015, the milestone shows up as 21 hours late.
I installed version 1.3.5 and everything looks ok on my end. I’m marking as resolved.
Looks like the 1.3.4 update fixed that bug with the update database button/blank white screen.
However, the pagination links are missing at the bottom of the main projects page. Before I updated the plugin, I had 22 projects. After I updated to 1.3.4, only 10 projects are showing up and the pagination links that show up in 0.4.6 are no longer there and I can’t get to the other 12 projects. Looks like 0.4.6 still lives for me.
I’m using 0.4.6 with 22 projects. Maybe the pagination links are just broken in 1.3.x .