DaveE
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Posts Widget] Plugin does not maintain settings after 3.4 updateHi g.longo,
Unfortunately, FPW has never worked within the Page Builder interface (while building a post or page with the Page Builder plugin). This was documented previously and is an issue with the way Page Builder loads widgets into a non-standard interface (not the Admin > Widgets page) to make “building” a page possible.
FPW works fine from the regular Widgets interface (both version 3.4 and 3.3.1) while Page Builder is active.
Sorry!
Forum: Plugins
In reply to: [Flexible Posts Widget] Exclude post using costum fieldsHi Stefan,
Unfortunately, it isn’t really easy to explain without some knowledge of code. In your situation I’d recommend finding a developer who can help you or trying another plugin/option for your situation.
Sorry I can’t be more help!
Forum: Plugins
In reply to: [Flexible Posts Widget] Exclude post using costum fieldsForgot to mention that you’d need to add this filter to your theme’s functions.php file. Cheers!
Forum: Plugins
In reply to: [Flexible Posts Widget] Exclude post using costum fieldsHi sjteef,
If I understand your question correctly, you’d like to be able to adjust what posts are returned based on a a custom post meta key/value? If that is the case, there is a filter available on the FPW query:
dpe_fpw_args. You’d need to adjust the query variables to use custom meta values as parameters of the query.The code would look something like this (only an example):
add_filter( 'dpe_fpw_args', 'fpw_custom_args' ); function fpw_custom_args( $args ) { $args['meta_key'] = 'my_custom_key'; $args['meta_value'] = 'my_custom_value'; } return $args; }In the future, I’m planning to add another widget specifically for querying by custom meta values; but as it stands now, FPW doesn’t support this natively. You’ll have to use the filter and write the parameters yourself.
Thanks for using the plugin!
Forum: Plugins
In reply to: [Flexible Posts Widget] Align Thumbnails to the leftHi liquidguru,
Thanks for using the plugin. Per the documentation, FPW doesn’t do any styling on it’s own. If your theme supports styles like that, you could create a custom template for your FPW instance to accomplish this; but at this time it’s not a feature of the plugin itself.
Sorry!
Forum: Plugins
In reply to: [Flexible Posts Widget] Support for multiple languagesHi again,
I’m looking into the issues surrounding multilingual widget for FPW. There a lot to consider here. I’m hoping to understand the needs/wants for the widget when using tools like Polylang. Would you be open to helping me understand the use-case a bit more?
Forum: Plugins
In reply to: [Flexible Posts Widget] Sidebar widget broke after last updateSince I haven’t heard back, I’m going to close this topic. Please feel free to repost if you still have trouble. Cheers!
Forum: Plugins
In reply to: [Flexible Posts Widget] Want to sort after "Last revision date"Just a heads up that the latest version of FPW now supports “Modified Date” for the order by option.
Forum: Plugins
In reply to: [Flexible Posts Widget] ErrorHi madeirajp,
I’ve released a new version that should correct this issue. Sorry for the trouble!
Forum: Plugins
In reply to: [Flexible Posts Widget] Wrong translation code?Hi sajtdavid,
This is now fixed in the just released v3.4. Cheers!
Forum: Plugins
In reply to: [Flexible Posts Widget] ErrorHi madeirajp,
Since I haven’t heard back in over 2 weeks I’m going to close this topic. Please feel free to post again in you continue to have trouble.
Thanks!
Forum: Plugins
In reply to: [Flexible Posts Widget] Wrong translation code?Hi sajtdavid,
Thanks for this! I had a couple others mention that the translations weren’t working and your post pointed me in the right direction for fixing it. I’ve got the code corrected and will be pushing a new version in the next day or so.
Forum: Plugins
In reply to: [Flexible Posts Widget] Sidebar widget broke after last updateUnfortunately, the path you’re using doesn’t appear to actually exist. If I try to directly visit your template file, I get a 404 error, not a blank page as should be the case if the file actually exists.
Reference accessing the default template or forbidden views folder within the plugin.
Forum: Plugins
In reply to: [Flexible Posts Widget] Sidebar widget broke after last updateI’m not sure if we’re communicating clearly here. In your site’s folder structure, you should have:
/wp-content/themes/[your-theme]/flexible-posts-widgetwhere[your-theme]would be the folder of your currently active theme.Inside that folder would be any custom templates you’ve created. So, if I have a template named
my-widget.phpthe path to that file would be:/wp-content/themes/[your-theme]/flexible-posts-widget/my-widget.phpAlso, you could try to remove any setting for the custom HTML template from your widget, just to see that the widget is getting the output from the default template properly.
I can guarantee that the custom template functionality is working correctly. I’m using it on many sites currently and I have updated them using the same process any others.
Forum: Plugins
In reply to: [Flexible Posts Widget] Display taxonomy name rather than CPT post titleHi Poocharo,
I’m not sure if I understand your issue completely or not. Let me see if I do:
You’re looking for a way to display a clickable list of terms from your Industries taxonomy that will then show the associated archive of posts (Case Studies)?
If that’s the case, FPW isn’t the right plugin/widget for you. Instead, you’d want to find a custom taxonomy widget such as the List Custom Taxonomy Widget. FPW just displays (custom) posts that meet a set of criteria such as having a specific taxonomy & term applied.
Hopefully that helps.