razon
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontier Post] redirect after postHi,
I have tried adding a filter after the post is published but it seems that it doesn’t work still. Do you have any possible fix I can try?
code:
add_filter(‘publish_post’,’redirect’);
function redirect($post_id) {
$permalink = get_permalink($post_id);
$location = “http://websitename/?url=”.$permalink;
wp_redirect($location);
}Forum: Plugins
In reply to: [Frontier Post] Featured ImgI seem to be able to add featured image only from the “Select Featured Image” button at the bottom of the form but not from the “Add Media”=>”Set Featured Image” button.
Is anyone else having the same problem?Forum: Plugins
In reply to: [Frontier Post] hi, custom fields?hi, may I just check about why the custom field post data won’t be saved?
(been trying to add custom fields into the plugin myself)Forum: Plugins
In reply to: [Frontier Post] Block Subscriber from Viewing the Whole Media Libraryhi, had a similar problem as you too.
resolved it from this link:
which is a slightly different method from the one you posted with the restriction to non-admin users through ajax queries.
hope this helps a little 🙂