Criss Swaim
Forum Replies Created
-
Forum: Plugins
In reply to: [TPG Get Posts] Orderby=Title DESCThanks for posting the solution to the order by.
Forum: Plugins
In reply to: [TPG Get Posts] Orderby=Title DESCadd
order='DESC'
to the shortcodeall of the options for WP_Query are documented here in the WP Codex
https://codex.www.ads-software.com/Class_Reference/WP_Query#Parameters
Forum: Plugins
In reply to: [TPG Get Posts] Post Separation with Image or HTML?look at the cf option at the bottom of the options documentation.
cf=”pst” will search for a custom module that is executed after each post
There is a model code file in the ext directory and instructions for use are in the comments of that module.
Forum: Plugins
In reply to: [TPG Get Posts] Post Separation with Image or HTML?You can customize the tgp-get-post-posts class in your style.css or in the custom user-get-posts-style.css as described in the documentation under the stylying tab.
And with the extension, you can code custom routines to insert code. The documentation discusses how to do this, but you need to be comfortable with php.
Forum: Plugins
In reply to: [TPG Get Posts] this plugin with customizr themeThere are two way to set the styling:
in your css
.tpg-thumbnail-class img {class: round-div;}
or in the shortcode
field_classes='post_thumbnail=tpg-thumbnail-class round-div'
You may need to experiment to get the desired result.
Forum: Plugins
In reply to: [TPG Get Posts] update to TPG Get Posts not workingJardry:
This sounds like a different problem. It could be a caching issue or just an incomplete install. Try:
1) clear cache and see if that allows you install the plugin
2) ftp to the site and delete the plugin. It is in wp-content/pluginsForum: Plugins
In reply to: [TPG Get Posts] update to TPG Get Posts not workingYes, you are the second person to have this problem. I did push a fix out to the repo which corrects the path to the textdomain files, but it was too late as some had already downloaded the original package.
delete the current plugin and reinstall from the repo. That should resolve the problem.
If this problem is reported again I will release the patch as 3.3.1 which will flag for a new version.
Forum: Plugins
In reply to: Error with latest version of TPG Get PostsThere was a problem with the pathing to the textdomain. It has been corrected and if you reinstall the plugin, the problem is fixed.
Delete the existing version and reinstall from the repository.
Forum: Plugins
In reply to: [TPG Get Posts] basedir_restrictions in language moduleI may have found the problem. There was an error in the path for the textdomain and I have corrected the statement.
If you delete and reinstall the plugin, that should correct the issue. Please let me know if the change works. Thanks
Forum: Plugins
In reply to: [TPG Get Posts] basedir_restrictions in language moduleCan you send a link to your website to me: webmaster – tpginc.net so I can see the message – if it shows with the English based system. I see part of the problem. This is my first venture into localization, I am sure I have it wrong.
I am not sure where the file path is generated and it has tpg-get-posts.php in the middle of the path…..that is not right.
Are you getting the message in the Admin section or on your public facing pages?
Forum: Plugins
In reply to: [TPG Get Posts] short code specs not workingfrom your command: show_excerpt=250
from the doc:
show_excerpt
This option show_excerpt=”true” will use the custom excerpt, if it exists, instead of the post content. It will use the entire excerpt entry. Default is “false”.start simple and only add options as they are needed:
[tpg_get_posts cat="jeweler" show_excerpt=true posts_per_page=21]
also, be sure to read the doc to understand the difference between numberposts and posts_per_page.
Forum: Plugins
In reply to: [TPG Get Posts] Line Break not workingIn your theme you have
word-break: break-all;
in the pre definition at line 869 in the bootstrap css. Turning off this css attribute corrects the problem.It is the theme and not the plugin causing the behavior.
Forum: Plugins
In reply to: [TPG Get Posts] Line Break not workingWithout seeing the short-code, it is not clear what you are trying to accomplish. In general, using the ‘more tag’ in the post is the best way to control where a read more break occurs within a post.
If you are using the shorten content, use the ‘w’ option to split by words and not by characters. Again, in the description of the shorten_content, I tried to stress that shorting the content by character is a very unpredictable way to split posts, but sometimes needed.
Hope that helps.
Forum: Plugins
In reply to: [TPG Get Posts] Help with READ MORE CSS classesOverriding more-link class is something I can add to the plugin.
Contact me directly at webmaster at tpginc.net. I can provide a patch to allow the override of the class and it will be included in the next release.
Forum: Plugins
In reply to: [TPG Get Posts] Custom StyleTo change the link you need to reference the
<a>
under the<h2>
. something like this.tpg-title-class h2 a { your styling here}
. Please verify the syntax, but that is the general idea.hope that helps.