paullee357
Forum Replies Created
-
If you want customers to use email to send replies to existing tickets or create new tickets, then you probably need to purchase that plugin. Support Candy is great by itself as a Ticket System portal. However, having customers avoid the portal and interact by email is a luxury for the customer that is an extra cost. I personally do not like it for ticket creation because customers avoid selecting various fields that are helpful in the portal
Forum: Fixing WordPress
In reply to: Custom HTML Widget fails to save if ‘href’ insideThank you @jdembowski for the topic move. Thank you @joyously for the ticket tip. I should also note we are on 5.7.2, no plugins, 2021 theme. Tried to make as vanilla as possible.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Conflict with LearnDashI did want to say that I resolved this in the Advanced settings by adding a prefix (SC_ in this case) and the conflict went away
For those who create new tickets using the Gravity Form addon, remember to create the new fields as keefs0n describes above then update the same with GF. When it comes time to map there will be a match
WP 5.5 messed up a lot of my plugins. They made an update to 5.5.1 that helped. Not sure if that is it, but the timing is close enough
Answered myself after installing both.
Yes it can
Going through the exact same issue. Asked to install a mirror of my wordpress multi-site in a sub directory of our Apache server. I can get to index.html in root if need be. Once I set up for index.php though it redirects to my live site. /wp-admin gives forbidden.
site.com is under apache24/htdocs
site-mirror.com is under apache24/www/site-mirror.com/htdocsThing is there is a https redirect that is throwing me off. I keep trying to hit https://site-mirror.com and it is always trying to take me to https://site.com
I can’t see it in my htaccess and my mirrored database is globally replaced with site.com > site-mirror.com
When I try to circumvent with https://site-mirror.com/wp-admin I get the 403
I paid for a nice plugin called NADI Next Active Directory Integration that pulls in your AD and any other custom LDAP fields (plus headshots) and it creates the WP Users list and stays synched.
Getting the same issue and googling around to find the answer.
Forum: Fixing WordPress
In reply to: Page won't load on Iphone Safari@bighead how did you solve it? I have a fresh iPhone given to me for testing as I heard others could not see my site in iPhone/safari. It shows fine in iMac/Safari and many other combinations. only in iPhone does it hang and say my server is not responding.
Forum: Networking WordPress
In reply to: ERR_TOO_MANY_REDIRECTS multisite static homepagesMultiSite front pages for each sub site are now running with permalinks set to %postname%. No more redirect loops.
Had to manually change siteurl and home for wp_options and all wp_n_options to lower case
Forum: Plugins
In reply to: [Plugin – active-directory-integration_1.1.6] – Test toolThe Test Tool tab is missing for me and I’m having trouble getting this to run
Same here. Trying to deploy multisite on corporate intranet and would like to pay as we are paying for all of our other premium plug-ins.
This plugin worked great at my old firm. At my new firm, I cannot see the settings I used at the old one, but I can tell there are differences. For instance I don’t have a Test tab.
Even if there is not a pay version, I would like to make a donation.
Forum: Fixing WordPress
In reply to: Site title being displayed twice!I commented out one of the Title pushes, from my theme functions…
function theme_update_title($title, $sep, $seplocation) { global $wp_query; $post_id = get_queried_object_id(); if ($post_id == 0 && theme_is_home()) { $post_id = get_option('page_for_posts'); } $meta_title = get_post_meta($post_id, 'page_title', true); if (!empty($meta_title)) { $title = ( 'right' == $seplocation ? $meta_title . " $sep " : " $sep " . $meta_title); } //return $title; }
Forum: Fixing WordPress
In reply to: Site title being displayed twice!I noticed you fixed it on your site. How did you solve it?