Marcio Marim
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress API's and admin loading timeAny updates?
Forum: Plugins
In reply to: [SendGrid] Plugin adds ~2 seconds load time to admin pagesI have the same problem on version 1.7.2, it became unusable (even if it works) because every admin page has a bunch of very slow WP_Http->get() which makes the admin very slow in general.
The query monitor says :
GET https://api.sendgrid.com/api/mail.send.json 400 Bad RequestAny ideas ?
Hi,
I’m using relevanssi pro version and trying to re-index my site and I’m getting this error also. Nothing is indexed.
Thanks in advance,
MarcioForum: Plugins
In reply to: [Co-Authors Plus] Post list on admin not showing all postsForum: Plugins
In reply to: [Co-Authors Plus] Post list on admin not showing all postsHi capiedge,
I’ve found a temporary solution (not as clean as I’d like) but works for me. I could identify the part of the query to list custom posts for custom roles wasn’t working so I just modified the query to get it working.
So here is what I did:
Edit the co-authors-plus.php, look for the function posts_where_filter() and at the end of if ( $query->is_author() ) I added my code to “repair” the query:$ssearch = ' AND wp_posts.post_author IN ('; if (substr($where, 0, strlen($ssearch)) === $ssearch){ // removing first AND $where = trim($where, ' AND '); // starting from next AND $where = strstr($where, ' AND '); // second case check, if true, then we need to replace stuff $ssearch = ' AND wp_posts.post_type = '; if (substr($where, 0, strlen($ssearch)) === $ssearch){ $term_id = $terms[0]->term_id; $user_id = $query->get( 'author' ); if (is_numeric($term_id) && $user_id){ //remove indesided string $stringrep = 'OR (wp_posts.post_author = '. $user_id .' OR (wp_term_taxonomy.taxonomy = \'author\' AND wp_term_taxonomy.term_id = \''. $term_id .'\'))'; $where = str_replace($stringrep, '', $where); $stringrep = 'OR wp_posts.post_author = '. $user_id .' '; $where = str_replace($stringrep, '', $where); $where = ' AND (wp_posts.post_author = '. $user_id .' OR (wp_term_taxonomy.taxonomy = \'author\' AND wp_term_taxonomy.term_id = \''. $term_id .'\'))' . $where; } } }
Tell me if it works for you.
Cheers!Forum: Plugins
In reply to: [qTranslate X] wpadminbar 'View Page' returns to home pageAny news?
Forum: Plugins
In reply to: [qTranslate X] wpadminbar 'View Page' returns to home pageOh great news @gunu ! This problem is driving me crazy too ??
What is the problem ? Will you be releasing a bugfix ?
If there is a temporary solution it would be great to know <3Forum: Plugins
In reply to: [qTranslate X] View Post link stopped working after last update@gunu I deactivated qTranslate Slug but it still doesn’t work.
Thank you for your help.Forum: Plugins
In reply to: [qTranslate X] wpadminbar 'View Page' returns to home pageSame problem, “view post” not working for all my post types.
Any idea?The thing is I need to send all emails with Sendgrid, and not only the Newsletter emails.
Any idea how I could get both running?
Thank you.Forum: Reviews
In reply to: [Custom Post Type UI] The plugin was great before last updates.Hi Michael,
Of course I can try it and give you my feedback! Can you send me the link?Forum: Plugins
In reply to: [Co-Authors Plus] Assigning co-authors to multiple postsI would love to have this feature!
Forum: Reviews
In reply to: [Custom Post Type UI] The plugin was great before last updates.Hi Michael,
First of all, thank you for the great work and sorry for the bad review.
The UI changes made it so hard to access existing post types and to modify them.
– We no global view over all post types and taxonomies.
– Now we need 5 clicks to edit an existing post type, it is wrong ??
– Tabs (Add New/Edit ) aren’t necessary and is a waste of time.
– The dropdown menu to select post types is not better than a simple list with “edit, delete, add” boutons direct on it.
– The accordion menus for labels and settings are way worse than simple inline sections where you can just scroll down and see everything quite fast.I know you are trying to make improvements but this is a quite common mistake designing interfaces. For this kind of plugin and amount of data you don’t need to organize the content with dropdown menus, tabs and accordions, it is a waste of time and bad UX.
Just keep it simple and easily accessible.Anyway, thanks for the reply.
Cheers.Forum: Plugins
In reply to: [Add From Server] Files not showing up in Media LibraryIt is happening the same here.
Have you found the problem?Forum: Plugins
In reply to: [BuddyPress Docs] BP Docs doesn't support WordPress 3.7 nowWell I changed permalinks to /%postname%/ and it works now.
But the problem remains with the permalink structure > /%category%/%postname%/