shawfactor
Forum Replies Created
-
Forum: Plugins
In reply to: [LH Archived Post Status] Translating the Archive Messagethe default message is translatable , but once it is set it is not translatable. I’m not even sure how it could be btw as the message could be anything
Forum: Plugins
In reply to: [LH Archived Post Status] Translating the Archive Messageit sounds like we are talking about the same thing.
as I said that is a setting but the default value is translatable. See the code reference I gave.
the default value does not have any html attributes though so it’s not stylable but I’m happy to add an id or class. That being said you can set an id or class in the html view in settings if you want to override the default value
Forum: Plugins
In reply to: [LH Archived Post Status] Translating the Archive Messagehopefully we are talking the same thing but the nesssge that appears above the content is configurable but its default, which is:
“This content has been archived. It may no longer be relevant”
is translatabke, look at line 779.
noting if a different message is set in settings the. That will take precedence.
hopefully that is what you meant
Forum: Reviews
In reply to: [bbPress] I find this terribleI have nothing to do with the BBpress team, I’m just someone whose used it in the past.
But your review is very unfair, the problem you are having are likely not caused by Bbpress, the forum admin likely has other plugins conflicting with Bbpress.
Forum: Plugins
In reply to: [LH Archived Post Status] archived post disappears from Arvhive?Yes I think it’s been mentioned in several support threads. Archived post status is not the same as post archives (which actually use the main loop).
the plugin is behaving as it should.
I do however need to add a faq item explaining this.
sorry I try to keep on top of the support (for free) and get frustrated that no matter how good the instructions you write, some people don’t read them.
Your FYI is superfluous as this is already explained in detail in the plugin FAQ here:
I am resolving this for good order.
Forum: Plugins
In reply to: [LH Archived Post Status] Do archived posts/pages show up in Google search?I am resolving this for good order as I believe my suggestion should suffice, but will still monitor the thread and reopen if appropriate.
Forum: Plugins
In reply to: [LH Archived Post Status] Change date to archive on instead of after?I will look at this but it will only happen in the medium term as I suspects I’ll need to write some migration code. I am resolving this but will still monitor the thread
Forum: Plugins
In reply to: [LH Archived Post Status] Do archived posts/pages show up in Google search?ATM they appear in google unless you configure them not to show up in the front end. The plugin does not exclude them as many people would want their archived content on the front end to be indexed by search engines.
However it’s trivial to write some code to request google to exclude them
something like this would work
add_action(‘wp_head’, ‘my_exclusion_function’);
function my_exclusion_function(){
if (is_singular() && (get_post_status() == ‘archive’){
echo ‘<meta name=”robots” content=”noindex”>’;
}
}
note I’ve not tested the aboveForum: Plugins
In reply to: [LH Page Links To] Feature Request: Settings to select/deselect Post TypesI’m happy to change the defaults post types but I’m not going to add settings. If you need to change anything though I’ll always ensure there is a simple filter available (and there already is in this case). So if you can do basic coding you can achieve what you want easily. If you can’t hit me up
I use 80% of the plugins I publish so it’s largely driven by my personal preference
Forum: Plugins
In reply to: [LH Page Links To] Feature Request: Settings to select/deselect Post TypesI believe in decisions not options for my plugins, settings suck.
There is a filter so you can code you add the functionality yourself in two lines. Or if you need the feature the process is outlined in the plugin faq.
Forum: Plugins
In reply to: [LH Page Links To] Feature Request: Settings to select/deselect Post TypesI have added a filter to handle this in the latest version and instructions in the FAQ. Should be obvious enough but revert if not. I am resolving this issue for now but will still monitor this thread.
Forum: Plugins
In reply to: [BP Attachments] Make object cache friendlycan you please let me know the thread or trac nuber of the underlying buddypress issue? As I am still seeing it and would like to follow development
Forum: Plugins
In reply to: [LH Private Content Login] translate text on login pageI have added a filter in the latest version and the faq gives further details. I am resolving this for good order but will still monitor the thread.