mlaurel
Forum Replies Created
-
Thanks.
Hi @zhannak,
I understand Form maker is available for admin only from the backend.
I’m not entirely sure what you mean by front end? Do you mean the WP dashboard?
What I’d like is to disallow non-administrators to add pre-made forms on their posts/pages.
Is this possible?
Thank you, read the caveat ?? – I’ll test it out & see how it goes.
Thanks @voltronik,
Yes, I saw the notice.
The reason I was asking is because anything with the header [email protected] gets filtered into promotion with gmail.
Is there anything on the back end that can be altered to change the sender?
If that’s in the pro version & I’m not aware of it…then it changes everything.
Forum: Developing with WordPress
In reply to: Need help refining added code in functions.phpThanks for the help.
Not sure what was going on (it was probably as you explained). Ended up double checking code again & ran more tests. It is working properly.
@nikhilbhansi Thanks for pointing me in the right direction.
did more searching & found the following:
function force_type_private($post) { if ($post['post_type'] == 'post') { if ($post['post_status'] != 'trash') $post['post_status'] = 'private'; } return $post; } add_filter('wp_insert_post_data', 'force_type_private');
Changed the boolean to:
if (($post['post_type'] == 'post')&&(!current_user_can('administrator')))
So only Admin can publish. Works as intended.
Hi @nikhilbhansi,
Again thanks. Unfortunately, it’s still a no go. I tried it on the sandbox as well- the posts are visible to the public.
I’m going to try to ask the theme makers to see if they can help out (using the free version ATM)…hopefully they’ll respond
Thanks for this @nikhilbhansi but it doesn’t work.
Forum: Fixing WordPress
In reply to: Is it possible to create a media folder for each registered user?Thank you
Forum: Fixing WordPress
In reply to: WP adds unwanted code when updating pageOk, thanks.
Forum: Plugins
In reply to: [AddToAny Share Buttons] AddToAnyThank you, I do use a VPN on iOS.
Forum: Fixing WordPress
In reply to: can't find files on root directoryok thanks
Forum: Fixing WordPress
In reply to: can't find files on root directoryThe files are already on the server.
@insurgenesis – I’ve since abandoned that…like you said trying to find it in the css was too much of a pain
I did a completely different design without using any themes & just used WP as the ‘backbone’ for the site…
well I was editing a local copy of that theme before…did you happen to edit style.css or move/delete the *.png by accident?