Matt
Forum Replies Created
-
Forum: Plugins
In reply to: [Require Featured Image] Compatibility with other pluginsnevermind, it’s a problem with the other plugin.
Forum: Plugins
In reply to: [Publish View] Compatibility with other pluginsActually, what it looks like is happening is the plugin still works and still restricts the post from publishing, but your plugin fails to see that and still views the page; it’s just still in a draft state and you’re viewing a preview.
I added “if($post->post_status != ‘auto-draft’ && $post->post_status != ‘draft’) {” to the following code to at least check to make sure a post has been published–
function publish_view_redirect($location) { global $post; if (isset($_POST['publishview'])) { if($post->post_status != 'auto-draft' && $post->post_status != 'draft') { $location = get_permalink($post->ID); } } return $location; } add_filter('redirect_post_location', 'publish_view_redirect');
would be a nice feature
This is still not fixed. An all-day + multi-day event still reports the end-date one day further. Example: I have an all day event scheduled for 12/24/2014 through 1/2/2015 and the “end-date” reports as 1/3/2015.
Thank you for the quick reply and explanation. I didn’t realize the two weren’t connected. If you or anyone is aware of an add-on or hook that I could manually code myself that would put a link on that pop-up to the actual “edit image” page, that would be helpful.
Thanks
Thank you for the quick reply and explanation of the “Media Manager auto-fill meta boxes” option. I saw that option but I didn’t find the the description to correlate to the function. I also couldn’t find any documentation on the option.
I have dealt with pot files in the past so I will take a look at that, thanks.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] nested rowsHe has that in his example–
[su_row]
[su_column size=”1/3″]
content
[/su_column]
[su_column size=”2/3″]
content
[_su_row]
[_su_column size=”1/2″]
content
[_/su_column]
[_su_column size=”1/2″]
content
[_/su_column]
[_/su_row]
[/su_column]
[/su_row]I believe the problem may be related to this post:
https://www.ads-software.com/support/topic/nested-shortcodes-syntax-problem?replies=3I was actually able to work around it by using a second column plugin (built into my theme-Hueman) that has a different shortcode.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] nested rowsCame here for the exact same issue. Any help would be appreciated.