listingwarebob
Forum Replies Created
-
I’m having a similar issue – here’s what I see:
– If I enter nothing in username or password, I get message back from server.
– If I enter a correct username and password combo, I get logged in.
– If I enter a username / password, mismatch, I get a 403 Forbidden error through Firebug.
Any idea what is now generating the 403 error?
Forum: Plugins
In reply to: [Post By Email] Setting Custom Post TypeI think the best way would be to have a global default post type, but then be able to set it dynamically via shortcode. That seems to cover most bases.
Thanks for considering the addition!
By the way, I did go through and deactivate all other plugins and switch to another theme, but it didn’t help. I need to just remove the link if I can.
What if I wanted to remove the Lost Your Password link from the message that pops up? I could do that and just have a static link elsewhere to retrieve the password. Where would I edit that?
The website is located at http://developer.ingenico.us. In the upper right you can try to login with ‘bhendren’. If you put in a bogus password and click ‘Log In’, it will put an error to the left of the login block. However, it will not do anything if you click Lost Your Password?
By the way, all of the other elements are working, just not the password link.
I’m having this same issue. I did try deactivated plugins, didn’t help. Any clues?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Total Records For ShortcodeIt wasn’t the most elegant output, but I went ahead and output the total() value as a hidden element in the pods template. I then could use a little jQuery to replicate it anywhere I want on the page. What matters is getting the result you want, right? 🙂
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Total Records For ShortcodeI had tried something along those lines, but it didn’t work. Please note, I had said above that I’m using a one-line shortcode. Is there a way I can output that total value using the shortcode implementation?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Total Records For ShortcodeFYI, earlier on the page I have a one-line shortcode like this:
[pods name=”document” template=”document_list”]
What I want is to be able to display the total or total_found at the bottom of that page after (or ideally, both before and after) the one-line PODS shortcode.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Total Records For ShortcodeCould it maybe be something like:
[pods]{@total}]/pods]
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Total Records For ShortcodeI did see the total and total_found functions, but was trying understand exactly how they could be used with shortcodes. Can you provide an example of that?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] User Meta In WHERE ClauseIt may not be ideal, but I ultimately used another plugin (Shortcode Exec PHP) to be able to call some PHP directly and “wrap around” my Pods calls. Probably could have done it all in Pods, but for right now it was quicker and easier to do it this way.
Anything you can pass on about using Magic Tags for user metadata would be helpful. Thanks.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] User Meta In WHERE ClauseI guess the thing I’m looking for is how to refer to the current user’s meta info? This seems like it should be something like:
@user.related_company
@user.meta.related_companyI’m browsing the wp_usermeta table directly and seeing the values that I want to use. I just don’t know how to refer to them in Magic Tags.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] User Meta In WHERE ClauseThat doesn’t seem to be quite it – let me clarify. For both Documents and Users, the related field for Company can be either unselected or blank. For a Document, if related_company is blank, it’s a public Document. If it’s selected, it should only be visible to a User of that Company.
Your solution seems to be pulling just those Documents owned by the current User. I want all Documents available to their Company. It would seem that the reference would be something like:
{@user.related_company.id}
Not sure if that’s a valid reference, though. Are all of the user meta fields available as Magic Tags? If so, how are they referenced?