Alex Ford
Forum Replies Created
-
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Hide on specific posts and pagesThank you @dfactory!
Someone helped me create the following MU plugin (In case anyone else is interested!):
File name: disable-cookie-notice.php
<?php /** * Plugin Name: Disable Cookie Notice * Description: Hides the cookie notice on specific page IDs for the Cookie Notice & Compliance for GDPR/CCPA plugin by Hu-manity.co */ function tk_cookie_output( $output ) { if (is_page(array(123456,789012,345678) ) ) { $output = '<div id="cookie-notice"></div>'; } else { $output = preg_replace('/<!--(.*)-->/Uis', '', $output); } return $output; } add_filter( 'cn_cookie_notice_output', 'tk_cookie_output' ); ?>
Note that you can insert multiple page IDs separated by a comma in this section:
if (is_page(array(123456,789012,345678) ) ) {
Or an individual page ID as follows:
if (is_page(array(123456) ) ) {
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] Root Domain not MappingThanks for this Matt! I’m not using this page a lot yet, so I think I’ll just do a simple URL redirect for now.
I’ll look into getting that paid app later though. Thanks for the recommendation.
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] Root Domain not MappingAlright, I might have figured out the problem.
So in the setting, I got a domain mapping from:
to https://www.alexfordlive.com/?fluent-form=3
The ‘?fluent-form=3’ being a Query Parameter.
I’m assuming the plugin doesn’t have the capability for that when mapping. Am I correct?
Any ideas on how to work around this?
Thanks
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] Root Domain not MappingActually, I think I just figured it out.
It might be because the URL is not forwarding to a real page. It’s from the Fluent Forms plugin. (Hence the /?fluent-form=3 on the URL)
This works:
https://www.alexfordcall.com/?fluent-form=3But my goal is to get:
https://www.alexfordcall.comTo map to:
https://alexfordlive.com/?fluent-form=3Hmmm. I’m gonna have to test to see how else I can make this work.
Any suggestions would be appreciated.
Done ??
Thanks Thomas. It works best with the Group. I’ll just use that.
As for the jumping issue, that cleared completed just by using the Group. And I cleared the browser and website cache, so it’s all working great now.
Thanks for your help! Appreciate it ??
And great plugin!
I just tested again with individual widgets and still get the same issue, but a variation of it.
See here: https://d.pr/v/ucV1OR
Now, the second widget appears on top of the first widget, and after a moment it moves to the correct spot.
No I don’t, only one site.
It works now though. When I installed the plugin, a new number wouldn’t save.
So I checked ‘Test new version’, changed the Margin Top number, hit Save. And it worked.
I’ve unchecked ‘Test new version’ and for some reason I can now change the Margin Top number as many times as I want.
Btw, another question – Does the plugin work with Widget Groups? The reason I ask is because having multiple widgets in a Widget Group, and then applying Fixed Widget to the Group could make this work better. I can’t make it work like this though…maybe the plugin doesn’t have the functionality.
- This reply was modified 2 years, 8 months ago by Alex Ford.
Thanks Thomas, that seemed to do the trick.
However, another problem has come up now. The ‘Margin Top’ setting won’t save. When I click the Save button, it reverts to the default number of 0.
See here: https://d.pr/v/XnspQf
- This reply was modified 2 years, 8 months ago by Alex Ford.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] How to Rearrange YARPP positioningAwesome. You’re welcome, Jeff. Glad to help!
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] How to Rearrange YARPP positioningDone! Just emailed it to you.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] How to Rearrange YARPP positioning@jeffparker Sure! What’s your email address?
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] How to Rearrange YARPP positioningHi Jeff, yes I did.
I already sorted it out by creating a shortcode plugin using the PHP code provided.
Thanks!
Forum: Plugins
In reply to: [Force Login] Redirect Page Not Working For Other Users (Multisite)It’s ok Kevin… I figure it out!
I installed the “Multisite User Management” plugin where I set ALL users in the Network to access the root site (elevatesites.com) as a subscriber. It’s a Network Activated plugin.
I also installed the “Remove Dashboard Access” plugin and activated it only on the root site, so that subscribers aren’t able to access the Dashboard to this site ONLY.
And finally, I installed “Multisite Plugin Manager” so as to hide the above plugins from site users, as they don’t need access to these plugins.
Thanks for your help… in a way, you helped me to think in a different direction and figure this out.
Thank you!
Forum: Plugins
In reply to: [Force Login] Redirect Page Not Working For Other Users (Multisite)Thank you for this Kevin!
Unfortunately, It’s not exactly what I’m looking to achieve.
I’ve currently got Force Login installed ONLY on the root site elevatesites.com, not Network Activated.
But like you said, the plugin only allows a site admin to access THEIR OWN site/s and not someone else’s.
Do you know if there’s a way to make the root site (elevatesites.com) accessible to ANY site admin only (not the public), without manually adding them as a user?
Thanks,
Alex