mark l chaves
Forum Replies Created
-
Forum: Plugins
In reply to: [User Menus - Nav Menu Visibility] logout user and cutstomerHey @xxuuzz,
You can create 2 custom link menu items. Then, set 1 so only the logged-in Customer role can see it and set the other so only logged-out visitors can see it.
See below.
Logged-in Customer: https://share.wppopupmaker.com/DOud0NOv
Logged-out visitors: https://share.wppopupmaker.com/2NumLRL8
Let us know if we got your question right.
Have a great day 🙂
Hey @waseemsoa,
Thanks for the follow-up.
There are probably a few ways to add ACF fields into the_content. Here are the 2 easiest.
1) Use the ACF shortcode. Add your ACF shortcode into the page or post content editor. E.g.
[acf field="test"]. Reference https://www.advancedcustomfields.com/resources/shortcode/2) Use the ACF
get_field()function in conjunction withthe_content()filter. Here’s a quick example.function display_an_acf_in_the_content( $content ) { // Check if we're inside the main loop in a single Post. if ( is_singular() && in_the_loop() && is_main_query() ) { return $content . '<h4>ACF: ' . get_field( 'test' ) . '</h4>'; } return $content; } add_filter( 'the_content', 'display_an_acf_in_the_content', 1 );Reference and more examples https://developer.wordpress.org/reference/hooks/the_content/
Your question is specific to ACF and WordPress core (the_content()). You can ping those specific forums if you need more help on those topics.
If you have any questions about Content Control, feel free to start a new thread or reach out to us via our contact form.
https://code-atlantic.com/contact/
Cheers!
Hey @brandvanagus,
It looks like either your cookie banner plugin or a caching plugin is somehow wrapping (or smothering) your popup’s HTML. Here’s what I mean.
https://share.wppopupmaker.com/4gurEo7k
That’s why the popup shows up all the time with no issues if you leave the cookie banner up too. Once you close the cookie notice, Popup Maker tries to display the popup, but it’s blocked (so the page freezes).
The popup code needs to be outside of the cookie banner’s HTML (not nested inside of it). Can you check with your dev team or whoever you helped you set up your site to make sure:
1) There’s no custom code that’s shoving the popup code inside the cookie banner HTML?
2) Maybe exclude Popup Maker from your caching minification and code combining options?
3) Or, Anything else like a plugin conflict that’s doing that?
Let us know how that goes.
Have a great weekend 🙂
Hey @ahortonserene,
We see the form is still working. Anyway, can you please submit a ticket via our Popup Maker contact form instead?
https://wppopupmaker.com/support/#submit-a-support-ticket
Click Other Support. The form should appear below that.
As mentioned before, you can copy the temporary access link and paste it into the form.
To expedite things, you can use the Temporary Login Without Password plugin (https://wordpress.org/plugins/temporary-login-without-password/).
Grab the link shown here https://share.wppopupmaker.com/OAu884GK
And paste that into the form for us.
We’re not supposed to post any email addresses on the forum per WordPress.org guidelines.
Cheers!
Hey @fusioncw,
Content Control can restrict media attachment pages, but it can’t restrict the actual media file on the server (e.g.: PDFs, JPGs, and GIFs).
You can learn more in these threads.
https://wordpress.org/support/topic/complete-content-protection/
Sorry for any confusion.
Let us know if you need anything else.
Have a great weekend 🙂
Hey @yhazem,
Content Control is great for restricting content based on user roles.
There should be other plugins that restrict content based on specific user IDs.
If writing custom code is an option, you can check the examples in this post (in combination with Content Control).
https://wp-mix.com/wordpress-limit-post-display-post-authors/
Then, use Content Control to restrict your blog and category pages to logged-in users only.
Let us know if you need anything else.
Have a great weekend 🙂
Hey @waseemsoa,
If you’ve got content outside of the
the_contentfilter, Content Control won’t know about it so it won’t restrict it.You can learn more here.
https://wordpress.org/support/topic/complete-content-protection/
Let us know if you need anything else.
Cheers!
Hi @ahortonserene,
Thanks for your patience. The form is back up and working now.
https://code-atlantic.com/contact/
Please submit your help request there.
To expedite things, you can use the Temporary Login Without Password plugin (https://wordpress.org/plugins/temporary-login-without-password/).
Grab the link shown here https://share.wppopupmaker.com/OAu884GK
And paste that into the form for us.
Cheers!
Hey @cecilior,
We’re going to mark this thread as resolved since we haven’t heard back from you.
Please feel free to start a new thread or submit a help request 🙂
https://code-atlantic.com/contact/
Have a great weekend!
Hey @insideoutcookie,
Just so we’re on the same page.
Are you editing your popup and seeing your edits (changes) saved on the back end? But, when you bring up your site (front end) you don’t see the popup? Is that right or is it something else?
Also, can you let us know what kind of popup you created? For example, is it a Click Open popup? Or, is it an Auto Open one?
Check out our beginner’s guide if you haven’t yet. It’s got step-by-step instructions, examples, and even a troubleshooting section.
https://docs.wppopupmaker.com/article/545-a-beginners-guide-to-popup-triggers
Lastly, let us know which page of your site your popup is supposed to show up. That way we can help you check for errors.
Cheers!
- This reply was modified 3 years, 10 months ago by mark l chaves. Reason: Typo
Hey @richards1052,
We’re going to mark this thread as resolved since we haven’t heard back from you.
Please feel free to start a new thread or submit a help request 🙂
https://wppopupmaker.com/support/#submit-a-support-ticket
or
https://code-atlantic.com/contact/
Have a great day!
Hey @indiatrotter,
The Extra CSS Selectors setting is for Click Open triggers.
You can learn more here.
https://docs.wppopupmaker.com/article/545-a-beginners-guide-to-popup-triggers#extra-css-selectors
Cheers!
Hey @indiatrotter,
Thanks so much for posting.
Can you please try deleting your Manual cookie and creating an On Popup Close cookie instead?
Here’s what that setting looks like.
https://share.wppopupmaker.com/7Ku6ZPdP
When you edit your popup, you’ll find the cookies section under Popup Settings > Triggers.
We hope that helps.
Let us know if you need anything else.
Have a great day 🙂
P.S. Make sure you save your changes and always clear your caches before retesting.