mark l chaves
Forum Replies Created
-
Hey @pizzapie79,
Thanks for reaching out. That’s a great question.
The Content Control plugin is great for restricting access to content. But to hide the preview thumbs from an index or archive page, you can leverage the power of WordPress filters.
The code to hide post preview entries is pretty straightforward. We created an example for you here.
https://gist.github.com/marklchaves/9110aa520f25a753efb342434334a9cd
If any of that isn’t clear, give us a shout.
Have a great day 🙂
Hey @palm89,
We’re going to close this thread since we haven’t heard back from you.
Feel free to post a new issue or contact us directly if you need help with anything else.
https://code-atlantic.com/contact-us/
Cheers 🙂
Hey @kristinubute,
Thanks so much for clarifying.
Right now, the plugin can only support your restriction combinations the way we mentioned earlier. We understand that doesn’t scale for you. We wish we had better news for you.
We’ll definitely keep your ideas in mind for future releases.
Thanks again for your feedback.
Hey @andrewn88,
Thanks for reaching out and providing that link.
We’re sorry you’re your Content Control messages aren’t displaying for your Woocommerce products.
Can you check your server logs for any errors? You might want to temporarily turn on debugging mode too https://wordpress.org/support/article/debugging-in-wordpress/
Another thing you can check is your PHP variables. For example, if your
max_input_varsis only 1000-1500, you might need to bump that to 3000-4000.You can check your PHP variables with the Site Health tool.
wp-admin > Tools > Site Health > Info > Server
If you’re still seeing the issue, can you submit a help request so we can have a closer look?
https://code-atlantic.com/contact-us/
P.S. We noticed you’re running Autoptimize. You’ll probably need to disable that while you’re troubleshooting.
Cheers!
Hey @kristinubute,
Thanks for reaching out.
If we understand your question, you should be able to create 3 top-level “Brands” menu items with their respective sub-level “Brand 1-5” items in your main menu.
Then using User Menus, set up your conditions on the top-level “Brands” items only to filter who can view that version of your “Brands” menu structure.
E.g.:
First “Brands”: Logged Out Users
Second “Brands”: Logged in Customers
Third “Brands”: Logged in Wholesale Customers
Here’s a mini example we set up so you can get a visual.
https://share.wppopupmaker.com/4guP17rj
We hope that helps.
Let us know if we missed something or if you need anything else.
Have a great day 🙂
Mark
Hello @dhampik,
Thanks so much for your patience.
It looks like we’ll need to update the Freemius library. See below.
https://github.com/Freemius/wordpress-sdk/issues/510
I’ll create an issue for this on our GH repo.
Thanks again for reporting this to us!
Have a great day 🙂
Hey @herbhalstead,
Thanks for reaching out. We’re sorry you’re seeing an issue with partial page restrictions and custom roles.
We’re not able to reproduce that. Can you watch the demo video below?
https://share.wppopupmaker.com/GGu42zDA
The shortcode in that screencast protects a section of the post for a custom “employer” role. Here’s the code.
[content_control roles="administrator,employer"]Hey! You must be an employer :-)[/content_control]Can you record what you’re seeing including your shortcode or settings?
Feel free to submit a help request on our site for a more secure channel.
https://code-atlantic.com/contact-us/
Thanks so much!
Hey @artkarolina,
Understood. We got your help request. We’ll continue this thread in our support system.
Cheers!
Hey @ep2012,
Thanks for reaching out.
We’re sorry you’re seeing those extra lines on your popup. We appreciate your screen capture too.
That’s happening because a default accessibility feature in popular browsers is clashing with our accessibility defaults. Can you use this workaround for now?
https://gist.github.com/marklchaves/12ffe01c4aadf938caa23b4f0ca33681
We’ll add that CSS workaround as a permanent fix in the next release.
Alternatively, you can temporarily disable Popup Maker’s accessibility features if that’s easier for you.
https://share.wppopupmaker.com/NQu7Ewbo
Sorry again for the inconvenience.
- This reply was modified 4 years, 7 months ago by mark l chaves.
Hey @palm89,
Thanks for reaching out. We’re sorry your restrictions aren’t working the way you want.
Let’s assume you have an employer and a candidate tag for your posts. And, you’ll give employer-only posts the employer tag and candidate-only posts the candidate tag.
From reading your use case, we think you only need 2 restrictions:
1) Only an employer or administrator can see posts with the employer tag.
2) Only a candidate or administrator can see posts with the candidate tag.
Here’s a visual of what we set up.
https://share.wppopupmaker.com/xQujAOdL
Note that we need to add the administrator role to both restrictions because you want them to see all posts.
We don’t need to have a separate restriction for administrators to see all pages because that’s the WordPress default for admins.
We don’t need to have a separate one for logged-out folks either because the default is everyone can see public posts.
We hope that helps.
Let us know how that works out for you.
Have a great weekend 🙂
Mark
- This reply was modified 4 years, 7 months ago by mark l chaves.
Hwy @artkarolina,
Thanks for reaching out. We’re sorry you’re content isn’t hiding.
Assuming you don’t have any plugin conflicts on your site, there are a couple of things to watch out for:
1) Try to make sure your restrictions aren’t overlapping. Why? Because the order of restrictions is important. Meaning the higher restrictions on the list will always override your lower restrictions (the order is priority-based).
E.g., Say I create a restriction that allows contributors and editors to see all posts with the tag “A”.
Then, I create a restriction above it that says only editors can see tags “A” or “B”.
If I log in as a contributor, I won’t see any posts with the tag “A”.
2) Double check your restriction rules if you’re using ORs and ANDs. Make sure you’re not mixing them up for any reason.
For example, if you want only subscribers to see posts that have both category “X” and category “Y”, you’ll need to set up an AND condition. Not an OR condition.
If that doesn’t help, we can check your site for conflicts and look at your restriction settings.
Just contact us at the link below so we can work out the details in a more secure channel 🙂
https://code-atlantic.com/contact-us/
Cheers!
Hey @reedus33,
That’s a great question.
Googlebot doesn’t know your passwords nor does it have a login account on your WordPress site. So, no. Restricted pages won’t get crawled.
There are no SEO implications with the Content Control plugin. It only manages content visibility, not content quality.
We hope that helps.
Let us know if you need anything else.
Have a great weekend 🙂
Mark
Hey @tombrouwer,
We’re going to close this thread since we haven’t heard back from you.
Feel free to post a new issue or contact us directly if you need help with anything else.
https://code-atlantic.com/contact-us/
Cheers 🙂
Hi @qwik3r,
Thanks so much for your patience.
We can see that happening too. We’ll post an enhancement request for that.
In the meantime, you can use custom CSS such as this.
@media (max-width: 640px) { #popmake-15.pum-container { /* Change to your popup's ID */ bottom: 0 !important; margin-bottom: 0 !important; max-height: 500px; /* Change to your height */ top: auto !important; } }You might need to make that popup a fixed height. But, give it a try first and as always feel free to tweak that to meet your needs.
Have a great day 🙂
Forum: Plugins
In reply to: [User Menus - Nav Menu Visibility] {username} in URLHey @onewebsite,
We’re going to close this thread since we haven’t heard back from you.
Feel free to post a new issue or contact us directly if you need help with anything else.
https://code-atlantic.com/contact-us/
Cheers 🙂