tmhudg
Forum Replies Created
-
Good spot Sazu – I see the same thing. If I set the number of events to show to 10, I get none. If I set it to 50, I get many showing but even that is wrong. For example, I have events on Sept 26 and 27 showing on the calendar grid view. But in the list view, the even on the 26th is not showing but the one on the 27th is. Very strange.
I’d just like to add that I’m having this same problem as well but with woocommerce. Woo lets you set up different “from” addresses for different status emails that it sends. Those are all being overridden by the “from” address that I *must* setup in Easy SMTP.
This seems like a glaring problem with this plugin. I’ll be looking for another SMTP plug-in unless this gets fixed.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Confused about displaying reset password linkUgh. Cacheing plug-in was causing the changes I was making to not show.
It’s working fine now. Sorry, I will slink away in shame…
Thanks
- This reply was modified 8 years, 1 month ago by tmhudg.
Forum: Plugins
In reply to: [WP Post to PDF Enhanced] Printing tables and table cellsFWIW, I’m having the same problem. I’m using Toolset Views and Layout to render a very plain verion of a post. The post content is essentially a report using tables. When I do the PDF generation, only the post title is rendered in the PDF.
Let me back up. Given a pod that has several entries (posts?) in it, how would I go about showing a list of those entries on a page in the front end?
I’m also curious why this thread is marked ‘resolved’
Well, I’m clearly missing something because your question doesn’t even make sense to me. The filename of my custom page template is (effectively) junk.php. The thing that makes it a page template I can choose as a template is the “Template Name” in the comment at the top of the page. I’m not naming it single-<podname>.php – is that something I need to do?
I’m happy to look at documentation for this but I just can’t find anything that explains this.
Thanks.
Ah, of course! Duh.
I’m still confused about this “hook”. Is this replacing *every* instance of “Tasks” (regardless of case) in the Sprout plug-in (domain)? I see that it has also changed it in the Invoice editor. It’s fine if it does for my case, it just seems like a broad brush to use when I really only need to change the template.
BTW, thanks for the quick responses and help. I’m going to be ponying up for a license today.
<newbieWordpressHacker>
So, I took a look at the si_change_strings filter described in the document and I made my own – put into my functions.php file for my child theme – and it didn’t work. Here’s what I have:
`function si_fix_tasks( $translations, $text, $domain ) {
if ( ‘sprout-invoices’ === $domain ) {
// Change “Description”
if ( ‘Tasks’ === strtolower( $text ) ) {
return ‘Programs’;
}
// add more conditions, changing as many strings as you’d like
}
return $translations;
}
add_filter( ‘gettext’, ‘si_fix_tasks’, 10, 3 );’I’m trying to change “Tasks” to “Programs” but fundamentally, I don’t understand how this code is going to work. Is this going to change *every* instance of “Tasks” (both upper and lowercase) to “Programs”? I only want to change it on the Invoice display page. I don’t really understand how this restricts the change to the specific instance of the text I’m trying to change.
</newbieWordpressHacker>Thanks for continued help
Thanks Dan,
Yeah, I should have mentioned that I *am* using a copied template in my child theme folder and making my changes there per the KB document.
I’ll check out the filtering mechanism.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Need help with master/detail designThanks for the pointer to the videos – they were helpful to fill in some gaps in general PODS knowledge for me.
Depending on what you’re trying to create and the complexity of it, yes, you may have to write some PHP code. We’re primarily a custom content management framework, but we are not a ‘visual builder’. Creating incredibly complex applications takes ‘complex’ solutions and you may have to resort to code for certain things. However between Pods and our Pods Templates and the Pods Form Shortcodes (for creating front-end input forms), you could reasonably build a basic web application like you mention without using PHP.
Okay, this is the information I’m looking for. Is there a walkthrough of building something like this? Even if I have to write a little PHP. Just looking for something to give some direction on this specific task.
Sorry. I did send a note to the theme developer but haven’t heard back. I’ve switched to a different theme for the time being. I’ll update this thread if I find anything out.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Need help with master/detail designThanks for the reply. BTW, in your linked article I *do* see the code for ACTs right at the bottom.
One thing that kind of confuses me in general is that these tutorials are showing PHP code. I thought the point of PODS was that you didn’t have to break open your PHP editor and start writing code. I’m really surprised this is proving so hard to find. Maybe it’s a harder thing to create a plug-in for than I realize (having never written a WordPress plu-gin).
Thanks for the quick reply.
I disabled other plugins and still see the issue. Looks like it’s due to the theme I’m using – Spacious. I switched to 2015 and did not see the error.
I’m a bit of a WP newb so I have no idea how to troubleshoot this. I guess it’s probably not your problem but would you have any suggestions? I’m not locked into this particular theme but I do like it.
Thanks
Forum: Plugins
In reply to: [Memphis Documents Library] Save Categories button changes categoriesFWIW, I’m having the same problem. Category management just isn’t working correctly – I have empty rows I can’t delete, I’ve lost sub-categories, etc.
I can let you have a look if you need it.
Thanks
Forum: Plugins
In reply to: [WP Posts Filter] Another – can't get it workingWell, I switched the posts page back to the Announcements page and the wppf short code is no longer working – I’m getting all my posts on the page now.
I have no idea if the theme I’m using – Hueman – uses custom queries to the database.
I’m a bit of a WP newbie so maybe I’ve got something else configured wrong but I’m not sure what to look at…