Ismael Latorre
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Validation ErrorSuper. It is a great plugin anyway. Works like a treat.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Get two values from array in User fieldHello? Any answers?
Forum: Plugins
In reply to: [Co-Authors Plus] author.php not listing co-author's postsI also tried this, but doesn’t work at all. Does anybody know how to solve this issue? It seems no-one at Auttomatic is supporting this plugin here…
<?php $args = array( 'posts_per_page' => -1, 'post_type' => 'bookshelf', 'post_status' => 'publish', 'tax_query' => array( // Query on the "Co-Authors Plus" custom taxonomy array( 'taxonomy' => 'author', 'terms' => $author // the author ID ) ) ); // The Query $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo '<div class="masonry-item"><h2>Bookshelf</h2>'; echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<li>'; echo '<a href="'.get_permalink().'">'.get_the_title().'</a>'; echo '</li>'; } echo '</ul></div>'; } wp_reset_postdata(); ?>
Forum: Plugins
In reply to: [mqTranslate] Lists posts in current category and mqTranslateI haven’t explained myself correctly:
Some posts within each category are only in English, some are only in Swedish, and some are both in English and in Swedish. What I am trying to achieve is, in single.php, a list of the category posts, except the current single post, ONLY in the current language. I get a mixture of both languages in the list.
Conditional solutions like the above would only help when posts are translated into both languages.
Forum: Plugins
In reply to: [mqTranslate] Lists posts in current category and mqTranslateNo answer… Anyone can please point me in the right direction? This is a fairly basic thing, I am sure, but I cannot find the solution! Please help!
Forum: Plugins
In reply to: [Admin Columns] Illegal string offset 'show_edit_button'Super. Keep up the good work!
Forum: Plugins
In reply to: [Admin Columns] Illegal string offset 'show_edit_button'Warning: Illegal string offset 'show_edit_button' in /wp-content/plugins/codepress-admin-columns/codepress-admin-columns.php on line 460
Forum: Plugins
In reply to: [mqTranslate] All format and tags removed in visual editor after last upgradeNo response so far about this very serious problem with the visual editor. Could anybody help? I saw someone else seems to have solved the problem with a hack into one of the plugin files, which I am very reluctant to do (an official patch from the plugin’s authors would be much better).
Help!
Forum: Plugins
In reply to: [mqTranslate] All format and tags removed in visual editor after last upgradeAll formatting from the visual editor gets removed in the admin (although it is not on the front end website). This seems only to affect the visual editor and the way it works with tags, and has only started to happen after the latest mqTranslate upgrade.
This is a major nightmare.
Forum: Plugins
In reply to: [Loco Translate] Error when savingSolved. Thanks.
Forum: Plugins
In reply to: [Fancy Admin UI] Change colourTwo tiny things: the mouseover color on left menu’s sub-menus remains the default blue even after you choose a custom color (including the “collapse menu” button). Ditto when you click on the title box of a post: the glow effect around the field remains the default blue too.
Other than that, I cannot find any other problems with this. A super-useful plugin
Forum: Plugins
In reply to: [Fancy Admin UI] Change colourPerfect. You are a star.
It is set to 1 hour
Hi,
Having the same problem, but only at random times (sometimes the feed displays perfectly, sometimes I get the “invalid argument supplied” error as above. The API connection test results are fine, the rest of the settings are correct:
PHP Version: 5.2.17
Web Server Info: Apache
PHP allow_url_fopen: Yes
PHP cURL: Yes
JSON: YesAs I said before, the feed displays correctly 4 out of 5 times, just returns error at random times for no discernible reason…
Any ideas?
Many thanks.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] get results for multi select on author.phpThat’s about right, yes. You must have configured the custom field incorrectly in ACF. I can confirm the code works perfectly.