vebbmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Internal linkingThis is my workaround:
- Create a new user for each language
- Tools -> Export -> Pages -> Export by Author
- Search and replace in a text editor
- Delete the existing pages (by that author)
- Import updated pages (Tools -> Import -> WordPress)
You’re welcome.
Forum: Plugins
In reply to: [Polylang] Internal linkingI guess there is no easy way.
1. You can create a script that automatically rewrites all of the links on page load
2. You can do a search and replace per language in the database
…but you need to be very careful not to screw anything up.
I can confirm that this works:
.grecaptcha-badge { visibility: collapse !important; display:none !important; }However, it would be nice to have the option of moving it to the left side. You can put “left: 0px” in the CSS, but it appears in full (expanded)…
Forum: Fixing WordPress
In reply to: Appending URL with unique IDI figured I’d give an update on this, because I did figure it out in the end. The answer was a simple PHP cookie. Something like this:
<?php setcookie("source",$_GET['utm_source'],time()+60*60*24*30, '/'); ?>Then you can access what is stored in the cookie in many ways, for example:
echo $_COOKIE["source"];Ok, I fixed it by changing the permissions on the folder in my server. It was set to 750 and, for whatever reason, 755 works fine.
Hope that helps someone else!
Forum: Themes and Templates
In reply to: [Business Era] Slider text cutoff point?That is useful, thanks! I would like to know what I specifically would need to change to get a longer snippet, though.
On mobile, it only shows the headline and on desktop it only shows about 100 characters (as I said before).
Forum: Fixing WordPress
In reply to: Appending URL with unique IDTim Felmingham seems to have the answer I was looking for!
I use (a variant of) this code:
<?php $gclid=$_GET['gclid']; $outgoinglink = 'http://www.merchants_website.com/mylandingpage.html?affID=12345&subid='. $gclid; ?>Then add gclid=whatever to my inbound links (from Facebook, etc.). Works perfectly on “naked” links. Because I use redirects for all outbound links, it’s not as easy as it should be, but I will figure that part out!
Forum: Fixing WordPress
In reply to: Appending URL with unique IDHi, thanks for your reply! Unfortunately, that is not what I’m looking for – rather the reverse.
I can see (in Google Analytics) where people come from and which button/link they click to leave. I can see (in my affiliate program’s backend) how many conversions I get from those clicks.
What I cannot see is where those conversions originally came from. I want to know if visitors from a particular source convert better, so I can keep optimizing my efforts.
If there was a way to automatically append the exit url (on my site) with the referral domain, then I would also see it in the affiliate backend. It must be possible somehow!
Forum: Plugins
In reply to: [Gutenberg] Updating/Publishing failed errorNot using Cloudflare or any other plugins, this was on a clean/fresh install. I suppose it could be a server setting?
Forum: Plugins
In reply to: [Geolocation IP Detection] Delay the plugin?When I tested in the backend, it says “Lookup duration: 0.01046 s”.
This is what I have in the code: [geoip_detect2_get_client_ip] – [geoip_detect2 property=’city’] [geoip_detect2 property=’country’]
If I remove those shortcodes, it goes down from ~610 ms wait to ~10 ms for the page. Not sure what specifically is causing it.
Forum: Plugins
In reply to: [Geolocation IP Detection] Delay the plugin?That’s the one I’m using (file-based, automatic). AJAX functionality would be great, I’ll keep an eye out for updates from you. 🙂
I was trying to delay it myself using jQuery, and at one point an external file with the lookup in it, but it didn’t work like I wanted it to. I’m not very good. :p