lukerollans
Forum Replies Created
-
Forum: Plugins
In reply to: [Clean Testimonials] Removing fields in submission formHey mikeei,
This feature is planned for the future, but is not currently possible natively, I’m afraid
https://github.com/plugify/clean-testimonials/pull/43Cheers,
LukeHey aum152,
You can use the
per_page
shortcode attribute. EG
[testimonials per_page="99"]
Check out the readme for more options.
Cheers,
LukeForum: Plugins
In reply to: [Clean Testimonials] Submission Form Short Code not WorkingHey stuart_doughty,
The page you are seeing is your themes 404 page. This could mean a few things, but what it boils down to is that page is not publicly available. This is not connected with Clean Testimonials.
Is the page published? Is the page marked as private? Has there been any change to your site structure which requires a rewrite rules flush?
Make sure the page is visible and the shortcode should work ??
Marking as resolved as this is not a Clean Testimonials issue.
Cheers,
LukeForum: Plugins
In reply to: [Clean Testimonials] Email Notification for new testimonialHey nicktuckzine,
This is automatic. You don’t need to anything. Just make sure that you have the correct “Admin Email” set under Settings -> General in WordPress
If you aren’t getting emails through, it’s possible that emails your WordPress install is sending out are being spam filtered or rejected. You might try enabling SMTP authentication with something like this plugin
https://www.ads-software.com/plugins/wp-mail-smtp/
Let me know if you keep experiencing issues ??
Forum: Plugins
In reply to: [Post Meta Searcher] Multiple words search processHey Cheolguso,
If you would like to contribute code, please do so here
https://github.com/plugify/post-meta-searcherCheers!
Hey Ikraav,
Unfortunately this isn’t currently an option. It has been requested before, but I just don’t have the time to develop the plugin any further at the moment. I’m hoping to give it the TLC that it needs fairly soon.
I’m going to mark this as resolved as it is a feature request. To follow allow further, please follow this issue on GitHub: https://github.com/plugify/gravity-forms-braintree/issues/20
Cheers!
Hi treecycle,
You need to install an SSL certificate on your website. You should see “https” in the address bar of your browser. This is not optional.
You should talk to your web hosting company about getting an SSL certificate purchased and installed. This will ensure that your customers credit card data is kept secure.
Hey Guys,
When I built this plugin, the module in Gravity Forms which it latches on to was in very early development. It’s possible they’ve changed some things and added in a nice notice. I’ll make sure to have a look at this.
So long as you’re still receiving payments, I wouldn’t worry about it. Gravity Forms Braintree is a very simple plugin and it would be quite hard to completely break.
Forum: Plugins
In reply to: [Gravity Forms Braintree Add-On] Credit Card payment not processingHey Muhammad,
Are you testing in the sandbox or is this happening in production? If you’re testing in the sandbox, what amount are you trying to bill and which test card are you using?
Forum: Plugins
In reply to: [Gravity Forms Braintree Add-On] Recurring PaymentsHey Guys,
Sorry, but I just don’t have the time to add this feature in. Life is too busy at the moment and too many bills to pay!
I will hopefully be able to integrate this feature in the near future.
Forum: Plugins
In reply to: [Clean Testimonials] Spam entries coming through as DraftsHey Guys,
Glad to hear you’re enjoying the plugin (apart from this issue). I’ll take a look and release a fix in the next release.
You can keep track of the GitHub issue here
https://github.com/plugify/clean-testimonials/issues/55Marking this thread as resolved as the issue has been identified. Any further discussion should take place on the GitHub issue above
Cheers guys ??
Forum: Plugins
In reply to: [Clean Testimonials] remove image placeholderHey amaunsworth,
You should never remove code from a plugin. Any changes you make will break when a new version is released, and that will most likely cause even more serious issues on your site.
There’a a good selection of hooks and filters available to help you customize how Clean Testimonials renders testimonials. You can find them in the README over at GitHub here: https://github.com/plugify/clean-testimonials
For example, I would use the
ct_pre_render_testimonial
hook to override how your testimonials are being rendered entirely, and skip the featured image altogether.A very basic example which is untested (add this to your functions.php file). This will output only the testimonial content itself whenever you output a testimonial
function customize_my_testimonial( $testimonial, $context ) { echo $testimonial->post_content; } add_filter( 'ct_pre_render_testimonial', 'customize_my_testimonial', 10, 2 );
Forum: Plugins
In reply to: [Clean Testimonials] Shortcode for a specific category with rotate effectHey Dorothy,
This isn’t currently a feature, directly. I don’t think it will be either. I feel like rotating multiple testimonials in at once is bad for the user experience.
You can either use a series of “singular” shortcodes on the same page, that’ll work. EG
[testimonial id="5" cycle="true"]
. However, there’s no guarantee the testimonials won’t overlap.The only other alternative is to have a developer set this up for you.
Again, sorry that it’s not a feature, but I just don’t think it feels right.
Cheers,
LukeForum: Plugins
In reply to: [Clean Testimonials] Adding new testimonial from backendHey Isaenko,
You’re totally right, thanks for that! I’ve created an issue and milestoned it for the next release. Feel free to open a pull request if you’re a developer ??
https://github.com/plugify/clean-testimonials/issues/54
Marking this topic as resolved. Anything further should be discussed within the above issue.
Cheers!
Forum: Plugins
In reply to: [Clean Testimonials] ResizeHey sylunt1,
The plugin doesn’t handle any styling, that’s completely up to your theme. I would suggest getting on to your web developer or the creator of the theme you’re using ??
Please let me know if I can be of any help.
Cheers,
Luke