rscarter1
Forum Replies Created
-
@enfasicon – I have not been able to fix it yet.
I found a different solution. Sorry, was on a time crunch! Thanks for the follow up.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Users no longer showingAdding this code to the functions fileand then clearing the cache fixed the issue.
function fix_page_query() { if ( post_type_exists( 'page' ) ) { global $wp_post_types; $wp_post_types['page']->publicly_queryable = true; } } add_action( 'init', 'fix_page_query', 1 );
AND I had to set Restrict Dynamic Features to “Unrestricted”
- This reply was modified 1 year ago by rscarter1.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Access Rights – public displayOur ag3ents page which displays all agents which sre added via users are no longer displayed. We get “
Pods Access Rights: Admin-only Notice
The content below is not public and may not be available to everyone else.
How access rights work with Pods (Documentation) | Edit other access right optionsIn the PODS Review Access page in the backend, User content privacy is set to Private and cannot be changed. Nothing can be changed for user. Everything has a little lock on it.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Only Show Categories with PostsHa. It was simply:
<article> [if count]<a href="{@permalink,esc_url}">{@name}</a>[/if] </article>
- This reply was modified 1 year, 1 month ago by rscarter1.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Taxonomy List in DropdownI treid the each tag, but couldn’t get that to work. I’m trying to create a dropdown of ALL taxonomy terms in that taxonomy, and not just the terms related to that pod post. I’ll try again (and I was using a dropdown select form with that.)
I’m using this in a pods template and then calling the template on a page:
<div class="dropdown"> <button onclick="mydropdownFunction()" class="dropbtn">Departments</button> <div id="myDropdown" class="dropdown-content"> [each department]<a href="{@permalink,esc_url}">{@name}</a>[/each] </div> </div>
In conjunction with this script: https://www.w3schools.com/howto/howto_js_dropdown.asp
Still not working yet. The function script is altered to match my form.
Oh I got it working. Did not need the each tag. Phew! I added the above to the page itself, changedvthe each to reference the pod and template. Kep the template to just the magic tags (url and name).
Forum: Plugins
In reply to: [WPMobile.App] Search Results not Opening in AppThanks, good to know about the name. Is there any way to get the search results to open in the app?
Forum: Plugins
In reply to: [WPMobile.App] Menu not showingForum: Plugins
In reply to: [WPMobile.App] Menu not showingThere’s no caching plugin. As I said It had been working before and then stopped and began to show only the mobile website. I tried another update but I am getting the same thing. I deactivated all plugins and tried switching themes but got the same thing.
I disabled the server cache too.
Forum: Networking WordPress
In reply to: Edits Using Theme Editor in Newtwork Admin Gives ErrorOkay, I guess it has to do with unfiltered html which is set to false automatically for a multisite, and this affects a lot of things. Howev, a superadmin should be able to add in the html that would set this rule off for normal users. But I cannot.
Forum: Networking WordPress
In reply to: Edits Using Theme Editor in Newtwork Admin Gives ErrorWell, I’ve narrowed it down and it’s even weirder.
I can use the theme editor on other themes. So it’s just the child theme I’m using. I tried removing it and reinstalling, still can’t edit.,
But I found it I erase all the css, I can save it! So, I started adding each bit of css back, one snippet at a time, and it worked. Intil I got to this snippet:
.mc4wp-form-fields input[type=email] { padding-top: 10px!important; padding-bottom: 10px!important; width: 80%; font-size: 17px }
It’s the brackets! If I remove the brackets in this snippet, it saves. And I can use the customizer too.
So – what’s the deal? Trying to research but finding nothing.
Forum: Networking WordPress
In reply to: Edits Using Theme Editor in Newtwork Admin Gives ErrorSomething interesting:
I started a new site within the same multisite on a subdomain. And with this new site, I CAN use the customizer. It’s the same theme but new child theme.
Both child themes and the main theme all have the same file permissions. All three themes are network enabled.
So the main site (which had been changed into a multi site) and network admin are the ones unable to make file changes.
I don’t get this.
- This reply was modified 1 year, 9 months ago by rscarter1.
Forum: Plugins
In reply to: [WooCommerce] Multisite Defer Emails IssueThose issues listed are not the problem. We use an SMTP connection and we’ve been using the defer method for a long time. Our emails have been sending perfectly for a long while. When we switched to a multi-site, that’s when the emails stopped sending. Removing the defer code above solves the issue.
There seems to be an issue with that particular code on a multi site.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Custom Taxonomy Widget AutocompleteThank you!
I enabled the logging in WP Mail SMTP. I discovered that the transactional emails to the customer are working fine. But the ones going to us, are not. They are not even being generated. The only difference I can think of is that the emails to use go to multiple recipients. I have edited that down to one for each and I shall see if that helps.
We use Gmail’s API for email and out email is not lbocked. Other emails are going through fine. It’s on the Woo transactional emails going to us.