voceplatforms
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Post Thumbnails] How to fallback to regular featured image?You can use the
has_post_thumbnailmethod: https://github.com/voceconnect/multi-post-thumbnails/wiki/Functions-and-Template-Tags#has_post_thumbnailTake a look at https://github.com/voceconnect/multi-post-thumbnails/issues/18
Similar logic but you’d want to remove it unless it doesn’t match the pages/parents you want to match one.
Forum: Plugins
In reply to: [Multiple Post Thumbnails] How many featured images could be show maximum?There isn’t a limitation in the plugin, however, the page load time will probably become tedious after more than a handful. Not to mention the user experience/workflow.
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Blank media upload modalCan you confirm you are using v1.6 of the plugin (or 1.6.1 we just released which only changes readme, not code)? And what version of WordPress you are using.
Thanks.
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Plugin does not have a valid headerCan you try the latest version? Only the version changed, however, there was a report of the download from a few weeks ago containing the trunk folder so something may have been corrupted.
Thanks for the report. We pushed a new version today and looking at the download now it looks OK and does not contain the trunk folder.
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Does it work with WP 3.5There is no MPT box for uploads. When you have an MPT registered and you click the link to set the thumbnail, it will present you w/the same thickbox that the featured image used prior to 3.5 where you can upload or choose an image from the library.
Forum: Plugins
In reply to: [Lift: Search for WordPress] Submit Old PostsWhen Lift is configured, it *should* have added all the posts to the queue. If you don’t see them in the queue on the dashboard, you can force it by adding the following to your theme’s
functions.php:add_action('admin_init', function() { if (current_user_can('admin') && isset($_GET['lift-queue-all'])) { Lift_Batch_Queue::queue_all(); } });then when logged in as an admin to wp-admin, append
&lift-queue-all=1to the URL. Go to the Lift dashboard and you should see all the posts in the queue. wp-cron will process those in batches based on the queue interval set in the dashboard.-Chris
Forum: Plugins
In reply to: [Lift: Search for WordPress] Get error on activating the pluginWe’ve updated the docs to note the minimum requirements.