Tanmoy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Offload SES Lite] Not working with WP Better EmailsWorking, thanks.
Forum: Plugins
In reply to: [Theme My Login] TML 6.3.6 Redirect IssueSame problem here, over 10 websites :O
I probably missed some points.
We can easily inset the codes into functions.php of theme.
Custom Post Type UI provides us codes to just paste into Theme’s function file.Forum: Plugins
In reply to: [eShop] eShop Customization Helphttps://nway.biz/thesis-widget-pro/
I want to hide Sku, Description and Shipping from this page.
Thanks
Forum: Plugins
In reply to: [eShop] IPN URL for eShopWOW, I made a purchase for testing using my two paypal accounts and noticed that upon successful payment, I was sent an email with download codes. Really amazing.
Thanks!Forum: Plugins
In reply to: [eShop] IPN URL for eShopThat means unsuccessful payment also deliver product email or download link?
Isn’t it possible? If so, please tell. It is urgent.
Forum: Fixing WordPress
In reply to: Display Post By Author.Let A is an author. B is another one. When A login to backend (wp-admin/edit.php), he cannot see the posts written by B. He can see only posts written by him.
Thanks.Forum: Fixing WordPress
In reply to: Display Post By Author.Sorry Esmi, I told about Backend, not frontend.
Forum: Fixing WordPress
In reply to: “Save as draft” has been lostI am sure that I missed that. And I reinstalled WordPress, so my problem was solved.
Solved
Forum: Themes and Templates
In reply to: remove title at top of each pageesmi Thanks, it worked for me properly.
Forum: Plugins
In reply to: Posthaste- how it can be enabled for contributer?On the roles: I believe “edit_posts” should work for contributors, too. See here. If that’s not the case, maybe I’m just misreading the roles.
Sorry, i have tried but failed.
Forum: Plugins
In reply to: Posthaste- how it can be enabled for contributer?Hello, Mr. Smajda, can i display posthaste in a page using any code?
Thanks.Forum: Plugins
In reply to: Posthaste- how it can be enabled for contributer?current_user_can(‘publish_posts’) to edit_posts instead.
If i do it, Only admin and editor can use that. And i want that all post will be kept pending for review.
Now i have used:
if ($_POST['postStatus'] == 'draft') { $post_status = 'draft'; } else { $post_status = 'pending'; }
So users can submit and all post will be kept pending for review. ??