kjbenk
Forum Replies Created
-
Forum: Plugins
In reply to: [Show Stock Quotes by 99 Robots] Prices not showingCurrent with some site’s that use HTTPS the plugin we fail to operate correctly. Especially when viewing from google chrome you will see in the console that there is a Mixed Content Error. This means that you have an HTTPS site but you are also trying to load content via an HTTP domain. This violates the security of HTTPS so therefore the content is not loaded.
Basically, the plugin must not work with HTTPS ??
Forum: Plugins
In reply to: [Post Status Notifications] Undefined variable notices all over the adminHello Chris ??
Thanks for bringing this to our attention. I will mark this down within our PM system but if you want to speed up the process you can always fork the GitHub repo and send me a pull request ??
Forum: Plugins
In reply to: [Show IDs by DraftPress] make id column sortableVery cool ??
If you want to you can send me a pull request to my Github account and I will have a look about adding it in.
Forum: Plugins
In reply to: [Post Status Notifications] private postYou would have to edit the code directly in order to make that happen since the plugin does not currently support that.
The actual email is sent in this function so you have edit the code there to do whatever you want ??
Forum: Plugins
In reply to: [Show IDs by DraftPress] Not showing IDs in neither Catogories nor TagsA CPT does not have an ID but instead has a slug that you set via the
register_post_type()
function. In short, there is no way to show the IDs of post types, since the post type slug is the ID.Below is a link to a generator.
Forum: Plugins
In reply to: [My Site Audit] featured (pay per post)Sounds Great ??
Forum: Plugins
In reply to: [My Site Audit] featured (pay per post)Hello iLen,
Thanks for the feedback ?? Currently there is no feature that exists within the core plugin that does this, but we did make the plugin very extensible so that you can hook into the Post Pay Counter plugin and show those results within My Site Audit.
…could add features payment by post ?
The short answer is yes! Please have a look at the code and you should be able to add-on any sort of conditions you want.
Forum: Plugins
In reply to: [Show IDs by DraftPress] Not showing IDs in neither Catogories nor TagsHello B Day,
Just like the a post you should see all the post types listed as menus on the left side panel. You will then see the ID when you view the table of all custom posts.
Forum: Plugins
In reply to: [Post Status Notifications] Admins not receiving notificationssaves on the backend as a draft
Ok if it saves it as a draft than Post Status Notifications will not trigger. It will only trigger if saves a contributors post as pending for review.
Forum: Plugins
In reply to: [Post Status Notifications] Admins not receiving notificationsHow are posts saved from the front-end submission? If this is a custom implementation then they might be by-passing the actions that WordPress triggers when a post is saved.
Forum: Plugins
In reply to: [Content Resharer] Configuring Minimum and Maximum Days FilterOk I see the problem.
Minimum Days to be eligible is the number of days old a post must be to be shared. So since you have 1500 that means posts that were published over 1500 days ago can be shared.
Maximum Days to be eligible is the number of days old a post can be in order to be shared. Usually this is a number like 60 which would mean that no posts older than 60 days can be shared, but you can use 0 which means that there is no age limit.
So essentially you are sharing posts that are at a minimum 1500 days old. Try to reverse your Minimum Days to be eligible and Maximum Days to be eligible settings so that it looks like this.
Minimum Days to be eligible = 0
Maximum Days to be eligible = 1500Forum: Plugins
In reply to: [Content Resharer] Configuring Minimum and Maximum Days FilterIt’s posting the same post over and over again at every interval.
This is normally due to the fact that your Post Filter setting are too restrictive and therefore only one post can be shared. This means that when each interval comes around there is only one post that can be shared.
I would try to adjust your Post Filter settings based on you site to include more eligible posts when resharing. This will help you to not reshare the same post over and over again.
Also, Content Resharer is meant to share your older posts, normally blog articles, to your specific social media platform. It works best when you have a lot of older posts, maybe 100 or so, that meet your Post Filters. This way the duplicates are much more rare.
Forum: Plugins
In reply to: [Content Resharer] Configuring Minimum and Maximum Days FilterHello Greg ??
Content Resharer uses the maximum and minimum post age as well as the post categories to determine what posts to share. Please make sure you have included all of the post type you want and that you do not have too many excluded categories.
https://cloudup.com/ccRmmBVwjtX
Content Resharer Pro tells you how many posts are eligible baed off the post filters you set so you will know if you are only sharing a single post because of the post filter settings.
https://cloudup.com/cFbmD0t2Pl0
If you are still experiencing problems please let me know.
Yeah that sounds great please let me know of all of the features you want to add into the plugin. You can simply just go to the GitHub repo and create issues tagged as enhancements. This way we can discuss this within Github instead of here.
Hello Sophia,
This functionality is not currently within he plugin, but if you know some code it would not be too much trouble to add the feature on.
You can fork the project here: https://github.com/99robots/wpsite-comment-moderator